iac/ansible/playbooks/timezone.yml

16 lines
384 B
YAML
Raw Normal View History

2024-07-12 23:57:29 -04:00
- name: Set timezone and configure timesyncd
hosts: "*"
become: yes
tasks:
- name: set timezone
shell: timedatectl set-timezone America/New_York
- name: Make sure timesyncd is stopped
systemd:
name: systemd-timesyncd.service
state: stopped
- name: Make sure timesyncd is started
systemd:
name: systemd-timesyncd.service
state: started