Merge "zuul: create Neutron config dir for the devstack job"

changes/02/554802/1
Zuul 5 years ago committed by Gerrit Code Review
commit aa358e5e66

@ -12,6 +12,8 @@
- ^doc/.*
- ^qinling/tests/unit/.*$
- ^releasenotes/.*$
pre-run: playbooks/pre.yaml
post-run: playbooks/post.yaml
vars:
devstack_services:
# Disable unneeded services.

@ -0,0 +1,8 @@
- hosts: all
tasks:
- name: cleanup the Neutron config dir
become: true
file:
path: /etc/neutron
state: absent

@ -0,0 +1,10 @@
- hosts: all
tasks:
- name: create Neutron config dir for devstack job
become: true
file:
path: /etc/neutron
owner: stack
recurse: yes
state: directory
Loading…
Cancel
Save