summaryrefslogtreecommitdiff
path: root/seivot
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-04-19 19:21:00 +0100
committerLars Wirzenius <liw@liw.fi>2011-04-19 19:21:00 +0100
commit17a1399fc109b17371b1e0de0506e7c8a759dd99 (patch)
tree33ef527984bdfc3f0a9f949ee8bfef2692febafc /seivot
parent42787e8cf895eb35e82faea93f850efc58f424dd (diff)
downloadseivot-17a1399fc109b17371b1e0de0506e7c8a759dd99.tar.gz
Implement backup for obnam.
Diffstat (limited to 'seivot')
-rwxr-xr-xseivot5
1 files changed, 5 insertions, 0 deletions
diff --git a/seivot b/seivot
index 7659a55..0f4644f 100755
--- a/seivot
+++ b/seivot
@@ -52,6 +52,11 @@ class Obnam(BackupProgram):
name = 'obnam'
+ def backup(self):
+ runcmd(['obnam', 'backup', self.live_data,
+ '--repository', self.repo,
+ '--log', '/dev/null'])
+
class BackupProgramFactory(object):