diff options
author | Jason T. Greene <jason.greene@redhat.com> | 2022-05-11 16:42:18 -0500 |
---|---|---|
committer | Jason T. Greene <jason.greene@redhat.com> | 2022-05-12 14:41:26 -0500 |
commit | 7804f4d2915449ff3f1f8ef2aade1118dd145c69 (patch) | |
tree | 15766c4d9f6f5ba6509f85844ee915ac33956439 /pkg/util/utils_windows.go | |
parent | 86314850511af5ab485a49eff9ab02c71736eb47 (diff) | |
download | podman-7804f4d2915449ff3f1f8ef2aade1118dd145c69.tar.gz podman-7804f4d2915449ff3f1f8ef2aade1118dd145c69.tar.bz2 podman-7804f4d2915449ff3f1f8ef2aade1118dd145c69.zip |
Add support for machine events on Windows
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'pkg/util/utils_windows.go')
-rw-r--r-- | pkg/util/utils_windows.go | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pkg/util/utils_windows.go b/pkg/util/utils_windows.go index 2732124f2..b91680f7a 100644 --- a/pkg/util/utils_windows.go +++ b/pkg/util/utils_windows.go @@ -4,6 +4,9 @@ package util import ( + "path/filepath" + + "github.com/containers/storage/pkg/homedir" "github.com/pkg/errors" ) @@ -34,7 +37,12 @@ func GetRootlessPauseProcessPidPathGivenDir(unused string) (string, error) { // GetRuntimeDir returns the runtime directory func GetRuntimeDir() (string, error) { - return "", errors.New("this function is not implemented for windows") + data, err := homedir.GetDataHome() + if err != nil { + return "", err + } + runtimeDir := filepath.Join(data, "containers", "podman") + return runtimeDir, nil } // GetRootlessConfigHomeDir returns the config home directory when running as non root |