summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-06-28 16:00:55 +0200
committerGitHub <noreply@github.com>2019-06-28 16:00:55 +0200
commit5e42bf071760bc09beea1d75345d7c95407a915a (patch)
tree529eab032c5a041c7855e86a1f89c710f5aae1ea /cmd
parent4aa109f00e95746625c692c7056b42b72750c259 (diff)
parent7255468e6584d8170924dfc5ffbde136e8cc6654 (diff)
downloadpodman-5e42bf071760bc09beea1d75345d7c95407a915a.tar.gz
podman-5e42bf071760bc09beea1d75345d7c95407a915a.tar.bz2
podman-5e42bf071760bc09beea1d75345d7c95407a915a.zip
Merge pull request #3397 from giuseppe/fix-reboot
rootless: enable linger if /run/user/UID not exists
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go
index 04b1e80cf..435efd559 100644
--- a/cmd/podman/main.go
+++ b/cmd/podman/main.go
@@ -100,7 +100,7 @@ func initConfig() {
}
func before(cmd *cobra.Command, args []string) error {
- if err := libpod.SetXdgRuntimeDir(""); err != nil {
+ if err := libpod.SetXdgRuntimeDir(); err != nil {
logrus.Errorf(err.Error())
os.Exit(1)
}