Merge pull request #35566 from rootfs/fix-mount

Automatic merge from submit-queue

add IsNotMountPoint() to mount_unsupported.go

fix the cross build issue
pull/6/head
Kubernetes Submit Queue 2016-10-25 20:04:46 -07:00 committed by GitHub
commit 20270531c2
1 changed files with 4 additions and 0 deletions

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
}