summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Sbuild.hs
diff options
context:
space:
mode:
authorSean Whitton2016-05-19 15:36:03 +0900
committerSean Whitton2016-05-19 15:36:03 +0900
commit41cda202087be38cf776c234f9e531aaf283b18f (patch)
treeb6cb7b6e32341db41f2a87350ce5666688a436e9 /src/Propellor/Property/Sbuild.hs
parentde76b8b3f02c5101b7b6efeec6f2d99cf456d4dd (diff)
add missing imports
Diffstat (limited to 'src/Propellor/Property/Sbuild.hs')
-rw-r--r--src/Propellor/Property/Sbuild.hs9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Propellor/Property/Sbuild.hs b/src/Propellor/Property/Sbuild.hs
index 3967d0a1..a9c73816 100644
--- a/src/Propellor/Property/Sbuild.hs
+++ b/src/Propellor/Property/Sbuild.hs
@@ -55,14 +55,21 @@ module Propellor.Property.Sbuild (
) where
import Propellor.Base
-import Debootstrap (extractSuite)
+import Propellor.Property.Debootstrap (extractSuite)
+import Propellor.Property.Chroot.Util
import qualified Propellor.Property.Apt as Apt
import qualified Propellor.Property.Ccache as Ccache
import qualified Propellor.Property.File as File
import qualified Propellor.Property.Firewall as Firewall
+import qualified Propellor.Property.User as User
+import Utility.FileMode
import System.Directory
import System.FilePath (takeDirectory)
+import Data.List
+import Data.List.Utils
+
+type Suite = String
-- | An sbuild schroot, such as would be listed by @schroot -l@
--