Merge "Add chrony waitsync back in" into stable/ussuri

This commit is contained in:
Zuul 2022-01-11 21:39:39 +00:00 committed by Gerrit Code Review
commit 4e9d57b5ae
2 changed files with 4 additions and 1 deletions

View File

@ -122,8 +122,10 @@ outputs:
- name: Install, Configure and Run Chrony - name: Install, Configure and Run Chrony
include_role: include_role:
name: chrony name: chrony
- name: Ensure system is NTP time synced - name: Force NTP sync
command: chronyc makestep command: chronyc makestep
- name: Ensure system is NTP time synced
command: chronyc waitsync 30
ansible_group_vars: ansible_group_vars:
chrony_role_action: all chrony_role_action: all
chrony_ntp_servers: {get_param: NtpServer} chrony_ntp_servers: {get_param: NtpServer}

View File

@ -75,6 +75,7 @@ resources:
if [ "$service" = "chrony" ]; then if [ "$service" = "chrony" ]; then
if command -v chronyc >/dev/null; then if command -v chronyc >/dev/null; then
chronyc makestep chronyc makestep
chronyc waitsync 30
else else
echo "No chronyc available, skipping sync" echo "No chronyc available, skipping sync"
fi fi