42fa5a7e73
When adding support for CentOS Stream 9 [1], I made dib to install haveged in centos8 or centos8s only. This broke centos7 images. This patch should get haveged installed in all centos releases != 9-stream and fix centos7 one. [1] https://review.opendev.org/c/openstack/project-config/+/811442 Change-Id: I5a33160c6272ee4e452b83599ca3ed552422c6d2
28 lines
908 B
Bash
Executable File
28 lines
908 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 && ${DIB_RELEASE} != '9-stream' ]] ; then
|
|
# 9-stream we are just using the default rngd
|
|
# Note: $YUM exposed by centos environment, correct across releases
|
|
${YUM} -y install --enablerepo=epel haveged
|
|
fi
|