|
| 1 | +//go:build windows |
| 2 | +// +build windows |
| 3 | + |
| 4 | +package util |
| 5 | + |
| 6 | +import ( |
| 7 | + "github.com/pkg/errors" |
| 8 | +) |
| 9 | + |
| 10 | +func GetDiskInfo(directory string) (*DiskInfo, error) { |
| 11 | + return nil, errors.Errorf("cannot get disk info of directory %v", directory) |
| 12 | +} |
| 13 | + |
| 14 | +func RemoveHostDirectoryContent(directory string) error { |
| 15 | + return errors.Errorf("failed to remove host directory %v", directory) |
| 16 | +} |
| 17 | + |
| 18 | +func CopyHostDirectoryContent(src, dest string) error { |
| 19 | + return errors.Errorf("failed to copy the content from %v to %v for the host", src, dest) |
| 20 | +} |
| 21 | + |
| 22 | +func CreateDiskPathReplicaSubdirectory(path string) error { |
| 23 | + return errors.Errorf("error creating data path %v on host", path) |
| 24 | +} |
| 25 | + |
| 26 | +func ExpandFileSystem(volumeName string) error { |
| 27 | + return errors.Errorf("error expanding filsystem on %v", volumeName) |
| 28 | +} |
| 29 | + |
| 30 | +func DetectFileSystem(volumeName string) (string, error) { |
| 31 | + return "", errors.Errorf("error detecting filsystem on %v", volumeName) |
| 32 | +} |
| 33 | + |
| 34 | +func GetDiskConfig(path string) (*DiskConfig, error) { |
| 35 | + return nil, errors.Errorf("error getting disk config from %v", path) |
| 36 | +} |
| 37 | + |
| 38 | +func GenerateDiskConfig(path string) (*DiskConfig, error) { |
| 39 | + return nil, errors.Errorf("error generating disk config from %v", path) |
| 40 | +} |
0 commit comments