summaryrefslogtreecommitdiff
path: root/src/Propellor/Types/OS.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/Types/OS.hs')
-rw-r--r--src/Propellor/Types/OS.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Propellor/Types/OS.hs b/src/Propellor/Types/OS.hs
index b16939c7..447d4396 100644
--- a/src/Propellor/Types/OS.hs
+++ b/src/Propellor/Types/OS.hs
@@ -42,10 +42,10 @@ type Architecture = String
type UserName = String
newtype User = User UserName
- deriving (Eq, Ord)
+ deriving (Eq, Ord, Show)
newtype Group = Group String
- deriving (Eq, Ord)
+ deriving (Eq, Ord, Show)
-- | Makes a Group with the same name as the User.
userGroup :: User -> Group