forked from pool/podman
Accepting request 688763 from devel:kubic
OBS-URL: https://build.opensuse.org/request/show/688763 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/podman?expand=0&rev=40
This commit is contained in:
parent
aa618aaf5a
commit
2173e02175
16
libpod.conf
16
libpod.conf
@ -4,12 +4,6 @@
|
|||||||
# Default transport method for pulling and pushing for images
|
# Default transport method for pulling and pushing for images
|
||||||
image_default_transport = "docker://"
|
image_default_transport = "docker://"
|
||||||
|
|
||||||
# Paths to look for a valid OCI runtime (runc, runv, etc)
|
|
||||||
runtime_path = [
|
|
||||||
"/usr/bin/runc",
|
|
||||||
"/usr/sbin/runc",
|
|
||||||
]
|
|
||||||
|
|
||||||
# Paths to look for the Conmon container manager binary
|
# Paths to look for the Conmon container manager binary
|
||||||
conmon_path = [
|
conmon_path = [
|
||||||
"/usr/lib/podman/bin/conmon",
|
"/usr/lib/podman/bin/conmon",
|
||||||
@ -84,3 +78,13 @@ pause_command = "/pause"
|
|||||||
|
|
||||||
# Default libpod support for container labeling
|
# Default libpod support for container labeling
|
||||||
# label=true
|
# label=true
|
||||||
|
|
||||||
|
# Default OCI runtime
|
||||||
|
runtime = "runc"
|
||||||
|
|
||||||
|
# Paths to look for a valid OCI runtime (runc, runv, etc)
|
||||||
|
[runtimes]
|
||||||
|
runc = [
|
||||||
|
"/usr/bin/runc",
|
||||||
|
"/usr/sbin/runc"
|
||||||
|
]
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 22 21:02:05 UTC 2019 - Flavio Castelli <fcastelli@suse.com>
|
||||||
|
|
||||||
|
- Change default libpod.conf configuration file: use the runtimes
|
||||||
|
section to allow users to specify different OCI runtimes. This
|
||||||
|
allows user to choose which runtime to use on a per container
|
||||||
|
basis.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 19 13:15:38 UTC 2019 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Add 'apparmor-parser' to list of requires (boo#1123387)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Mar 16 08:33:38 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Scriptlets contain sh-compatible code, so drop -p /bin/bash.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 8 09:47:25 UTC 2019 - Richard Brown <rbrown@suse.com>
|
Fri Mar 8 09:47:25 UTC 2019 - Richard Brown <rbrown@suse.com>
|
||||||
|
|
||||||
|
@ -54,6 +54,7 @@ BuildRequires: golang(API) >= 1.11
|
|||||||
%ifarch ppc64le
|
%ifarch ppc64le
|
||||||
#!BuildIgnore: gcc-PIE
|
#!BuildIgnore: gcc-PIE
|
||||||
%endif
|
%endif
|
||||||
|
Requires: apparmor-parser
|
||||||
Requires: cni
|
Requires: cni
|
||||||
Requires: cni-plugins
|
Requires: cni-plugins
|
||||||
Requires: iptables
|
Requires: iptables
|
||||||
@ -184,17 +185,17 @@ install -D -m 0755 bin/conmon %{buildroot}/%{_libexecdir}/podman/bin/conmon
|
|||||||
%config %{_sysconfdir}/cni/net.d/87-podman-bridge.conflist
|
%config %{_sysconfdir}/cni/net.d/87-podman-bridge.conflist
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%pre -p /bin/bash
|
%pre
|
||||||
%service_add_pre io.podman.service io.podman.socket
|
%service_add_pre io.podman.service io.podman.socket
|
||||||
|
|
||||||
%post -p /bin/bash
|
%post
|
||||||
%service_add_post io.podman.service io.podman.socket
|
%service_add_post io.podman.service io.podman.socket
|
||||||
%tmpfiles_create %{_tmpfilesdir}/podman.conf
|
%tmpfiles_create %{_tmpfilesdir}/podman.conf
|
||||||
|
|
||||||
%preun -p /bin/bash
|
%preun
|
||||||
%service_del_preun io.podman.service io.podman.socket
|
%service_del_preun io.podman.service io.podman.socket
|
||||||
|
|
||||||
%postun -p /bin/bash
|
%postun
|
||||||
%service_del_postun io.podman.service io.podman.socket
|
%service_del_postun io.podman.service io.podman.socket
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user