일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 한글가이드
- ssh key 배포
- macos
- miniconda
- hardening
- G-suite
- elastic stack
- Kibana server is not ready yet
- pfsense
- GitLab
- Kibana
- ELASTIC
- 로그인불가
- Windows
- ansible
- xe guest utilities
- PlayBook
- XCP-ng
- freebsd
- centos 8
- 보안양파
- bash
- proxycfg
- docker
- endpoint security
- Proxy
- application security
- x-pack
- Elasticsearch
- Today
- Total
목록PlayBook (2)
선 밖에 선 자유인
--- - 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
ssh-key-deploy.yml --- - hosts: all gather_facts: no user: vagrant tasks: - name: ssh-key delete connection: local shell: rm -f /home/vagrant/.ssh/id_rsa* - name: ssh-key making connection: local command: "ssh-keygen -b 2048 -t rsa -f /home/vagrant/.ssh/id_rsa -q -N ''" ignore_errors: yes run_once: true - name: import id_rsa.pub connection: local command: "cat /home/vagrant/.ssh/id_rsa.pub" regi..