summaryrefslogtreecommitdiffstats
path: root/roles/docker/tasks
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2015-05-26 14:36:14 -0400
committerKenny Woodson <kwoodson@redhat.com>2015-05-26 16:06:20 -0400
commit801f215bd2cd5341d63b5dd91298d23b11dc3553 (patch)
treef96b2eb92236fc81aba6607ab26053595cad5e5e /roles/docker/tasks
parent95d94334bb028b9b3c655f7da4ca47c5b639e338 (diff)
downloadopenshift-801f215bd2cd5341d63b5dd91298d23b11dc3553.tar.gz
openshift-801f215bd2cd5341d63b5dd91298d23b11dc3553.tar.bz2
openshift-801f215bd2cd5341d63b5dd91298d23b11dc3553.tar.xz
openshift-801f215bd2cd5341d63b5dd91298d23b11dc3553.zip
docker-storage role added
Diffstat (limited to 'roles/docker/tasks')
-rw-r--r--roles/docker/tasks/main.yml9
1 files changed, 1 insertions, 8 deletions
diff --git a/roles/docker/tasks/main.yml b/roles/docker/tasks/main.yml
index ca700db17..96949230d 100644
--- a/roles/docker/tasks/main.yml
+++ b/roles/docker/tasks/main.yml
@@ -1,15 +1,8 @@
---
# tasks file for docker
- name: Install docker
- yum: pkg=docker-io
+ yum: pkg=docker
- name: enable and start the docker service
service: name=docker enabled=yes state=started
-- copy: src=enter-container.sh dest=/usr/local/bin/enter-container.sh mode=0755
-
-# From the origin rpm there exists instructions on how to
-# setup origin properly. The following steps come from there
-- name: Change root to be in the Docker group
- user: name=root groups=dockerroot append=yes
-