|
|
@@ -28,6 +28,10 @@ mkfs_{{ mount.device}}: |
|
|
|
- onlyif: "test `blkid {{ mount.device }} >/dev/null;echo $?` -eq 2" |
|
|
|
- require_in: |
|
|
|
- mount: {{ mount.path }} |
|
|
|
{%- if mount.file_system == 'xfs' %} |
|
|
|
- require: |
|
|
|
- pkg: xfs_packages |
|
|
|
{%- endif %} |
|
|
|
|
|
|
|
{%- endif %} |
|
|
|
|
|
|
@@ -38,10 +42,21 @@ mkfs_{{ mount.device}}: |
|
|
|
- mkmnt: True |
|
|
|
- opts: {{ mount.get('opts', 'defaults,noatime') }} |
|
|
|
{%- if mount.file_system == 'xfs' %} |
|
|
|
require: |
|
|
|
- require: |
|
|
|
- pkg: xfs_packages |
|
|
|
{%- endif %} |
|
|
|
|
|
|
|
{%- if mount.user is defined %} |
|
|
|
{{ mount.path }}_permissions: |
|
|
|
file.directory: |
|
|
|
- name: {{ mount.path }} |
|
|
|
- user: {{ mount.user }} |
|
|
|
- group: {{ mount.get('group', 'root') }} |
|
|
|
- mode: {{ mount.get('mode', 755) }} |
|
|
|
- require: |
|
|
|
- mount: {{ mount.path }} |
|
|
|
{%- endif %} |
|
|
|
|
|
|
|
{%- endif %} |
|
|
|
|
|
|
|
{%- endfor %} |