Merge pull request #30724 from jingxu97/reconcile-8-16

Automatic merge from submit-queue

Add GetDeviceNameFromMount in mount_unsupported.go
pull/6/head
Kubernetes Submit Queue 2016-08-17 01:35:05 -07:00 committed by GitHub
commit 90f3a95700
1 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,10 @@ func (mounter *Mounter) PathIsDevice(pathname string) (bool, error) {
return true, nil
}
func (mounter *Mounter) GetDeviceNameFromMount(mountPath, pluginDir string) (string, error) {
return "", nil
}
func (mounter *SafeFormatAndMount) formatAndMount(source string, target string, fstype string, options []string) error {
return nil
}