|
|
@@ -7,6 +7,7 @@ |
|
|
|
|
|
|
|
{%- if not mount.file_system in ['nfs', 'nfs4', 'cifs', 'tmpfs'] %} |
|
|
|
|
|
|
|
{%- if mount.make_fs is defined and mount.make_fs %} |
|
|
|
mkfs_{{ mount.device}}: |
|
|
|
cmd.run: |
|
|
|
- name: "mkfs.{{ mount.file_system }} -L {{ name }} {{ mount.device }}" |
|
|
@@ -16,11 +17,14 @@ mkfs_{{ mount.device}}: |
|
|
|
{%- if mount.file_system == 'xfs' %} |
|
|
|
- require: |
|
|
|
- pkg: xfs_packages_{{ mount.device }} |
|
|
|
{%- endif %} |
|
|
|
{%- endif %} |
|
|
|
|
|
|
|
{%- if mount.file_system == 'xfs' %} |
|
|
|
xfs_packages_{{ mount.device }}: |
|
|
|
pkg.installed: |
|
|
|
- name: xfsprogs |
|
|
|
{%- endif %} |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{%- endif %} |
|
|
|
|