diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-06-21 12:49:23 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-06-27 16:34:35 +0200 |
commit | 7255468e6584d8170924dfc5ffbde136e8cc6654 (patch) | |
tree | bcc3242ce283e43eb327c30dd2145d388e681752 /cmd/podman | |
parent | 0906b32087c3d7db6844873a7d46241430a1b065 (diff) | |
download | podman-7255468e6584d8170924dfc5ffbde136e8cc6654.tar.gz podman-7255468e6584d8170924dfc5ffbde136e8cc6654.tar.bz2 podman-7255468e6584d8170924dfc5ffbde136e8cc6654.zip |
rootless: enable linger if /run/user/UID not exists
at least on Fedora 30 it creates the /run/user/UID directory for the
user logged in via ssh.
This needs to be done very early so that every other check when we
create the default configuration file will point to the correct
location.
Closes: https://github.com/containers/libpod/issues/3410
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/main.go | 2 |
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) } |