mirror of
https://github.com/roles-ansible/role-postgresql-backup.git
synced 2024-08-16 10:19:49 +02:00
Fix wrong cron path
This commit is contained in:
parent
7fa78545ae
commit
ed19355091
2 changed files with 2 additions and 2 deletions
|
@ -24,5 +24,5 @@
|
||||||
cron_file: /etc/crontab
|
cron_file: /etc/crontab
|
||||||
minute: "{{ postgresql_backup.cron_minute | default( '*' ) }}"
|
minute: "{{ postgresql_backup.cron_minute | default( '*' ) }}"
|
||||||
hour: "{{ postgresql_backup.cron_hour | default( '0' ) }}"
|
hour: "{{ postgresql_backup.cron_hour | default( '0' ) }}"
|
||||||
job: /etc/postgresql-backup-script.sh >/dev/null 2>&1
|
job: /opt/postgresql-backup-script.sh >/dev/null 2>&1
|
||||||
user: "{{ postgresql_backup.user }}"
|
user: "{{ postgresql_backup.user }}"
|
||||||
|
|
|
@ -10,5 +10,5 @@ _postgresql_backup:
|
||||||
databases: []
|
databases: []
|
||||||
|
|
||||||
# versionscheck
|
# versionscheck
|
||||||
playbook_version_number: 19 # should be int
|
playbook_version_number: 20 # should be int
|
||||||
playbook_version_path: 'role-postgresql-backup_roles-ansible_github.com.version' # unique string
|
playbook_version_path: 'role-postgresql-backup_roles-ansible_github.com.version' # unique string
|
||||||
|
|
Loading…
Reference in a new issue