func UmountExistingVolume(fstype, target, sharedDir string) error { if fstype == "dir" { return storage.UmountVFSVolume(target, sharedDir) } if !path.IsAbs(target) { return nil } return dm.UnmapVolume(target) }
func CleanupExistingVolume(fstype, filepath, sharedDir string) error { if fstype == "dir" { return storage.UmountVFSVolume(filepath, sharedDir) } return dm.UnmapVolume(filepath) }