From 241326a9a8c20ad7f2bcf651416b836e7778e090 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 16 Apr 2020 12:25:26 -0500 Subject: Podman V2 birth remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude --- cmd/podman/remoteclientconfig/config_linux.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 cmd/podman/remoteclientconfig/config_linux.go (limited to 'cmd/podman/remoteclientconfig/config_linux.go') diff --git a/cmd/podman/remoteclientconfig/config_linux.go b/cmd/podman/remoteclientconfig/config_linux.go deleted file mode 100644 index afcf73e6d..000000000 --- a/cmd/podman/remoteclientconfig/config_linux.go +++ /dev/null @@ -1,17 +0,0 @@ -package remoteclientconfig - -import ( - "os" - "path/filepath" - - "github.com/containers/storage/pkg/homedir" -) - -func getConfigFilePath() string { - path := os.Getenv("XDG_CONFIG_HOME") - if path == "" { - homeDir := homedir.Get() - path = filepath.Join(homeDir, ".config") - } - return filepath.Join(path, "containers", remoteConfigFileName) -} -- cgit v1.2.3-54-g00ecf