f3a609e8db
There is already a multipathd hostgroup in the inventory. This hostgroup should be used in this role. Change-Id: If0cc0f8e4b81f71c40357bdba66bc2c62d72dfd8
32 lines
828 B
YAML
32 lines
828 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['multipathd']
|
|
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['multipathd']
|
|
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"
|