Commit e74b4aad authored by Simon Cornet's avatar Simon Cornet
Browse files

feat: add keys file for alpine

parent 72687efb
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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: