mirror of
https://github.com/valitydev/salt-common.git
synced 2024-11-06 10:25:23 +00:00
11 lines
234 B
Plaintext
11 lines
234 B
Plaintext
{% set efi = salt['pillar.get']('efi',
|
|
{'mountpoint': '/boot', 'device': '/dev/md1'}) %}
|
|
|
|
efi_directory:
|
|
mount.mounted:
|
|
- name: {{ efi['mountpoint'] }}
|
|
# - device: {{ efi['device'] }}
|
|
- fstype: vfat
|
|
- mkmnt: True
|
|
|