kolla-ansible/ansible/roles/multipathd/tasks/config.yml
Christian Berendt f3a609e8db Use multipathd hostgroup in the multipathd role
There is already a multipathd hostgroup in the inventory.
This hostgroup should be used in this role.

Change-Id: If0cc0f8e4b81f71c40357bdba66bc2c62d72dfd8
2018-05-18 10:34:20 +02:00

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"