diff --git a/CHANGES b/CHANGES index 7b6a12da7..f0c060970 100644 --- a/CHANGES +++ b/CHANGES @@ -2460,4 +2460,5 @@ * backup cleaner: do not clean if not mounted * restore: fix sftp private key perms * support: add a separate system user named cloudron-support +* sshfs: fix bug where sshfs mounts were generated without unbound dependancy diff --git a/src/systemd-mount.ejs b/src/systemd-mount.ejs index 895835641..1ccf729a1 100644 --- a/src/systemd-mount.ejs +++ b/src/systemd-mount.ejs @@ -1,6 +1,6 @@ [Unit] Description=<%= name %> -<% if ( type === 'cifs' || type === 'nfs' || type === 'sshfs' ) { %> +<% if ( type === 'cifs' || type === 'nfs' || type === 'fuse.sshfs' ) { %> Requires=unbound.service After=unbound.service Before=docker.service