diff --git a/Propellor/Property/Apt.hs b/Propellor/Property/Apt.hs index 5c095d6..f45bc2e 100644 --- a/Propellor/Property/Apt.hs +++ b/Propellor/Property/Apt.hs @@ -107,7 +107,8 @@ installedBackport ps = withOS desc $ \o -> case o of Nothing -> error "cannot install backports; os not declared" (Just (System (Debian suite) _)) | isStable suite -> - ensureProperty $ installed' ["-t", backportSuite, "-y"] ps + ensureProperty $ runApt $ + ["install", "-t", backportSuite, "-y"] ++ ps _ -> error $ "backports not supported on " ++ show o where desc = (unwords $ "apt installed backport":ps)