Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- XCP-ng
- ansible
- elastic stack
- miniconda
- 로그인불가
- Windows
- ELASTIC
- PlayBook
- Elasticsearch
- G-suite
- xe guest utilities
- x-pack
- Kibana
- hardening
- bash
- endpoint security
- 한글가이드
- docker
- GitLab
- pfsense
- 보안양파
- freebsd
- macos
- application security
- ssh key 배포
- centos 8
- Kibana server is not ready yet
- proxycfg
- Proxy
Archives
- Today
- Total
선 밖에 선 자유인
Windows Package 설치 playbook 본문
---
- name: Install msi package
hosts: windows
user: vagrant
become: yes
tasks:
- name: Download msi installer
win_get_url:
url: 'http://<URL>'
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
Comments