From 2d1b302bb29332f6afa602bb4b4a5cca75bf99fd Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 15 Jul 2017 17:06:54 -0700 Subject: fix usage of File.hasContent --- src/Propellor/Property/Timezone.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Propellor/Property/Timezone.hs b/src/Propellor/Property/Timezone.hs index 267c4f0b..96a5e59c 100644 --- a/src/Propellor/Property/Timezone.hs +++ b/src/Propellor/Property/Timezone.hs @@ -11,7 +11,7 @@ type Timezone = String -- | Sets the system's timezone configured :: Timezone -> Property DebianLike -configured zone = File.hasContent "/etc/timezone" zone +configured zone = File.hasContent "/etc/timezone" [zone] `onChange` update `describe` (zone ++ " timezone configured") where -- cgit v1.2.3