From 790017c24298ff91d13346c3261bfbf443f5b9d2 Mon Sep 17 00:00:00 2001 From: "Simental Magana, Marcos" Date: Tue, 15 Nov 2016 11:22:55 -0600 Subject: [PATCH] ciao-deploy: don't install roles from ansible galaxy This is a cleanup commit; since the documentation ask the user to map the github.com/01org/ciao repository directly into the ciao-deploy container, it's not neccessary to install the roles from ansible-galaxy anymore due to those roles being used by ansible directly from the ciao repo. The `openstack-common` bundle is removed from the `swupd bundle-add` command because the `openstack-python-clients` bundle already includes it implicit. This commit fixes #14 Signed-off-by: Simental Magana, Marcos --- ciao-deploy/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ciao-deploy/Dockerfile b/ciao-deploy/Dockerfile index 0bab554..a97d3ce 100644 --- a/ciao-deploy/Dockerfile +++ b/ciao-deploy/Dockerfile @@ -5,9 +5,7 @@ ARG swupd_args ENV HOME=/root/ RUN swupd update $swupd_args -RUN swupd bundle-add cryptography sysadmin-hostmgmt go-basic c-basic openstack-common openstack-python-clients $swupd_args - -RUN ansible-galaxy install -r /usr/share/ansible/examples/ciao/requirements.yml --ignore-certs +RUN swupd bundle-add cryptography sysadmin-hostmgmt go-basic c-basic openstack-python-clients $swupd_args RUN rm -rf /var/lib/swupd