diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c623801..19caa254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ The **patch** part is incremented if multiple releases happen the same month ### Fixed * certbot: Fix HAProxy renewal hook +* keepalived: Fix tasks that use file instead of copy ### Removed diff --git a/keepalived/tasks/main.yml b/keepalived/tasks/main.yml index 30f9557a..3f436d0e 100644 --- a/keepalived/tasks/main.yml +++ b/keepalived/tasks/main.yml @@ -8,7 +8,7 @@ - keepalived - name: Add notify.sh script for NRPE check - ansible.builtin.file: + ansible.builtin.copy: src: notify.sh dest: /etc/keepalived/notify.sh mode: "0755" @@ -21,7 +21,7 @@ - nrpe - name: check_keepalived is installed - ansible.builtin.file: + ansible.builtin.copy: src: check_keepalived dest: /usr/local/lib/nagios/plugins/check_keepalived mode: "0755"