삽더하기실수
Ansible-playbook window,Centos,Ubuntu timezone.yml 본문
728x90
timezone.yml
---
- name: Setup linux timezone
hosts: CentOS:Ubuntu
gather_facts: no
become: yes
tasks:
- name: set timezone to Asisa/Seoul
timezone: name=Asia/Seoul
- name: Setup Windows timezone
hosts: win
gather_facts: no
tasks:
- name: set timezone to 'Korea Standard Time'
win_timezone: timezone='Korea Standard Time'
ansible-playbook timezone.yml -k
728x90
'Ansible' 카테고리의 다른 글
Ansible 기본 정리 (0) | 2024.04.13 |
---|---|
Ubuntu Ansible-playbook nginx 설치 (0) | 2023.08.27 |
ansible-playbook 공유 풀더 만들기 (0) | 2023.08.27 |
ansible-playbook nfs 일치시키기 (0) | 2023.08.27 |
엔서블 코어 사용 준비 (0) | 2023.08.13 |