Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing perl-Digest-SHA and perl-bignum needed for newer OpenSSL builds on EL-based platforms #26

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ jobs:
- almalinux-8
- almalinux-9
- amazonlinux-2023
- centos-stream-8
- centos-stream-9
- debian-11
- debian-12
- opensuse-leap-15
- rockylinux-8
- rockylinux-9
- ubuntu-2004
- ubuntu-2204
- ubuntu-2404
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ This file is used to list changes made in each version of the cinc-omnibus cookb

## Unreleased

- Add missing perl-Digest-SHA and perl-bignum needed for newer OpenSSL builds on EL-based platforms
- Remove EOL CentOS Stream 8
- Add Rocky Linux 8/9 to CI testing

## 1.1.16 - *2024-05-23*

- Manually update to standardized files
Expand Down
4 changes: 4 additions & 0 deletions libraries/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def omnibus_packages
libtool
ncurses-devel
openssh-clients
perl-Digest-SHA
perl-IPC-Cmd
perl-bignum
rpm-build
rpm-sign
rsync
Expand All @@ -39,7 +41,9 @@ def omnibus_packages
libffi-devel
libtool
openssh-clients
perl-Digest-SHA
perl-IPC-Cmd
perl-bignum
rpm-build
rpm-sign
rsync
Expand Down
6 changes: 5 additions & 1 deletion test/integration/cinc-omnibus/controls/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@
iproute
libtool
openssh-clients
perl-Digest-SHA
perl-IPC-Cmd
perl-bignum
rsync
tar
tzdata
wget
)
packages << %w(perl-FindBin perl-lib) if os_version.to_i >= 2022
when 'centos', 'redhat', 'almalinux'
when 'centos', 'redhat', 'almalinux', 'rocky'
packages = %w(
automake
bzip2
Expand All @@ -28,7 +30,9 @@
libffi-devel
libtool
openssh-clients
perl-Digest-SHA
perl-IPC-Cmd
perl-bignum
rpm-build
rpm-sign
rsync
Expand Down