2021-08-23 13:14:53 +00:00
|
|
|
//go:build !linux
|
2016-12-16 09:50:14 +00:00
|
|
|
|
2018-02-05 21:05:59 +00:00
|
|
|
package homedir // import "github.com/docker/docker/pkg/homedir"
|
2016-12-16 09:50:14 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2018-10-15 07:52:53 +00:00
|
|
|
// GetRuntimeDir is unsupported on non-linux system.
|
|
|
|
func GetRuntimeDir() (string, error) {
|
|
|
|
return "", errors.New("homedir.GetRuntimeDir() is not supported on this system")
|
|
|
|
}
|
|
|
|
|
|
|
|
// StickRuntimeDirContents is unsupported on non-linux system.
|
|
|
|
func StickRuntimeDirContents(files []string) ([]string, error) {
|
|
|
|
return nil, errors.New("homedir.StickRuntimeDirContents() is not supported on this system")
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetDataHome is unsupported on non-linux system.
|
|
|
|
func GetDataHome() (string, error) {
|
|
|
|
return "", errors.New("homedir.GetDataHome() is not supported on this system")
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetConfigHome is unsupported on non-linux system.
|
|
|
|
func GetConfigHome() (string, error) {
|
|
|
|
return "", errors.New("homedir.GetConfigHome() is not supported on this system")
|
|
|
|
}
|
2023-01-17 13:09:09 +00:00
|
|
|
|
|
|
|
// GetLibHome is unsupported on non-linux system.
|
|
|
|
func GetLibHome() (string, error) {
|
|
|
|
return "", errors.New("homedir.GetLibHome() is not supported on this system")
|
|
|
|
}
|