diff options
author | Markos Chandras <mchandras@suse.de> | 2017-09-18 21:04:23 +0100 |
---|---|---|
committer | Markos Chandras <mchandras@suse.de> | 2017-09-18 21:05:38 +0100 |
commit | 0927671781f6875926dac2e5f4bb10816e67070c (patch) | |
tree | 2b9af72311c36a71e8b41e7a6e960f6b75a35f03 | |
parent | 3e94b3c49f25a426aeb18b14bfa475d803449652 (diff) |
xci: provision-vm-nodes: Use sudo to remove the XCI directory
Since I00d77e1fc62cccda7920af3469af9d44247780f4 the entire XCI_DEVEL_ROOT
is being removed. However, some of the files are owned by root so we
need elevated privileges to remove these files and directories
Change-Id: Ie10018ded198b922077e38fa5776fca098418192
Signed-off-by: Markos Chandras <mchandras@suse.de>
-rw-r--r-- | xci/playbooks/provision-vm-nodes.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/xci/playbooks/provision-vm-nodes.yml b/xci/playbooks/provision-vm-nodes.yml index 5e897e17..0419dcfc 100644 --- a/xci/playbooks/provision-vm-nodes.yml +++ b/xci/playbooks/provision-vm-nodes.yml @@ -10,6 +10,15 @@ - hosts: localhost connection: local gather_facts: true + become: yes + vars_files: + - ../var/opnfv.yml + roles: + - role: remove-folders + +- hosts: localhost + connection: local + gather_facts: true vars_files: - ../var/opnfv.yml pre_tasks: @@ -17,8 +26,6 @@ include_vars: file: ../var/{{ ansible_os_family }}.yml roles: - # using these roles here ensures that we can reuse this playbook in different context - - role: remove-folders - { role: clone-repository, project: "opnfv/releng-xci", repo: "{{ OPNFV_RELENG_GIT_URL }}", dest: "{{ OPNFV_RELENG_PATH }}", version: "{{ OPNFV_RELENG_VERSION }}" } - { role: clone-repository, project: "opnfv/bifrost", repo: "{{ OPENSTACK_BIFROST_GIT_URL }}", dest: "{{ OPENSTACK_BIFROST_PATH }}", version: "{{ OPENSTACK_BIFROST_VERSION }}" } |