autofs/templates/systemd.mount.j2

12 lines
306 B
Plaintext
Raw Normal View History

2019-01-12 18:12:55 +00:00
[Unit]
Description=Mount {{ item.key }}
After=network.target multi-user.target
[Mount]
What={{ item.value.share }}
Where={{ item.value.mount }}
Options={{ item.value.options | join(',') | default ('mounts_options') }}
2019-04-08 21:08:29 +00:00
Type={{ item.value.type | default ('mounts_type') }}
2019-01-12 18:12:55 +00:00
[Install]
WantedBy=default.target