Merge "Move static definition of forwarding.conf later in script"

This commit is contained in:
Jenkins 2014-09-24 19:48:31 +00:00 committed by Gerrit Code Review
commit 7db6e5fec5

View File

@ -27,13 +27,6 @@ GIT_BASE=${GIT_BASE:-git://git.openstack.org}
export PUPPET_VERSION=${PUPPET_VERSION:-'2'} export PUPPET_VERSION=${PUPPET_VERSION:-'2'}
# Save the nameservers configured by our provider.
cat >/tmp/forwarding.conf <<EOF
forward-zone:
name: "."
forward-addr: 8.8.8.8
EOF
sudo hostname $HOSTNAME sudo hostname $HOSTNAME
if [ -n "$HOSTNAME" ] && ! grep -q $HOSTNAME /etc/hosts if [ -n "$HOSTNAME" ] && ! grep -q $HOSTNAME /etc/hosts
then then
@ -71,9 +64,12 @@ if [ "$PUPPET_RET_CODE" -eq "4" ] || [ "$PUPPET_RET_CODE" -eq "6" ] ; then
fi fi
set -e set -e
# The puppet modules should install unbound. Take the nameservers # The puppet modules should install unbound. Set up some nameservers.
# that we ended up with at boot and configure unbound to forward to cat >/tmp/forwarding.conf <<EOF
# them. forward-zone:
name: "."
forward-addr: 8.8.8.8
EOF
sudo mv /tmp/forwarding.conf /etc/unbound/ sudo mv /tmp/forwarding.conf /etc/unbound/
sudo chown root:root /etc/unbound/forwarding.conf sudo chown root:root /etc/unbound/forwarding.conf
sudo chmod a+r /etc/unbound/forwarding.conf sudo chmod a+r /etc/unbound/forwarding.conf