diff options
| author | Joey Hess <joey@kitenet.net> | 2014-04-17 19:32:34 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-04-17 19:32:34 -0400 |
| commit | 7f8dc2425d918d75491047a9c5e7eabefc6beedd (patch) | |
| tree | 721322039245eae1919662b2fb34ccf38064e026 /Propellor/Property | |
| parent | ecf10abc478fefe239d469c2f03f05583ed4782b (diff) | |
Revert "flock local directory to prevent multiple obnams stacking up"
This reverts commit ecf10abc478fefe239d469c2f03f05583ed4782b.
Diffstat (limited to 'Propellor/Property')
| -rw-r--r-- | Propellor/Property/Obnam.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Propellor/Property/Obnam.hs b/Propellor/Property/Obnam.hs index 1e861588..00e0bbef 100644 --- a/Propellor/Property/Obnam.hs +++ b/Propellor/Property/Obnam.hs @@ -46,7 +46,7 @@ backup dir crontimes params numclients = cronjob `describe` desc where desc = dir ++ " backed up by obnam" cronjob = Cron.niceJob ("obnam_backup" ++ dir) crontimes "root" "/" $ - intercalate ";" $ map flockcmd $ catMaybes + intercalate ";" $ catMaybes [ if numclients == OnlyClient then Just $ unwords $ [ "obnam" @@ -59,7 +59,6 @@ backup dir crontimes params numclients = cronjob `describe` desc , shellEscape dir ] ++ map shellEscape params ] - flockcmd cmd = "flock -n " ++ shellEscape dir ++ " " ++ cmd -- | Restores a directory from an obnam backup. -- |
