summaryrefslogtreecommitdiff
path: root/roles/core/ntp/tasks/Debian_systemd-timesyncd.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/core/ntp/tasks/Debian_systemd-timesyncd.yml')
-rw-r--r--roles/core/ntp/tasks/Debian_systemd-timesyncd.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/core/ntp/tasks/Debian_systemd-timesyncd.yml b/roles/core/ntp/tasks/Debian_systemd-timesyncd.yml
index 40c6629e..5fa60510 100644
--- a/roles/core/ntp/tasks/Debian_systemd-timesyncd.yml
+++ b/roles/core/ntp/tasks/Debian_systemd-timesyncd.yml
@@ -7,7 +7,8 @@
msg: "systemd-timesyncd can not be used as a NTP server or sync to local clocks"
- name: install systemd-timesyncd
- when: (ansible_distribution == 'Debian' and (ansible_distribution_major_version | int) > 10) or (ansible_distribution == 'Ubuntu')
+ when: (ansible_distribution == 'Debian' and (ansible_distribution_release | debian_release_compare('>', 'buster'))) or
+ (ansible_distribution == 'Ubuntu')
apt:
name: systemd-timesyncd
state: present