Remove debug config of unbound since it's enabled

Infra already sets unbound to debug, so we can remove it from our
code.

Related-Bug: #1736157
Change-Id: Id5a50218d6b47354f12cc50f88d84c0c86196e3b
This commit is contained in:
Sagi Shnaidman 2017-12-04 16:57:06 +02:00
parent c8da60fc35
commit 1f7de38e47
3 changed files with 0 additions and 15 deletions

View File

@ -11,11 +11,6 @@ if [ -f "$TRIPLEO_ROOT/tripleo-ci/deploy.env" ]; then
source $TRIPLEO_ROOT/tripleo-ci/deploy.env
fi
if [[ -e /etc/unbound/conf.d/unbound-logging.conf ]]; then
sudo sed -i "s/verbosity: .*$/verbosity: 5/g" /etc/unbound/conf.d/unbound-logging.conf
sudo systemctl restart unbound
fi
# Ensure epel-release is not installed
sudo yum erase -y epel-release || :

View File

@ -11,11 +11,6 @@ if [ -f "$TRIPLEO_ROOT/tripleo-ci/deploy.env" ]; then
source $TRIPLEO_ROOT/tripleo-ci/deploy.env
fi
if [[ -e /etc/unbound/conf.d/unbound-logging.conf ]]; then
sudo sed -i "s/verbosity: .*$/verbosity: 5/g" /etc/unbound/conf.d/unbound-logging.conf
sudo systemctl restart unbound
fi
# Ensure epel-release is not installed
sudo yum erase -y epel-release || :

View File

@ -7,11 +7,6 @@ set -eux
export START_JOB_TIME=$(date +%s)
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
if [[ -e /etc/unbound/conf.d/unbound-logging.conf ]]; then
sudo sed -i "s/verbosity: .*$/verbosity: 5/g" /etc/unbound/conf.d/unbound-logging.conf
sudo systemctl restart unbound
fi
# Maintain compatibility with the old jobtypes
if [[ ! $TOCI_JOBTYPE =~ "featureset" ]]; then
echo "WARNING: USING OLD DEPLOYMENT METHOD. THE OLD DEPLOYMENT METHOD THAT USES tripleo.sh WILL BE DEPRECATED IN THE QUEENS CYCLE"