diff options
| author | Felix Gruber <felgru@gmx.de> | 2015-10-18 17:11:50 +0200 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-10-18 14:14:07 -0400 |
| commit | 2ad09b34ecec5a643a4a08c88a0a1cc7703094e3 (patch) | |
| tree | 621ece48e772504492237e1b902c18062790b94b /src/Propellor/Property/Docker.hs | |
| parent | 57f4eca88a1c3762b452171ee0a9d1a4f1367402 (diff) | |
fix typo: propigate → propagate
Diffstat (limited to 'src/Propellor/Property/Docker.hs')
| -rw-r--r-- | src/Propellor/Property/Docker.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Propellor/Property/Docker.hs b/src/Propellor/Property/Docker.hs index 6aa17438..394c4271 100644 --- a/src/Propellor/Property/Docker.hs +++ b/src/Propellor/Property/Docker.hs @@ -119,13 +119,13 @@ container cn image = Container image (Host cn [] info) -- propellor inside the container. -- -- When the container's Properties include DNS info, such as a CNAME, --- that is propigated to the Info of the Host it's docked in. +-- that is propagated to the Info of the Host it's docked in. -- -- Reverting this property ensures that the container is stopped and -- removed. docked :: Container -> RevertableProperty docked ctr@(Container _ h) = - (propigateContainerInfo ctr (go "docked" setup)) + (propagateContainerInfo ctr (go "docked" setup)) <!> (go "undocked" teardown) where @@ -170,8 +170,8 @@ imagePulled ctr = describe pulled msg pulled = Cmd.cmdProperty dockercmd ["pull", imageIdentifier image] image = getImageName ctr -propigateContainerInfo :: (IsProp (Property i)) => Container -> Property i -> Property HasInfo -propigateContainerInfo ctr@(Container _ h) p = propigateContainer cn ctr p' +propagateContainerInfo :: (IsProp (Property i)) => Container -> Property i -> Property HasInfo +propagateContainerInfo ctr@(Container _ h) p = propagateContainer cn ctr p' where p' = infoProperty (propertyDesc p) |
