feat: add keys file for alpine

This commit is contained in:
Simon Cornet 2025-11-10 15:39:48 +01:00
commit e74b4aad84

View file

@ -12,6 +12,16 @@
update_cache: true
when: 'ansible_os_family == "Alpine"'
# create keys file
- name: "ntp - chrony keys file"
ansible.builtin.file:
path: "/etc/chrony/chrony.keys"
owner: "chrony"
group: "chrony"
mode: "0440"
state: "touch"
when: 'ansible_os_family == "Alpine"'
# install chrony
- name: "ntp - install - chrony debian"
ansible.builtin.apt: