diff options
author | Sascha Grunert <sgrunert@suse.com> | 2019-07-29 10:09:52 +0200 |
---|---|---|
committer | Sascha Grunert <sgrunert@suse.com> | 2019-07-30 12:59:11 +0200 |
commit | 52ae51c79fc8a373c37a922ad237229400dbd968 (patch) | |
tree | b78aac854b55b67c3783b79b8dbc2d14ebaeca7e /libpod.conf | |
parent | 2c98bd5398979109cf3ddc3cbe4e3400b67d74ac (diff) | |
download | podman-52ae51c79fc8a373c37a922ad237229400dbd968.tar.gz podman-52ae51c79fc8a373c37a922ad237229400dbd968.tar.bz2 podman-52ae51c79fc8a373c37a922ad237229400dbd968.zip |
Update libpod.conf to be NixOS friendly
NixOS links the current system state to `/run/current-system`, so we
have to add these paths to the configuration files as well to work out
of the box.
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
Diffstat (limited to 'libpod.conf')
-rw-r--r-- | libpod.conf | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libpod.conf b/libpod.conf index c92f60a10..6dd021c02 100644 --- a/libpod.conf +++ b/libpod.conf @@ -12,7 +12,8 @@ conmon_path = [ "/usr/bin/conmon", "/usr/sbin/conmon", "/usr/local/bin/conmon", - "/usr/local/sbin/conmon" + "/usr/local/sbin/conmon", + "/run/current-system/sw/bin/conmon", ] # Environment variables to pass into conmon @@ -128,7 +129,8 @@ runc = [ "/usr/local/sbin/runc", "/sbin/runc", "/bin/runc", - "/usr/lib/cri-o-runc/sbin/runc" + "/usr/lib/cri-o-runc/sbin/runc", + "/run/current-system/sw/bin/runc", ] crun = [ |