You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use incremental backup on Linux. The backup files delete on schedule but the hashes file grows forever. It had entries dating back to 2017. I manually edited and removed entries to February of 2018. The hashes file should have entries removed for files that are deleted.
The text was updated successfully, but these errors were encountered:
This can be done with a small patch on /usr/share/backup-manager/files.sh, line 370.
Add both lines starting with sed :
# Then actually remove the files
for archive in `cat $list`
do
info "Removing archive \"\$archive\"."
sed_value=`basename $archive`
sed -e "/$sed_value/d" -i "${directory}/`hostname`-hashes.md5"
rm -f $archive
done
rm -f $list
I use incremental backup on Linux. The backup files delete on schedule but the hashes file grows forever. It had entries dating back to 2017. I manually edited and removed entries to February of 2018. The hashes file should have entries removed for files that are deleted.
The text was updated successfully, but these errors were encountered: