summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2016-02-29 18:17:02 -0400
committerJoey Hess2016-02-29 18:17:02 -0400
commit3d30f34eecff5ee1c916363d18fd4a4afc57f252 (patch)
tree83fe2c17d23e5853fdcb38118f49e228a51f2a45 /src
parent6e429a171394225e79808b8f7dae81e5505e105d (diff)
run dpkg --configure with non-interactive env
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/Property/Apt.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Apt.hs b/src/Propellor/Property/Apt.hs
index d05bdcb9..0a27cf9b 100644
--- a/src/Propellor/Property/Apt.hs
+++ b/src/Propellor/Property/Apt.hs
@@ -143,7 +143,7 @@ safeUpgrade = upgrade' "upgrade"
-- | Have dpkg try to configure any packages that are not fully configured.
pendingConfigured :: Property NoInfo
-pendingConfigured = cmdProperty "dpkg" ["--confugure", "--pending"]
+pendingConfigured = cmdPropertyEnv "dpkg" ["--confugure", "--pending"] noninteractiveEnv
`assume` MadeChange
`describe` "dpkg configured pending"