Merge pull request #30666 from feiskyer/fix-mount

Automatic merge from submit-queue

Fix pkg/util/mount for osx

Fix #30665.
pull/6/head
Kubernetes Submit Queue 2016-08-17 11:37:53 -07:00 committed by GitHub
commit 2bc5414de6
1 changed files with 4 additions and 0 deletions

View File

@ -36,6 +36,10 @@ func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error) {
return true, nil
}
func (mounter *Mounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error) {
return "", nil
}
func (mounter *Mounter) DeviceOpened(pathname string) (bool, error) {
return false, nil
}