21 lines
406 B
Plaintext
21 lines
406 B
Plaintext
[Unit]
|
|
Description=<%= description %>
|
|
<% if ( type === 'cifs' || type === 'nfs' || type === 'fuse.sshfs' ) { %>
|
|
Requires=<%= dependsOn %>
|
|
After=<%= dependsOn %>
|
|
Before=docker.service
|
|
<% } else if ( type === 'loopback' ) { %>
|
|
Requires=<%= dependsOn %>
|
|
After=<%= dependsOn %>
|
|
<% } %>
|
|
|
|
[Mount]
|
|
What=<%= what %>
|
|
Where=<%= where %>
|
|
Options=<%= options %>
|
|
Type=<%= type %>
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|