reorder for consistency
Onrder does not matter for mappend on set
This commit is contained in:
parent
7c4b153739
commit
d1aaf06f1c
|
@ -34,7 +34,7 @@ instance Monoid Attr where
|
||||||
mappend old new = Attr
|
mappend old new = Attr
|
||||||
{ _os = _os old <> _os new
|
{ _os = _os old <> _os new
|
||||||
, _sshPubKey = _sshPubKey old <> _sshPubKey new
|
, _sshPubKey = _sshPubKey old <> _sshPubKey new
|
||||||
, _dns = _dns new <> _dns old
|
, _dns = _dns old <> _dns new
|
||||||
, _namedconf = _namedconf old <> _namedconf new
|
, _namedconf = _namedconf old <> _namedconf new
|
||||||
, _dockerImage = _dockerImage old <> _dockerImage new
|
, _dockerImage = _dockerImage old <> _dockerImage new
|
||||||
, _dockerRunParams = _dockerRunParams old <> _dockerRunParams new
|
, _dockerRunParams = _dockerRunParams old <> _dockerRunParams new
|
||||||
|
|
Loading…
Reference in New Issue