You are not logged in.
Thought I would share a simple oneliner I have used to purge old backups from the repo. This just uses unix find and modification date. example shows a purge of 7 day old or more backups.
find /path/to/repo -type d -maxdepth 1 -mtime +7 -print0 | xargs -0 -i /path/to/xsibackup --prune {}
Offline
[b](c)XSIBackup-DC[/b] already includes a [b]--prune[/b] feature. Anybody using this or any other shared code snippet does it at his own risk.
Offline
this is using the --prune feature. but yes understood on your warning
Offline
We have discovered a bug that affects backups with a block size bigger than default (10M, 20M, 50M). Please switch to using 1MB blocks (default) and wait until we release a fix in v. 1.4.0.0 before using bigger block sizes
[url=https://33hops.com/forum/viewtopic.php?id=783]Non default --block-size bug[/url]
Offline