|
From: <di...@us...> - 2007-03-20 21:39:23
|
Revision: 479
http://safekeep.svn.sourceforge.net/safekeep/?rev=479&view=rev
Author: dimi
Date: 2007-03-20 13:40:48 -0700 (Tue, 20 Mar 2007)
Log Message:
-----------
Force data cleanup in case there have been multiple backups since the last invocation
Modified Paths:
--------------
safekeep/trunk/safekeep
Modified: safekeep/trunk/safekeep
===================================================================
--- safekeep/trunk/safekeep 2007-03-16 11:55:31 UTC (rev 478)
+++ safekeep/trunk/safekeep 2007-03-20 20:40:48 UTC (rev 479)
@@ -534,7 +534,7 @@
raise Exception('rdiff-backup returned %d' % ret)
def do_server_data_cleanup(cfg):
- args = ['rdiff-backup', '--remove-older-than', cfg['retention'], cfg['dir']]
+ args = ['rdiff-backup', '--force', '--remove-older-than', cfg['retention'], cfg['dir']]
ret = spawn(args)
if ret:
warn('Failed to cleanup old data, please fix the problem manually')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|