diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-06-03 06:31:35 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-06-03 06:32:58 -0400 |
commit | 48d2bea1a3be0f3d12cfed4a2dcccd133c8b9be1 (patch) | |
tree | b0648730dee0e4b446a8356c2cdb2300917186b4 /contrib/spec/podman.spec.in | |
parent | 95ea39edf34e4de4450c1674721ab02a7cf6a327 (diff) | |
download | podman-48d2bea1a3be0f3d12cfed4a2dcccd133c8b9be1.tar.gz podman-48d2bea1a3be0f3d12cfed4a2dcccd133c8b9be1.tar.bz2 podman-48d2bea1a3be0f3d12cfed4a2dcccd133c8b9be1.zip |
RHEL8 and Centos8 don't have oci-runtime yet
For the time being we need to just require runc
this should fix rdoproject.org/github-check
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'contrib/spec/podman.spec.in')
-rw-r--r-- | contrib/spec/podman.spec.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/spec/podman.spec.in b/contrib/spec/podman.spec.in index 9ab0db3ae..8d3cba612 100644 --- a/contrib/spec/podman.spec.in +++ b/contrib/spec/podman.spec.in @@ -80,8 +80,12 @@ Requires: iptables %if 0%{?rhel} <= 7 Requires: container-selinux %else +%if 0%{?rhel} || 0%{?centos} +Requires: runc +%else Requires: oci-runtime Recommends: crun +%endif Recommends: container-selinux Recommends: slirp4netns Recommends: fuse-overlayfs |