summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Debootstrap.hs
diff options
context:
space:
mode:
authorNicolas Schodet2017-10-19 21:35:29 +0200
committerNicolas Schodet2017-10-19 21:35:29 +0200
commitb437fa963d7e44945d24c1c5a6453cebcaf7a682 (patch)
tree1173ae1479f821876f42e1594371e4f501309678 /src/Propellor/Property/Debootstrap.hs
parentd9f2eb343edfcdc66cf3f58cc6b7846cc3ca6b35 (diff)
Use isUnpopulated when creating a chroot or restoring a backupignore-lost-n-found
Diffstat (limited to 'src/Propellor/Property/Debootstrap.hs')
-rw-r--r--src/Propellor/Property/Debootstrap.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Debootstrap.hs b/src/Propellor/Property/Debootstrap.hs
index e21bcdff..a9412b95 100644
--- a/src/Propellor/Property/Debootstrap.hs
+++ b/src/Propellor/Property/Debootstrap.hs
@@ -54,7 +54,7 @@ built' :: Property Linux -> FilePath -> System -> DebootstrapConfig -> Property
built' installprop target system@(System _ arch) config =
go `before` oldpermfix
where
- go = check (unpopulated target <||> ispartial) setupprop
+ go = check (isUnpopulated target <||> ispartial) setupprop
`requires` installprop
setupprop :: Property Linux