1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_ntp.git synced 2024-08-16 12:59:49 +02:00
ansible_role_ntp/tasks/config.yml

21 lines
546 B
YAML
Raw Normal View History

2018-12-28 15:10:34 +01:00
---
2022-11-16 23:34:46 +01:00
- name: Seting up ntp config
become: true
ansible.builtin.template:
src: templates/ntp.conf.j2
2018-12-28 15:10:34 +01:00
dest: "{{ ntp_configfile }}"
owner: "{{ ntp_configfile_user }}"
group: "{{ ntp_configfile_group }}"
2018-12-28 15:16:21 +01:00
mode: 0644
2018-12-28 15:10:34 +01:00
notify: "Restart ntp daemons on {{ ansible_system }}"
- name: Create logging folder
become: true
ansible.builtin.file:
path: "{{ ntp_ntpstats_dir }}"
state: directory
2023-11-28 03:40:01 +01:00
recurse: true
mode: 'u=rwX,g=rX,o=rX'
2023-11-28 03:18:03 +01:00
owner: "{{ ntp_user }}"
2023-11-28 03:49:51 +01:00
notify: "Restart ntp daemons on {{ ansible_system }}"