Merge pull request #35566 from rootfs/fix-mount

Automatic merge from submit-queue

add IsNotMountPoint() to mount_unsupported.go

fix the cross build issue
This commit is contained in:
Kubernetes Submit Queue
2016-10-25 20:04:46 -07:00
committed by GitHub

View File

@@ -57,3 +57,7 @@ func (mounter *SafeFormatAndMount) formatAndMount(source string, target string,
func (mounter *SafeFormatAndMount) diskLooksUnformatted(disk string) (bool, error) {
return true, nil
}
func IsNotMountPoint(file string) (bool, error) {
return true, nil
}