diff options
author | Lokesh Mandvekar <lsm5@fedoraproject.org> | 2022-08-02 14:19:48 -0400 |
---|---|---|
committer | Lokesh Mandvekar <lsm5@fedoraproject.org> | 2022-08-02 14:19:48 -0400 |
commit | 3a7a275c34199cd70b1668c657dad4ae01ad76f1 (patch) | |
tree | de070ccf4eba0c7c60fdb45ae5339f0016120034 | |
parent | c09457e34a429622475e27fe68e17effe47fe0c3 (diff) | |
download | podman-3a7a275c34199cd70b1668c657dad4ae01ad76f1.tar.gz podman-3a7a275c34199cd70b1668c657dad4ae01ad76f1.tar.bz2 podman-3a7a275c34199cd70b1668c657dad4ae01ad76f1.zip |
Cirrus: use dnf instead of rpm to install packages
Signed-off-by: Lokesh Mandvekar <lsm5@fedoraproject.org>
-rwxr-xr-x | contrib/cirrus/setup_environment.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cirrus/setup_environment.sh b/contrib/cirrus/setup_environment.sh index c3b7811bc..f84f78ee9 100755 --- a/contrib/cirrus/setup_environment.sh +++ b/contrib/cirrus/setup_environment.sh @@ -277,7 +277,7 @@ case "$TEST_FLAVOR" in ;& # continue with next item compose) make install.tools - rpm -ivh $PACKAGE_DOWNLOAD_DIR/podman-docker* + dnf install -y $PACKAGE_DOWNLOAD_DIR/podman-docker* ;& # continue with next item int) ;& sys) ;& @@ -307,7 +307,7 @@ case "$TEST_FLAVOR" in install_test_configs ;; machine) - rpm -ivh $PACKAGE_DOWNLOAD_DIR/podman-gvproxy* + dnf install -y $PACKAGE_DOWNLOAD_DIR/podman-gvproxy* remove_packaged_podman_files make install.tools make install PREFIX=/usr ETCDIR=/etc |