Skip to content

Commit

Permalink
Merge pull request #49 from cisagov/bugfix/add-openssl-dev-package-fo…
Browse files Browse the repository at this point in the history
…r-debian

Add OpenSSL development package for Debian
  • Loading branch information
jsf9k authored May 14, 2024
2 parents d8b8482 + c6bdac2 commit cd56db2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 8 additions & 1 deletion molecule/default/tests/test_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ def test_packages(host):
if codename in ["buster", "bullseye", "bookworm"]:
pkgs = ["amazon-efs-utils", "binutils", "make"]
else:
pkgs = ["amazon-efs-utils", "binutils", "cargo", "make", "pkgconf"]
pkgs = [
"amazon-efs-utils",
"binutils",
"cargo",
"libssl-dev",
"make",
"pkgconf",
]
elif distribution in ["amzn"]:
pkgs = ["amazon-efs-utils"]
else:
Expand Down
3 changes: 2 additions & 1 deletion vars/Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
package_names:
- binutils
- cargo
- libssl-dev
- make
- pkgconf

# The version of amazon-efs-utils to install.
version: 2.0.0
version: 2.0.1
2 changes: 1 addition & 1 deletion vars/RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ package_names:
- rpm-build

# The version of amazon-efs-utils to install.
version: 2.0.0
version: 2.0.1

0 comments on commit cd56db2

Please sign in to comment.