diff --git a/roles/ceph-infra/tasks/ntp_debian.yml b/roles/ceph-infra/tasks/ntp_debian.yml index f1da045f1..80c8fac82 100644 --- a/roles/ceph-infra/tasks/ntp_debian.yml +++ b/roles/ceph-infra/tasks/ntp_debian.yml @@ -1,11 +1,14 @@ --- - name: setup ntpd block: - - command: timedatectl set-ntp no - - package: + - name: timedatectl set-ntp no + command: timedatectl set-ntp no + - name: install ntp + package: name: ntp state: present - - service: + - name: start ntp + service: name: ntp enabled: yes state: started @@ -13,11 +16,14 @@ - name: setup chrony block: - - command: timedatectl set-ntp no - - package: + - name: timedatectl set-ntp no + command: timedatectl set-ntp no + - name: install chrony + package: name: chrony state: present - - service: + - name: start chronyd + service: name: chronyd enabled: yes state: started @@ -25,5 +31,6 @@ - name: setup timesyncd block: - - command: timedatectl set-ntp on + - name: timedatectl set-ntp on + command: timedatectl set-ntp on when: ntp_daemon_type == "timesyncd" diff --git a/roles/ceph-infra/tasks/ntp_rpm.yml b/roles/ceph-infra/tasks/ntp_rpm.yml index 866667c2b..9e4d38cd2 100644 --- a/roles/ceph-infra/tasks/ntp_rpm.yml +++ b/roles/ceph-infra/tasks/ntp_rpm.yml @@ -1,11 +1,14 @@ --- - name: setup ntpd block: - - command: timedatectl set-ntp no - - package: + - name: timedatectl set-ntp no + command: timedatectl set-ntp no + - name: install ntp + package: name: ntp state: present - - service: + - name: start ntp + service: name: ntpd enabled: yes state: started @@ -13,11 +16,14 @@ - name: setup chrony block: - - command: timedatectl set-ntp no - - package: + - name: timedatectl set-ntp no + command: timedatectl set-ntp no + - name: install chrony + package: name: chrony state: present - - service: + - name: start chrony + service: name: chronyd enabled: yes state: started @@ -25,5 +31,6 @@ - name: setup timesyncd block: - - command: timedatectl set-ntp on + - name: timedatectl set-ntp on + command: timedatectl set-ntp on when: ntp_daemon_type == "timesyncd"