Add php4dvd to oci-node01 and create local storage
This commit is contained in:
parent
31b38dfc2f
commit
5fc2d161ad
1 changed files with 16 additions and 1 deletions
|
@ -12,9 +12,24 @@
|
||||||
vars_files:
|
vars_files:
|
||||||
- "{{ ansible_private }}/vars.yml"
|
- "{{ ansible_private }}/vars.yml"
|
||||||
|
|
||||||
|
pre_tasks:
|
||||||
|
- name: Mount /export
|
||||||
|
ansible.posix.mount:
|
||||||
|
name: /export
|
||||||
|
src: LABEL=/export
|
||||||
|
fstype: xfs
|
||||||
|
opts: noatime,noexec,nosuid,nodev
|
||||||
|
passno: "0"
|
||||||
|
dump: "0"
|
||||||
|
state: mounted
|
||||||
|
when: ansible_fqdn == 'oci-node01.home.foo.sh'
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- base
|
- base
|
||||||
- authcheck
|
- authcheck
|
||||||
- grafana
|
- grafana
|
||||||
- kdc
|
- kdc
|
||||||
- roundcube
|
- role: php4dvd
|
||||||
|
when: ansible_fqdn == 'oci-node01.home.foo.sh'
|
||||||
|
- role: roundcube
|
||||||
|
when: ansible_fqdn == 'oci-node01.home.foo.sh'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue