diff options
| author | Zihao Wang <dev@wzhd.org> | 2017-02-03 17:28:38 +0800 |
|---|---|---|
| committer | Zihao Wang <dev@wzhd.org> | 2017-02-04 08:16:21 +0800 |
| commit | 92168164943dcf033682b9f9a26f81beb3c537f4 (patch) | |
| tree | 131f4b9c158fb0b87ac04bb7a67daa72848fc941 /src | |
| parent | 5b946ea4e32657f64771f3e2ef8bc865afc4c1fc (diff) | |
addArchLinux support to Docker.installed
Signed-off-by: Zihao Wang <dev@wzhd.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/Docker.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Propellor/Property/Docker.hs b/src/Propellor/Property/Docker.hs index 2ef97438..0bfcc781 100644 --- a/src/Propellor/Property/Docker.hs +++ b/src/Propellor/Property/Docker.hs @@ -55,6 +55,7 @@ import Propellor.Container import qualified Propellor.Property.File as File import qualified Propellor.Property.Apt as Apt import qualified Propellor.Property.Cmd as Cmd +import qualified Propellor.Property.Pacman as Pacman import qualified Propellor.Shim as Shim import Utility.Path import Utility.ThreadScheduler @@ -68,8 +69,8 @@ import Data.List.Utils import qualified Data.Map as M import System.Console.Concurrent -installed :: Property DebianLike -installed = Apt.installed ["docker.io"] +installed :: Property (DebianLike + ArchLinux) +installed = Apt.installed ["docker.io"] `pickOS` Pacman.installed ["docker"] -- | Configures docker with an authentication file, so that images can be -- pushed to index.docker.io. Optional. |
