Skip to content
Snippets Groups Projects
Commit 69d17892 authored by benedikt.kroening's avatar benedikt.kroening
Browse files

Fixed missing packages due to moved repo location

supervisord is in epel repositories on centos
parent 237adb04
No related branches found
No related tags found
1 merge request!7Issue16 7102
......@@ -805,11 +805,15 @@ function preInstallActions {
echo "mysql mysql-server/root_password_again string ${DATABASE_ROOT_PASS}" | debconf-set-selections
elif [[ true == "${ANY_RHEL}" ]] || [[ true == "${ANY_CENTOS}" ]]; then
ADDITIONAL_PACKAGES="${ADDITIONAL_PACKAGES} nc"
echo ""
fi
if [[ "${INSTALL_TYPE}" == *"docker"* ]]; then
echo ""
if [[ true == "${ANY_CENTOS}" ]]; then
echo "Adding epel repository for additional packages ..."
yum install epel-release -y
fi
echo "Installing supervisor for service management ..."
ADDITIONAL_PACKAGES="supervisor ${ADDITIONAL_PACKAGES}"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment