From a39119f89044c31d216dc7e20aca555b829d62c1 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Fri, 18 Jul 2014 02:36:23 -0700 Subject: [PATCH] Check puppet exit codes during image builds To get useful info from puppet exit codes we must use puppet detailed exit codes then check the values as nonzero codes can indicate success. Values of 4 and 6 indicate failure to exit $RETURNCODE when those values are returned. Change-Id: Idf6ac0956a3749ff0a42e0b39765f98865971870 --- .../files/nodepool/scripts/prepare_node.sh | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/modules/openstack_project/files/nodepool/scripts/prepare_node.sh b/modules/openstack_project/files/nodepool/scripts/prepare_node.sh index 1eb4536618..7aec7835a4 100755 --- a/modules/openstack_project/files/nodepool/scripts/prepare_node.sh +++ b/modules/openstack_project/files/nodepool/scripts/prepare_node.sh @@ -47,13 +47,23 @@ sudo bash -xe install_puppet.sh sudo git clone --depth=1 $GIT_BASE/openstack-infra/config.git \ /root/config sudo /bin/bash /root/config/install_modules.sh + +set +e if [ -z "$NODEPOOL_SSH_KEY" ] ; then - sudo puppet apply --modulepath=/root/config/modules:/etc/puppet/modules \ - -e "class {'openstack_project::single_use_slave': sudo => $SUDO, thin => $THIN, python3 => $PYTHON3, include_pypy => $PYPY, all_mysql_privs => $ALL_MYSQL_PRIVS, }" + sudo puppet apply --detailed-exitcodes --modulepath=/root/config/modules:/etc/puppet/modules \ + -e "class {'openstack_project::single_use_slave': sudo => $SUDO, thin => $THIN, python3 => $PYTHON3, include_pypy => $PYPY, all_mysql_privs => $ALL_MYSQL_PRIVS, }" + PUPPET_RET_CODE=$? else - sudo puppet apply --modulepath=/root/config/modules:/etc/puppet/modules \ - -e "class {'openstack_project::single_use_slave': install_users => false, sudo => $SUDO, thin => $THIN, python3 => $PYTHON3, include_pypy => $PYPY, all_mysql_privs => $ALL_MYSQL_PRIVS, ssh_key => '$NODEPOOL_SSH_KEY', }" + sudo puppet apply --detailed-exitcodes --modulepath=/root/config/modules:/etc/puppet/modules \ + -e "class {'openstack_project::single_use_slave': install_users => false, sudo => $SUDO, thin => $THIN, python3 => $PYTHON3, include_pypy => $PYPY, all_mysql_privs => $ALL_MYSQL_PRIVS, ssh_key => '$NODEPOOL_SSH_KEY', }" + PUPPET_RET_CODE=$? fi +# Puppet doesn't properly return exit codes. Check here the values that +# indicate failure of some sort happened. 0 and 2 indicate success. +if [ "$PUPPET_RET_CODE" -eq "4" ] || [ "$PUPPET_RET_CODE" -eq "6" ] ; then + exit $PUPPET_RET_CODE +fi +set -e # The puppet modules should install unbound. Take the nameservers # that we ended up with at boot and configure unbound to forward to