summaryrefslogtreecommitdiff
path: root/src/Propellor/Property
diff options
context:
space:
mode:
authorJoey Hess2019-11-13 10:29:38 -0400
committerJoey Hess2019-11-13 10:29:38 -0400
commit64cea570e4e82edec6016cbcb1463b3891b094e3 (patch)
tree0d389bc91cf3d612b8d342810c0bc5397247261c /src/Propellor/Property
parent7eaec4824aa67871a693febfa43c3aa88796ec95 (diff)
remove horizontal alignment
Diffstat (limited to 'src/Propellor/Property')
-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.
--