From b6052ac5efcf112245f0dc958373c31785d527d1 Mon Sep 17 00:00:00 2001 From: Yolanda Robla Date: Thu, 1 Jun 2017 11:25:01 +0200 Subject: Fix ansible installation for non-root Currently ansible was set to be installed with pip, but this fails for non-root user. Instead of that, execute pip with --user flag, so we don't need root permissions and it is only installed for the current user. Change-Id: Ib37a2a3866b4b48aca834b894cdd128ee63b31d6 --- prototypes/xci/file/install-ansible.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'prototypes/xci') diff --git a/prototypes/xci/file/install-ansible.sh b/prototypes/xci/file/install-ansible.sh index daa7f516d..67a49b397 100644 --- a/prototypes/xci/file/install-ansible.sh +++ b/prototypes/xci/file/install-ansible.sh @@ -131,6 +131,6 @@ fi PIP=$(which pip) -sudo -H -E ${PIP} install "pip>6.0" +${PIP} install --user "pip>6.0" -pip install ansible==$XCI_ANSIBLE_PIP_VERSION +${PIP} install --user --upgrade ansible==$XCI_ANSIBLE_PIP_VERSION -- cgit 1.2.3-korg