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

Enable PCI DSS for RHVH #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
5 changes: 1 addition & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ elif [ $DISTRO = "node" -o $DISTRO = "el9node" ]; then
curl --fail -L -o $NODE_IMG $([[ -f $NODE_IMG ]] && echo -z $NODE_IMG) ${NODE_URL_BASE}${NODE_URL_LATEST_VERSION} || exit 1
fi

# validate OpenSCAP profile parameter
# TODO we cannot use the profile on RHVH until we make changes to RHVH
#if [ $DISTRO = "rhel8" -o $DISTRO = "rhvh" ]; then
if [ $DISTRO = "rhel8" ]; then
if [ $DISTRO = "rhel8" ] || [ $DISTRO = "rhvh" -a "$OPENSCAP_PROFILE" = "xccdf_org.ssgproject.content_profile_pci-dss" ]; then
echo "With OpenSCAP profile: ${OPENSCAP_PROFILE:-none}"
else
echo "Distro doesn't work with OpenSCAP profiles properly, ignoring"
Expand Down