You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A trailing slash on the nfs share causes the mount to fail. No trailing slash on the nfs share, and a trailing slash on the mountpoint causes a CRIT error, but the mount does mount. No trailing slashes at all works with no errors.
Fails: MOUNTS=("rw|nfshost|/export/blah/|/mounts/blah/|")
Fails: MOUNTS=("rw|nfshost|/export/blah/|/mounts/blah|")
Works with error: MOUNTS=("rw|nfshost|/export/blah|/mounts/blah/|")
Works without error: MOUNTS=("rw|nfshost|/export/blah|/mounts/blah|")
Personally, I believe all should work with no error. We just have to strip any trailing slashes.
The text was updated successfully, but these errors were encountered:
A trailing slash on the nfs share causes the mount to fail. No trailing slash on the nfs share, and a trailing slash on the mountpoint causes a CRIT error, but the mount does mount. No trailing slashes at all works with no errors.
Fails: MOUNTS=("rw|nfshost|/export/blah/|/mounts/blah/|")
Fails: MOUNTS=("rw|nfshost|/export/blah/|/mounts/blah|")
Works with error: MOUNTS=("rw|nfshost|/export/blah|/mounts/blah/|")
Works without error: MOUNTS=("rw|nfshost|/export/blah|/mounts/blah|")
Personally, I believe all should work with no error. We just have to strip any trailing slashes.
The text was updated successfully, but these errors were encountered: