Browse Source

Fixes #3516 - Use -delete instead of -exec

Lorenzo Milesi 3 years ago
parent
commit
3d86eb8543
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/backup/functions

+ 1 - 1
contrib/backup/functions

@@ -16,7 +16,7 @@ function get_backup_date () {
 }
 
 function delete_old_backups () {
-  test -d ${BACKUP_DIR} && find ${BACKUP_DIR}/*_zammad_*.gz -type f -mtime +${HOLD_DAYS} -exec rm {} \;
+  test -d ${BACKUP_DIR} && find ${BACKUP_DIR}/*_zammad_*.gz -type f -mtime +${HOLD_DAYS} -delete
 }
 
 function get_db_credentials () {