I want to change delete of old backups after 10 days
I have the default back schedule which looks like this
f 0 1 * * 6 -a all --mail-report
i 0 1 * * 0-5 --mail-report
d 1m 0 0 * * * --mail-report
I want to replace the "d 1m 0 0 * * * --mail-report" to "d 10d 0 0 * * * -mail-report" when I issus the command
Code:
zmschedulebackup -A d 10d "0 0 * * *"
This is the schudule that I get
f 0 1 * * 6 -a all --mail-report
i 0 1 * * 0-5 --mail-report
d 1m 0 0 * * * --mail-report
d 10d 0 0 * * *
I do not want "d 1m 0 0 * * * --mail-report"
This is a schudule that I want
f 0 1 * * 6 -a all --mail-report
i 0 1 * * 0-5 --mail-report
d 10d 0 0 * * *