summaryrefslogtreecommitdiff
path: root/src/Propellor/Container.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/Container.hs')
-rw-r--r--src/Propellor/Container.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor/Container.hs b/src/Propellor/Container.hs
index 4cd46ae5..c4d6f864 100644
--- a/src/Propellor/Container.hs
+++ b/src/Propellor/Container.hs
@@ -3,8 +3,10 @@
module Propellor.Container where
import Propellor.Types
+import Propellor.Types.Core
import Propellor.Types.MetaTypes
import Propellor.Types.Info
+import Propellor.Info
import Propellor.PrivData
import Propellor.PropAccum
@@ -54,7 +56,7 @@ propagateContainer containername c prop = prop
convert p =
let n = property (getDesc p) (getSatisfy p) :: Property UnixLike
n' = n
- `addInfoProperty` mapInfo (forceHostContext containername)
+ `setInfoProperty` mapInfo (forceHostContext containername)
(propagatableInfo (getInfo p))
`addChildren` map convert (getChildren p)
in toChildProperty n'