9965cc46ff
Add become to only neccesary tasks in roles: - aodh - barbican - bifrost - ceilometer - ceph - chrony - cinder - cloudkitty - collectd - congress - designate - elasticsearch - etcd - freezer - gnocchi - grafana - influxdb - ironic - iscsi - karbor - kibana - kuryr - magnum - manila - mistral - mongodb - multipathd - murano - octavia - panko - qdrouterd - rally - sahara - searchlight - senlin - skydive - solum - swift - swift - tacker - telegraf - tempest - trove - vmtp - watcher - zun Change-Id: I6e32d94d4172dd96d09d8609e8a5221ab5586a31 Partial-Implements: blueprint ansible-specific-task-become
32 lines
822 B
YAML
32 lines
822 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
mode: "0770"
|
|
become: true
|
|
when: inventory_hostname in groups['compute']
|
|
with_items:
|
|
- "multipathd"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
mode: "0660"
|
|
become: true
|
|
when: inventory_hostname in groups['compute']
|
|
with_items:
|
|
- "multipathd"
|
|
|
|
- name: Copying over multipath.conf
|
|
template:
|
|
src: "{{ role_path }}/templates/multipath.conf.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/multipath.conf"
|
|
mode: "0660"
|
|
become: true
|
|
with_items:
|
|
- "multipathd"
|