You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
503 B
25 lines
503 B
package command
|
|
|
|
import (
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
|
"github.com/seaweedfs/fuse"
|
|
)
|
|
|
|
func osSpecificMountOptions() []fuse.MountOption {
|
|
return []fuse.MountOption{
|
|
fuse.AllowNonEmptyMount(),
|
|
}
|
|
}
|
|
|
|
func checkMountPointAvailable(dir string) bool {
|
|
mountPoint := dir
|
|
if mountPoint != "/" && strings.HasSuffix(mountPoint, "/") {
|
|
mountPoint = mountPoint[0 : len(mountPoint)-1]
|
|
}
|
|
|
|
if mounted, err := util.Mounted(mountPoint); err != nil || mounted {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|