Install curl for EL8 only

In CentOS stream9 and UBI 9 image, curl-minimal is already
installed in the image.

The curl installation conflicts with curl-minimal package.
So we are restricting curl installation to cs8 only.

Closes-Bug: #1953156

Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
Change-Id: I8da32dcfcba243b7cecfee0f1a6e423ee1dbd8fb
This commit is contained in:
Chandan Kumar (raukadah) 2021-12-03 18:58:26 +05:30
parent 62713d731b
commit 98aa48e834
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,8 @@ tcib_actions:
- run: chmod 440 /etc/sudoers
- run: >-
if [ '{{ tcib_release }}' == '8' ];then
sed -ri '/-session(\s+)optional(\s+)pam_systemd.so/d' /etc/pam.d/system-auth; fi
sed -ri '/-session(\s+)optional(\s+)pam_systemd.so/d' /etc/pam.d/system-auth &&
dnf install -y curl; fi
- run: sed -ri '/^(passwd:|group:)/ s/systemd//g' /etc/nsswitch.conf
- run: dnf install -y {{ tcib_packages['common'] | join(' ') }}
- run: >-
@ -64,7 +65,6 @@ tcib_labels:
tcib_packages:
common:
- ca-certificates
- curl
- dumb-init
- glibc-langpack-en
- iscsi-initiator-utils