summaryrefslogtreecommitdiff
path: root/Propellor/Property/Apt.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Propellor/Property/Apt.hs')
-rw-r--r--Propellor/Property/Apt.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property/Apt.hs b/Propellor/Property/Apt.hs
index 6f2f95d7..1807671f 100644
--- a/Propellor/Property/Apt.hs
+++ b/Propellor/Property/Apt.hs
@@ -89,7 +89,7 @@ installed' params ps = robustly $ check (isInstallable ps) go
-- | Minimal install of package, without recommends.
installedMin :: [Package] -> Property
-installedMin = installed' ["--no-install-recommends"]
+installedMin = installed' ["--no-install-recommends", "-y"]
removed :: [Package] -> Property
removed ps = check (or <$> isInstalled' ps) go