Skip to content

Commit

Permalink
Merge pull request kubernetes#30666 from feiskyer/fix-mount
Browse files Browse the repository at this point in the history
Automatic merge from submit-queue

Fix pkg/util/mount for osx

Fix kubernetes#30665.
  • Loading branch information
Kubernetes Submit Queue authored Aug 17, 2016
2 parents f3f818a + 12d7c4f commit 2bc5414
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/util/mount/mount_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 2bc5414

Please sign in to comment.