diff options
| author | Joey Hess <joey@kitenet.net> | 2014-05-31 20:48:23 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-05-31 20:48:23 -0400 |
| commit | 58c8d74b4c4917f9f5e566709202ad432a7b2a6f (patch) | |
| tree | 65da63c631e875a1bf074da920e145d07d011698 /src/Propellor/Property/Hostname.hs | |
| parent | e133536c3f7cc4dd816b8c5fe97e3131411a5ae9 (diff) | |
simplified record accessors
Diffstat (limited to 'src/Propellor/Property/Hostname.hs')
| -rw-r--r-- | src/Propellor/Property/Hostname.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Hostname.hs b/src/Propellor/Property/Hostname.hs index 3859649e..3a6283cf 100644 --- a/src/Propellor/Property/Hostname.hs +++ b/src/Propellor/Property/Hostname.hs @@ -9,7 +9,7 @@ import qualified Propellor.Property.File as File -- A FQDN also configures /etc/hosts, with an entry for 127.0.1.1, which is -- standard at least on Debian to set the FDQN (127.0.0.1 is localhost). sane :: Property -sane = property ("sane hostname") (ensureProperty . setTo =<< getHostName) +sane = property ("sane hostname") (ensureProperty . setTo =<< asks hostName) setTo :: HostName -> Property setTo hn = combineProperties desc go |
