c043b9c2b6
Update the package maps. It also seems like matching just "9" will cover 9-stream and Rocky, which just uses DIB_RELEASE "9". Also fixup the 80-enable-haveged to skip on rocky. Change-Id: Ia352d217d00e10068a463b62f7d9aca72cb88a8c
28 lines
923 B
Bash
Executable File
28 lines
923 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
#
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# dib-lint: disable=setu setpipefail
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -e
|
|
|
|
if [[ "$DISTRO_NAME" =~ ^(centos|rocky)$ && ! ${DIB_RELEASE} =~ '9' ]] ; then
|
|
# 9-stream we are just using the default rngd
|
|
# Note: $YUM exposed by centos|rhel-like environment, correct across releases
|
|
${YUM} -y install --enablerepo=epel haveged
|
|
fi
|