summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Propellor/Property/Schroot.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor/Property/Schroot.hs b/src/Propellor/Property/Schroot.hs
index 0e52f1a4..bb20f6e6 100644
--- a/src/Propellor/Property/Schroot.hs
+++ b/src/Propellor/Property/Schroot.hs
@@ -1,5 +1,7 @@
-- | Maintainer: Sean Whitton <spwhitton@spwhitton.name>
+{-# LANGUAGE DeriveDataTypeable #-}
+
module Propellor.Property.Schroot where
import Propellor.Base
@@ -9,7 +11,7 @@ import qualified Propellor.Property.Apt as Apt
import Utility.FileMode
-data UseOverlays = UseOverlays deriving (Eq, Show)
+data UseOverlays = UseOverlays deriving (Eq, Show, Typeable)
-- | Indicate that a schroots on a host should use @union-type=overlay@
--