xoxys.ntp/tasks/setup_univention.yml
Robert Kaussow 8a434ce07b
Some checks failed
continuous-integration/drone/push Build is failing
remove old loop syntax
2019-08-27 22:40:56 +02:00

21 lines
643 B
YAML

---
- block:
- name: Configure ntp servers
ucr:
path: "{{ item.path }}"
value: "{{ item.value }}"
with_items:
- { path: timeserver, value: "{{ ntp_servers[0] | default('') }}" }
- { path: timeserver2, value: "{{ ntp_servers[1] | default('') }}" }
- { path: timeserver3, value: "{{ ntp_servers[2] | default('') }}" }
loop_control:
label: "variable: {{ item.path }}={{ item.value }}"
notify: __ntpd_restart
- name: Configure signed ntp time requests
ucr:
path: "ntp/signed"
value: "{{ ntp_sign_requests }}"
become: True
become_user: root