
So that we can take this load off of the jenkins master. Change-Id: Id66efede75fab9977013e69f3415a53dc239b0ce Reviewed-on: https://review.openstack.org/22379 Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
16 lines
308 B
Puppet
16 lines
308 B
Puppet
# == Class: openstack_project::devstack_launch_slave
|
|
#
|
|
class openstack_project::devstack_launch_slave (
|
|
) {
|
|
|
|
class { 'openstack_project::slave':
|
|
bare => true,
|
|
}
|
|
|
|
package { ['python-novaclient', 'statsd', 'paramiko']:
|
|
ensure => latest,
|
|
provider => pip,
|
|
require => Class['pip'],
|
|
}
|
|
}
|