일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- G-suite
- freebsd
- hardening
- macos
- xe guest utilities
- bash
- Kibana
- 보안양파
- application security
- proxycfg
- pfsense
- ELASTIC
- Elasticsearch
- PlayBook
- Windows
- ansible
- endpoint security
- Kibana server is not ready yet
- 한글가이드
- docker
- x-pack
- miniconda
- elastic stack
- XCP-ng
- centos 8
- 로그인불가
- GitLab
- Proxy
- ssh key 배포
- 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..