diff options
author | Fatih Degirmenci <fatih.degirmenci@ericsson.com> | 2017-06-02 16:23:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-06-02 16:23:35 +0000 |
commit | dd798122fca46b7d550f019f0d73b9044e083818 (patch) | |
tree | ccbfd73ba42095afcb24cd97b6582e1292a17e7a /prototypes | |
parent | 14ac0b52e383b29f63455defcf2317fa2cce01a2 (diff) | |
parent | b6052ac5efcf112245f0dc958373c31785d527d1 (diff) |
Merge "Fix ansible installation for non-root"
Diffstat (limited to 'prototypes')
-rw-r--r-- | prototypes/xci/file/install-ansible.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |