277db5c3b7
Closes-Bug: 1982777 Change-Id: Ic752b981041b233ab55d5b9abef667b21b47857d
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item.key }}"
|
|
state: "directory"
|
|
owner: "{{ config_owner_user }}"
|
|
group: "{{ config_owner_group }}"
|
|
mode: "0770"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ multipathd_services }}"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item.key }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item.key }}/config.json"
|
|
mode: "0660"
|
|
become: true
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ multipathd_services }}"
|
|
notify:
|
|
- Restart multipathd container
|
|
|
|
- name: Copying over multipath.conf
|
|
vars:
|
|
service: "{{ multipathd_services['multipathd'] }}"
|
|
become: true
|
|
template:
|
|
src: "{{ item }}"
|
|
dest: "{{ node_config_directory }}/multipathd/multipath.conf"
|
|
mode: "0660"
|
|
with_first_found:
|
|
- "{{ node_custom_config }}/multipath/{{ inventory_hostname }}/multipath.conf"
|
|
- "{{ node_custom_config }}/multipath.conf"
|
|
- "multipath.conf.j2"
|
|
when:
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
notify:
|
|
- Restart multipathd container
|