728x90
반응형
# ansible all -m shell -a "timedatectl | grep 'Time zone';"
# 서버의 시간대 가져 오기
# ansible nginx 설치
# ubuntu.yml
--- - name: Install nginx on Ubuntu hosts: Ubuntu gather_facts: no become: yes tasks: - name: install nginx web server apt: pkg=nginx state=present update_cache=yes - name: Upload default index.html for web server get_url: url=https://www.nginx.com dest=/usr/share/nginx/html/ mode=0644 validate_certs=no
728x90
반응형
LIST
'Ansible' 카테고리의 다른 글
[Ansible] Missing sudo password 에러 나올때 (0) | 2024.04.20 |
---|---|
Ansible - 09 (ansible 실행 오류 조치) (0) | 2023.12.30 |
Ansible - 10 (명령어) (0) | 2023.12.29 |
Ansible - 08 (rols 설치) (1) | 2023.12.23 |
Ansible - 07 (실습하기 좋은 Vagrant 파일) (2) | 2023.12.23 |