Fix curl on almalinux
This commit is contained in:
parent
429da3f4c1
commit
b3a9cd3fb9
2 changed files with 2 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
almalinux)
|
almalinux)
|
||||||
dnf -y upgrade --refresh
|
dnf -y upgrade --refresh
|
||||||
dnf -y install \
|
dnf -y install \
|
||||||
ca-certificates curl gnupg2 git tar gzip findutils bash which jq \
|
ca-certificates curl-minimal gnupg2 git tar gzip findutils bash which jq \
|
||||||
dnf-plugins-core epel-release
|
dnf-plugins-core epel-release
|
||||||
dnf -y config-manager --set-enabled crb || true
|
dnf -y config-manager --set-enabled crb || true
|
||||||
curl -fsSL https://github.com/saltstack/salt-install-guide/releases/latest/download/salt.repo > /etc/yum.repos.d/salt.repo
|
curl -fsSL https://github.com/saltstack/salt-install-guide/releases/latest/download/salt.repo > /etc/yum.repos.d/salt.repo
|
||||||
|
|
|
||||||
1
tests.sh
1
tests.sh
|
|
@ -150,6 +150,7 @@ translate_packages() {
|
||||||
ansible) translated+=(ansible-core) ;;
|
ansible) translated+=(ansible-core) ;;
|
||||||
apache2) translated+=(httpd) ;;
|
apache2) translated+=(httpd) ;;
|
||||||
gnupg) translated+=(gnupg2) ;;
|
gnupg) translated+=(gnupg2) ;;
|
||||||
|
curl) translated+=(curl-minimal) ;;
|
||||||
lsb-release) translated+=(redhat-lsb-core) ;;
|
lsb-release) translated+=(redhat-lsb-core) ;;
|
||||||
puppet) translated+=(puppet-agent) ;;
|
puppet) translated+=(puppet-agent) ;;
|
||||||
python3-apt) ;;
|
python3-apt) ;;
|
||||||
|
|
|
||||||
Reference in a new issue