Remove unused params in puppet builds

We always want zuul workers to be thin, it doesn't need to be
configurable. We made these parameters nonfunctional in the
single_use_slave class[1] so we can stop using them here.

[1] https://review.openstack.org/#/c/449958/

Change-Id: I78cf0f86cc162439303c85b3c6cc5fb8d0fd0493
This commit is contained in:
Colleen Murphy 2017-04-12 20:08:32 +02:00
parent c68db4e10d
commit 3c42a853d6
2 changed files with 0 additions and 5 deletions

View File

@ -22,7 +22,6 @@ fi
set -e
export SUDO='true'
export THIN='true'
prepare-node

View File

@ -19,8 +19,6 @@
set -e
SUDO=${SUDO:-true}
THIN=${THIN:-true}
ALL_MYSQL_PRIVS=${ALL_MYSQL_PRIVS:-false}
if [ -n "$NODEPOOL_SSH_KEY" ] ; then
puppet_install_users="install_users => false,
@ -39,8 +37,6 @@ Service {
}
class {'openstack_project::single_use_slave':
sudo => $SUDO,
thin => $THIN,
all_mysql_privs => $ALL_MYSQL_PRIVS,
install_resolv_conf => false,
$puppet_install_users
}