summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton2016-06-19 21:06:19 +0900
committerSean Whitton2016-06-19 21:06:19 +0900
commitd436af8f42e05272e369af3f69a65bac157db725 (patch)
tree34d94de10a6551a7b87de35995bdc70dbcc1cc32
parentffcf9ca8c438a7f3a5f12623859199b5b12b6255 (diff)
Typeable in Schroot.hs
-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@
--