352d58a7af
running chown and chmod on files and folders not created by devstack causes a few issues: * On nfs mounted directories it can take an extremely long time to chown -R some of the git repos, especially if any tox commands have been ran in the host * chown can cause the host files to get into a weird state if nfs is set up wrong. If files and folders are pre-existing we should assume they are in the correct state, and not modify them. Fix setup-devstack-log-dir to create the logs directory with correct permissions in the first place. Change-Id: I5ebdaded3ffd0a5bc70c5e9ab5b18daefb358f58 Signed-off-by: Graham Hayes <gr@ham.ie>
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
- name: Ensure the data folder exists
|
|
become: true
|
|
file:
|
|
path: "{{ devstack_data_base_dir }}/data"
|
|
state: directory
|
|
owner: stack
|
|
group: stack
|
|
mode: 0755
|
|
when: 'inventory_hostname in groups["subnode"]|default([])'
|
|
|
|
- name: Ensure the CA folder exists
|
|
become: true
|
|
file:
|
|
path: "{{ devstack_data_base_dir }}/data/CA"
|
|
state: directory
|
|
owner: stack
|
|
group: stack
|
|
mode: 0755
|
|
when: 'inventory_hostname in groups["subnode"]|default([])'
|
|
|
|
- name: Pull the CA certificate and folder
|
|
become: true
|
|
synchronize:
|
|
src: "{{ item }}"
|
|
dest: "{{ zuul.executor.work_root }}/{{ item | basename }}"
|
|
mode: pull
|
|
with_items:
|
|
- "{{ devstack_data_base_dir }}/data/ca-bundle.pem"
|
|
- "{{ devstack_data_base_dir }}/data/CA"
|
|
when: inventory_hostname == 'controller'
|
|
|
|
- name: Push the CA certificate
|
|
become: true
|
|
become_user: stack
|
|
synchronize:
|
|
src: "{{ zuul.executor.work_root }}/ca-bundle.pem"
|
|
dest: "{{ devstack_data_base_dir }}/data/ca-bundle.pem"
|
|
mode: push
|
|
when: 'inventory_hostname in groups["subnode"]|default([])'
|
|
|
|
- name: Push the CA folder
|
|
become: true
|
|
become_user: stack
|
|
synchronize:
|
|
src: "{{ zuul.executor.work_root }}/CA/"
|
|
dest: "{{ devstack_data_base_dir }}/data/"
|
|
mode: push
|
|
when: 'inventory_hostname in groups["subnode"]|default([])'
|
|
|
|
- name: Ensure the data folder and subfolders have the correct permissions
|
|
become: true
|
|
file:
|
|
path: "{{ devstack_data_base_dir }}/data"
|
|
state: directory
|
|
owner: stack
|
|
group: stack
|
|
mode: 0755
|
|
recurse: yes
|
|
when: 'inventory_hostname in groups["subnode"]|default([])'
|