summaryrefslogtreecommitdiff
path: root/Property/Docker.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Property/Docker.hs')
-rw-r--r--Property/Docker.hs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Property/Docker.hs b/Property/Docker.hs
deleted file mode 100644
index ebb3d3a4..00000000
--- a/Property/Docker.hs
+++ /dev/null
@@ -1,16 +0,0 @@
-module Property.Docker where
-
-import Common
-import qualified Property.File as File
-import qualified Property.Apt as Apt
-
-{- Configures docker with an authentication file, so that images can be
- - pushed to index.docker.io. -}
-configured :: Property
-configured = Property "docker configured" go `requires` installed
- where
- go = withPrivData DockerAuthentication $ \cfg -> ensureProperty $
- "/root/.dockercfg" `File.hasContent` (lines cfg)
-
-installed :: Property
-installed = Apt.installed ["docker.io"]