Add GetDeviceNameFromMount in mount_unsupported.go

Add GetDeviceNameFromMount in mount_unsupported.go
This commit is contained in:
Jing Xu 2016-08-16 16:34:10 -07:00
parent 7a3d5159cf
commit 89de4f2f55

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
}