diff --git a/Propellor/Property/Obnam.hs b/Propellor/Property/Obnam.hs index 1e86158..00e0bbe 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. --