k3s/vendor/k8s.io/utils/mount/mount_unsupported.go

73 lines
2.2 KiB
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
// +build !linux,!windows
/*
Copyright 2014 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package mount
import (
"errors"
)
2019-09-27 21:51:53 +00:00
// Mounter implements mount.Interface for unsupported platforms
2019-01-12 04:58:27 +00:00
type Mounter struct {
mounterPath string
}
2019-09-27 21:51:53 +00:00
var errUnsupported = errors.New("util/mount on this platform is not supported")
2019-01-12 04:58:27 +00:00
// New returns a mount.Interface for the current system.
// It provides options to override the default mounter behavior.
// mounterPath allows using an alternative to `/bin/mount` for mounting.
func New(mounterPath string) Interface {
return &Mounter{
mounterPath: mounterPath,
}
}
2019-09-27 21:51:53 +00:00
// Mount always returns an error on unsupported platforms
2019-01-12 04:58:27 +00:00
func (mounter *Mounter) Mount(source string, target string, fstype string, options []string) error {
2019-09-27 21:51:53 +00:00
return errUnsupported
2019-01-12 04:58:27 +00:00
}
2019-09-27 21:51:53 +00:00
// Unmount always returns an error on unsupported platforms
2019-01-12 04:58:27 +00:00
func (mounter *Mounter) Unmount(target string) error {
2019-09-27 21:51:53 +00:00
return errUnsupported
2019-01-12 04:58:27 +00:00
}
2019-09-27 21:51:53 +00:00
// List always returns an error on unsupported platforms
2019-01-12 04:58:27 +00:00
func (mounter *Mounter) List() ([]MountPoint, error) {
2019-09-27 21:51:53 +00:00
return []MountPoint{}, errUnsupported
2019-01-12 04:58:27 +00:00
}
2019-09-27 21:51:53 +00:00
// IsLikelyNotMountPoint always returns an error on unsupported platforms
2019-01-12 04:58:27 +00:00
func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error) {
2019-09-27 21:51:53 +00:00
return true, errUnsupported
2019-01-12 04:58:27 +00:00
}
2019-09-27 21:51:53 +00:00
// GetMountRefs always returns an error on unsupported platforms
func (mounter *Mounter) GetMountRefs(pathname string) ([]string, error) {
return nil, errUnsupported
2019-01-12 04:58:27 +00:00
}
func (mounter *SafeFormatAndMount) formatAndMount(source string, target string, fstype string, options []string) error {
return mounter.Interface.Mount(source, target, fstype, options)
}
func (mounter *SafeFormatAndMount) diskLooksUnformatted(disk string) (bool, error) {
2019-09-27 21:51:53 +00:00
return true, errUnsupported
2019-01-12 04:58:27 +00:00
}