diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-12 13:27:41 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-08-12 14:11:59 +0200 |
commit | 0798fc5fc4d313086de0b293fbbb76b0f3e3b544 (patch) | |
tree | 11bffa09891eecb823b0382cfdb531f3928e7f63 | |
parent | 2348c2873f1518b2b39adbfffd19ea295f7457e2 (diff) | |
download | podman-0798fc5fc4d313086de0b293fbbb76b0f3e3b544.tar.gz podman-0798fc5fc4d313086de0b293fbbb76b0f3e3b544.tar.bz2 podman-0798fc5fc4d313086de0b293fbbb76b0f3e3b544.zip |
cirrus: install crun
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index 5d350263e..ab7279b11 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -44,6 +44,11 @@ case "${OS_REL_VER}" in ;; fedora-30) ;& # continue to next item fedora-29) + # There is no crun package on Fedora29 + if test "${OS_REL_VER}" != "fedora-29"; then + yum install -y crun + fi + if [[ "$ADD_SECOND_PARTITION" == "true" ]]; then bash "$SCRIPT_BASE/add_second_partition.sh"; fi ;; |