diff options
Diffstat (limited to 'roles/space_server/tasks')
-rw-r--r-- | roles/space_server/tasks/chrony.yml | 22 | ||||
-rw-r--r-- | roles/space_server/tasks/main.yml | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/roles/space_server/tasks/chrony.yml b/roles/space_server/tasks/chrony.yml new file mode 100644 index 0000000..2777591 --- /dev/null +++ b/roles/space_server/tasks/chrony.yml @@ -0,0 +1,22 @@ +--- +- name: Configure chrony.conf + copy: + dest: '/etc/chrony.conf' + src: chrony.conf + owner: root + group: root + mode: 0644 + notify: restart chronyd + +- name: Enable chronyd service + systemd: + name: chronyd.service + enabled: yes + masked: no + state: started + when: not chroot +- name: '- when in chroot' + command: systemctl enable chronyd.service + when: chroot + +# vim: set ts=2 sw=2 et ft=yaml: diff --git a/roles/space_server/tasks/main.yml b/roles/space_server/tasks/main.yml index f4f89d6..112c4ce 100644 --- a/roles/space_server/tasks/main.yml +++ b/roles/space_server/tasks/main.yml @@ -17,6 +17,8 @@ tags: networkd - import_tasks: nftables.yml tags: nftables +- import_tasks: chrony.yml + tags: chrony - import_tasks: bird.yml tags: bird - import_tasks: dhcpd.yml |