borg-backup-server: fix verification run

&>> is a bashism and not supported by sh, which cron runs the jobs
under.  Use >> instead.

Change-Id: I8e67f466887070fb1dedc403c53227c3ce1b2f1d
This commit is contained in:
Ian Wienand 2021-03-17 15:09:57 +11:00
parent df9a85e45c
commit e5a2354451
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@
cron:
name: verify-borg-backups
state: present
job: '/usr/local/bin/verify-borg-backups &>> /var/log/verify-borg-backups.log'
job: '/usr/local/bin/verify-borg-backups >> /var/log/verify-borg-backups.log 2>&1'
minute: '0'
hour: '0'
weekday: '0'