Skip to content

Commit

Permalink
fix: invalid cron tasks mysql_backup
Browse files Browse the repository at this point in the history
  • Loading branch information
popstas committed Mar 23, 2017
1 parent 4ac1783 commit 447b8a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ server_scripts_cron_tasks:
- name: "server-scripts: mysql_backup backup"
hour: "8,11,16,22"
minute: 5
job: "ionice -c mysql_backup backup"
job: "ionice -c3 mysql_backup backup"

- name: "server-scripts: mysql_backup backup and send"
hour: 5
minute: 5
job: "ionice -c mysql_backup backup && mysql_backup send"
job: "ionice -c3 mysql_backup backup && mysql_backup send"

- name: "server-scripts: mysql_backup clean"
hour: 5
minute: 10
job: "ionice -c mysql_backup clean"
job: "ionice -c3 mysql_backup clean"

0 comments on commit 447b8a6

Please sign in to comment.