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/Docker.hs | |
| parent | e133536c3f7cc4dd816b8c5fe97e3131411a5ae9 (diff) | |
simplified record accessors
Diffstat (limited to 'src/Propellor/Property/Docker.hs')
| -rw-r--r-- | src/Propellor/Property/Docker.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Docker.hs b/src/Propellor/Property/Docker.hs index 3e925bb6..8e081ae4 100644 --- a/src/Propellor/Property/Docker.hs +++ b/src/Propellor/Property/Docker.hs @@ -72,7 +72,7 @@ docked hosts cn = RevertableProperty (go "undocked" teardown) where go desc a = property (desc ++ " " ++ cn) $ do - hn <- getHostName + hn <- asks hostName let cid = ContainerId hn cn ensureProperties [findContainer mhost cid cn $ a cid] |
