add-timezone-support (#9263)

This commit is contained in:
Kay Yan
2022-09-15 12:11:22 +08:00
committed by GitHub
parent e76385e7cd
commit 97ca2f3c78
4 changed files with 27 additions and 0 deletions

View File

@@ -100,3 +100,6 @@ ntp_tinker_panic: false
# Force sync time immediately after the ntp installed, which is useful in in newly installed system.
ntp_force_sync_immediately: false
# Set the timezone for your server. eg: "Etc/UTC","Etc/GMT-8". If not set, the timezone will not change.
ntp_timezone: ""

View File

@@ -63,3 +63,17 @@
name: "{{ ntp_service_name }}"
state: started
enabled: true
- name: Ensure tzdata package
package:
name:
- tzdata
state: present
when:
- ntp_timezone
- name: Set timezone
timezone:
name: "{{ ntp_timezone }}"
when:
- ntp_timezone