Rename tx slave to proposal slave.

The tx slave is going to be used for other jobs that propose changes to
Gerrit. Give it a more appropriate name. This lines up with the move
from hosting this under rackspace legacy to rackspace nova.

Change-Id: I7168d62a4a0aae27d2cd2a7dc6c37595604c8251
This commit is contained in:
Clark Boylan 2013-08-02 11:06:29 -07:00
parent eb1c279e9d
commit ad46ddface
2 changed files with 6 additions and 3 deletions

View File

@ -452,9 +452,9 @@ node 'devstack-launch02.slave.openstack.org' {
}
}
node 'tx.slave.openstack.org' {
node 'proposal.slave.openstack.org' {
include openstack_project
class { 'openstack_project::translation_slave':
class { 'openstack_project::proposal_slave':
transifex_username => 'openstackjenkins',
transifex_password => hiera('transifex_password'),
jenkins_ssh_public_key => $openstack_project::jenkins_ssh_key,

View File

@ -1,6 +1,9 @@
# Slave used for automatically proposing changes to Gerrit,
# Transifex and other tools.
#
# == Class: openstack_project::translation_slave
#
class openstack_project::translation_slave (
class openstack_project::proposal_slave (
$jenkins_ssh_public_key,
$transifex_password = '',
$transifex_username = 'openstackci',