mirror of https://github.com/k3s-io/k3s
Merge pull request #30724 from jingxu97/reconcile-8-16
Automatic merge from submit-queue Add GetDeviceNameFromMount in mount_unsupported.gopull/6/head
commit
90f3a95700
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue