summaryrefslogtreecommitdiff
path: root/seivot
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-04-23 14:39:47 +0100
committerLars Wirzenius <liw@liw.fi>2011-04-23 14:39:47 +0100
commit44cfd704d85b0824f31c6e3cda1fc610c71d23b2 (patch)
treee55b6f4f410a5fd03f6618e61298c05222b064f1 /seivot
parentbc6976e58cbf5fc29d08222090f9737da297a41a (diff)
downloadseivot-44cfd704d85b0824f31c6e3cda1fc610c71d23b2.tar.gz
run obnam with --weak-random (cause we do not want to block on
entropy)
Diffstat (limited to 'seivot')
-rwxr-xr-xseivot3
1 files changed, 2 insertions, 1 deletions
diff --git a/seivot b/seivot
index bbf5870..955015a 100755
--- a/seivot
+++ b/seivot
@@ -133,7 +133,8 @@ class Obnam(BackupProgram):
def _run(self, args, nth_gen, **kwargs):
cmd = [self._cmd,
'--log', '/dev/null',
- '--repository', self.repo]
+ '--repository', self.repo,
+ '--weak-random']
env = dict(os.environ)
if self.settings['obnam-profile']:
fd, env['OBNAM_PROFILE'] = tempfile.mkstemp()