This commit is contained in:
TechHome
2020-06-27 10:11:45 +02:00
committed by GitHub
parent a4c20d8bdb
commit e7bdb0bf37
+1 -1
View File
@@ -1,4 +1,4 @@
# crontab -e
# Checks daily whether a file in the folder "/mnt/pve/freenas/dump" contains the name vzdump and deletes the file if it's older than 14 days
@daily find /mnt/pve/freenas/dump -name 'vzdump*' -mtime +14 -type f -delete
@daily find /mnt/pve/freenas/dump/ -mindepth 1 -name 'vzdump*' -type f -mtime +14 -execdir rm -- '{}' \;