039b2d63ea
We no longer run any transifex jobs on the proposal slave, or have any jobs that make use of it, so stop ensuring transifex-client is installed, and drop .transifexrc. Change-Id: I9cd88e0dceae1f25612696d15c1e5c2a0f5e6056
53 lines
1.4 KiB
Puppet
53 lines
1.4 KiB
Puppet
# Slave used for automatically proposing changes to Gerrit,
|
|
# Transifex and other tools.
|
|
#
|
|
# == Class: openstack_project::translation_slave
|
|
#
|
|
class openstack_project::proposal_slave (
|
|
$jenkins_ssh_public_key,
|
|
$proposal_ssh_public_key,
|
|
$proposal_ssh_private_key,
|
|
$jenkins_gitfullname = 'OpenStack Jenkins',
|
|
$jenkins_gitemail = 'jenkins@openstack.org',
|
|
$project_config_repo = 'https://git.openstack.org/openstack-infra/project-config',
|
|
$zanata_server_url,
|
|
$zanata_server_user,
|
|
$zanata_server_api_key,
|
|
) {
|
|
|
|
class { '::zanata::client':
|
|
server_url => $zanata_server_url,
|
|
server_user => $zanata_server_user,
|
|
server_api_key => $zanata_server_api_key,
|
|
}
|
|
|
|
class { 'openstack_project::slave':
|
|
ssh_key => $jenkins_ssh_public_key,
|
|
jenkins_gitfullname => $jenkins_gitfullname,
|
|
jenkins_gitemail => $jenkins_gitemail,
|
|
project_config_repo => $project_config_repo,
|
|
}
|
|
|
|
package { ['Babel', 'pyopenssl', 'ndg-httpsclient', 'pyasn1']:
|
|
ensure => latest,
|
|
provider => pip,
|
|
require => Class['pip'],
|
|
}
|
|
|
|
file { '/home/jenkins/.ssh/id_rsa':
|
|
owner => 'jenkins',
|
|
group => 'jenkins',
|
|
mode => '0400',
|
|
require => File['/home/jenkins/.ssh'],
|
|
content => $proposal_ssh_private_key,
|
|
}
|
|
|
|
file { '/home/jenkins/.ssh/id_rsa.pub':
|
|
owner => 'jenkins',
|
|
group => 'jenkins',
|
|
mode => '0400',
|
|
require => File['/home/jenkins/.ssh'],
|
|
content => $proposal_ssh_public_key,
|
|
}
|
|
}
|