Merge pull request #55 from nak3/nonempty

Add nonempty option to ceph-fuse to support ReadWriteMany
This commit is contained in:
Huamin Chen
2018-08-07 14:14:57 -04:00
committed by GitHub

View File

@ -40,6 +40,7 @@ func mountFuse(mountPoint string, cr *credentials, volOptions *volumeOptions, vo
"-n", cephEntityClientPrefix + cr.id,
"--keyring", getCephKeyringPath(volUuid, cr.id),
"-r", volOptions.RootPath,
"-o", "nonempty",
}
out, err := execCommand("ceph-fuse", args[:]...)