Merge pull request #3116 from mheon/fix_libpod_conf

Fix libpod.conf option ordering
This commit is contained in:
OpenShift Merge Robot
2019-05-14 09:41:18 +02:00
committed by GitHub

View File

@ -99,6 +99,10 @@ num_locks = 2048
# Uncomment to change location from this default. # Uncomment to change location from this default.
#volume_path = "/var/lib/containers/storage/volumes" #volume_path = "/var/lib/containers/storage/volumes"
# Selects which logging mechanism to use for Podman events. Valid values
# are `journald` or `file`.
# events_logger = "journald"
# Default OCI runtime # Default OCI runtime
runtime = "runc" runtime = "runc"
@ -114,6 +118,8 @@ runc = [
"/usr/lib/cri-o-runc/sbin/runc" "/usr/lib/cri-o-runc/sbin/runc"
] ]
# Selects which logging mechanism to use for Podman events. Valid values # The [runtimes] table MUST be the last thing in this file.
# are `journald` or `file`. # (Unless another table is added)
# events_logger = "journald" # TOML does not provide a way to end a table other than a further table being
# defined, so every key hereafter will be part of [runtimes] and not the main
# config.