Files
cloudron-box/src/systemd-mount.ejs

21 lines
406 B
Plaintext
Raw Normal View History

[Unit]
Description=<%= description %>
<% if ( type === 'cifs' || type === 'nfs' || type === 'fuse.sshfs' ) { %>
2025-01-12 18:02:06 +01:00
Requires=<%= dependsOn %>
After=<%= dependsOn %>
Before=docker.service
2025-01-12 18:02:06 +01:00
<% } else if ( type === 'loopback' ) { %>
Requires=<%= dependsOn %>
After=<%= dependsOn %>
<% } %>
[Mount]
What=<%= what %>
Where=<%= where %>
Options=<%= options %>
Type=<%= type %>
[Install]
WantedBy=multi-user.target