summaryrefslogtreecommitdiffstats
path: root/xci/playbooks/configure-localhost.yml
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-09-19 21:59:25 +0100
committerMarkos Chandras <mchandras@suse.de>2017-09-21 21:51:42 +0100
commit14d5449ef8de17293f2524005d7c2262f0baa733 (patch)
treef6cda82548ec41f951de03cad4e7400b24bda619 /xci/playbooks/configure-localhost.yml
parenteead93830fc0d20996287439d765770d69bc533c (diff)
xci: Gain elevated privileges to remove the XCI_DEVEL_ROOT directory
This is similar to 0927671781f6875926dac2e5f4bb10816e67070c. We need elevated privileges to remove the XCI_DEVEL_ROOT directory so move this role to its own play. Change-Id: Ice4f030eeb28cd24a6166f11a5a792ab3df8880c Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'xci/playbooks/configure-localhost.yml')
-rw-r--r--xci/playbooks/configure-localhost.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/xci/playbooks/configure-localhost.yml b/xci/playbooks/configure-localhost.yml
index 10dd6946..aebde61e 100644
--- a/xci/playbooks/configure-localhost.yml
+++ b/xci/playbooks/configure-localhost.yml
@@ -9,6 +9,7 @@
##############################################################################
- hosts: localhost
connection: local
+ become: yes
vars_files:
- ../var/opnfv.yml
pre_tasks:
@@ -17,6 +18,16 @@
file: ../var/{{ ansible_os_family }}.yml
roles:
- role: remove-folders
+
+- hosts: localhost
+ connection: local
+ vars_files:
+ - ../var/opnfv.yml
+ pre_tasks:
+ - name: Load distribution variables
+ include_vars:
+ file: ../var/{{ ansible_os_family }}.yml
+ roles:
- { role: clone-repository, project: "opnfv/releng-xci", repo: "{{ OPNFV_RELENG_GIT_URL }}", dest: "{{ OPNFV_RELENG_PATH }}", version: "{{ OPNFV_RELENG_VERSION }}" }
- { role: clone-repository, project: "openstack/openstack-ansible-openstack_openrc", repo: "{{ OPENSTACK_OSA_OPENRC_GIT_URL }}", dest: "{{ OPENSTACK_OSA_OPENRC_PATH }}", version: "master" }
- hosts: localhost