From c96327ccfe8cdd70d58a7581d4705854bb2b5c2c Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 7 Jan 2019 18:27:03 +0000 Subject: [PATCH] anitya/release-monitoring: db backup cron has to be mode 644, not 755. https://pagure.io/fedora-infrastructure/issue/7479 Signed-off-by: Kevin Fenzi --- roles/postgresql_server/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/postgresql_server/tasks/main.yml b/roles/postgresql_server/tasks/main.yml index 88912f39f6..c796841e55 100644 --- a/roles/postgresql_server/tasks/main.yml +++ b/roles/postgresql_server/tasks/main.yml @@ -91,7 +91,7 @@ when: inventory_hostname.startswith('db01.phx2') - name: Copy over anitya publib backup cron - copy: src=cron-backup-anitya-public dest=/etc/cron.d/cron-backup-anitya-public mode=0755 + copy: src=cron-backup-anitya-public dest=/etc/cron.d/cron-backup-anitya-public mode=0644 tags: - postgresql when: inventory_hostname.startswith('db01.phx2')