Revert "flock local directory to prevent multiple obnams stacking up"

This reverts commit ecf10abc47.
This commit is contained in:
Joey Hess 2014-04-17 19:32:34 -04:00
parent ecf10abc47
commit 7f8dc2425d
1 changed files with 1 additions and 2 deletions

View File

@ -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.
--