blob: 351b529f68a0764a36a65807a1d0b6d4c04e31e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: Ensure required software is installed.
package: name="{{ item }}" state=present
with_items: [ 'parted', 'mdadm', 'nfs-utils' ]
- name: configure network fs
include_tasks: nfs.yml
- name: configure ipepdvcompute2
include_tasks: ipecompute2.yml
when: inventory_hostname == compute2_ip
- name: configure ipepdvcompute4
include_tasks: ipecompute4.yml
when: inventory_hostname == compute4_ip
|