diff options
| author | Joey Hess <joey@kitenet.net> | 2014-05-31 21:08:50 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-05-31 21:08:50 -0400 |
| commit | d1eafb12776d6487ecd48d3991838032a81181d6 (patch) | |
| tree | b5b72c1495ef49b4e0c7a2d2b9aa436b2f02dfae /src | |
| parent | 74c4545a690e8401f5af7fde020319a2a6b6b06c (diff) | |
correct order (didn't really cause any breakage)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Types/Attr.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Types/Attr.hs b/src/Propellor/Types/Attr.hs index 4c891a46..17a02bd2 100644 --- a/src/Propellor/Types/Attr.hs +++ b/src/Propellor/Types/Attr.hs @@ -39,7 +39,7 @@ instance Monoid Attr where Just v -> Just v Nothing -> _sshPubKey old , _dns = _dns new <> _dns old - , _namedconf = _namedconf new <> _namedconf old + , _namedconf = _namedconf old <> _namedconf new , _dockerImage = case _dockerImage new of Just v -> Just v Nothing -> _dockerImage old |
