일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Proxy
- macos
- Kibana server is not ready yet
- freebsd
- hardening
- ansible
- Windows
- 보안양파
- Elasticsearch
- G-suite
- centos 8
- x-pack
- proxycfg
- 한글가이드
- Kibana
- 로그인불가
- XCP-ng
- bash
- endpoint security
- miniconda
- PlayBook
- elastic stack
- ssh key 배포
- xe guest utilities
- docker
- GitLab
- application security
- ELASTIC
- pfsense
- Today
- Total
목록ansible (4)
선 밖에 선 자유인
- 관리자 권한으로 cmd 실행 cmd> netsh winhttp set proxy proxy-server="http=:3128;https=:3128" bypass-list="localhost;" - proxy 설정 제거 cmd> netsh winhttp reset proxy - ansible playbook - name: Windows Proxy 설정 community.windows.win_http_proxy: proxy: http=:;https=: bypass: locahost;server1,server2,
--- - name: Install msi package hosts: windows user: vagrant become: yes tasks: - name: Download msi installer win_get_url: url: 'http://' dest: C:\Users\user\Downloads\filename - name: file copy win_copy: source: C:\Users\user1\Downloads\sourcefile dest: C:\Users\user2\Downloads\destfile - name: Install msi win_package: path: C:\Users\user2\Downloads\file state: present
Windows 와 Ubuntu 클라이언트에 Chrome 최신 버전 설치 예제 (apt나 win_package 등 기본적인 패키지 설치 기능이 상황에 맞게 구동되지 않는 경우가 많음...) --- - name: Chrome Install hosts: all user: ansible become: yes #gather_facts: no tasks: - name: create directory Windows win_file: path: C:\Temp state: directory when: ansible_facts['os_family'] == "Windows" - name: Chrome setup file copy (Windows) win_copy: src: /home/ansible/lab/ChromeSetu..