aboutsummaryrefslogtreecommitdiffstats
path: root/roles/debian/tasks/timesyncd.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/debian/tasks/timesyncd.yml')
-rw-r--r--roles/debian/tasks/timesyncd.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/debian/tasks/timesyncd.yml b/roles/debian/tasks/timesyncd.yml
index 9895d0b..17693c3 100644
--- a/roles/debian/tasks/timesyncd.yml
+++ b/roles/debian/tasks/timesyncd.yml
@@ -7,8 +7,8 @@
no_extra_spaces: yes
section: "{{ item.key.split('.',1)[0] }}"
option: "{{ item.key.split('.',1)[1] }}"
- value: "{{ item.value|ternary(item.value,omit) }}"
- state: "{{ item.value|ternary('present','absent') }}"
+ value: "{{ (item.value is string)|ternary(item.value,omit) }}"
+ state: "{{ (item.value is string)|ternary('present','absent') }}"
with_dict: '{{ timesyncd_conf }}'
when: use_timesyncd
notify: restart timesyncd