summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Propellor/Property/Chroot.hs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Propellor/Property/Chroot.hs b/src/Propellor/Property/Chroot.hs
index 1a2fd6c8..df5307e4 100644
--- a/src/Propellor/Property/Chroot.hs
+++ b/src/Propellor/Property/Chroot.hs
@@ -114,12 +114,11 @@ instance ChrootBootstrapper Debootstrapped where
proxyConf = case (fromInfoVal . fromInfo) info of
Just (Apt.HostAptProxy u) ->
Debootstrap.DebootstrapProxy u
- Nothing -> mempty
+ Nothing -> mempty
mirrorConf = case (fromInfoVal . fromInfo) info of
- Just (Apt.HostMirror u) ->
+ Just (Apt.HostMirror u) ->
Debootstrap.DebootstrapMirror u
- Nothing -> mempty
-
+ Nothing -> mempty
-- | Defines a Chroot at the given location, built with debootstrap.
--