
This is the skeleton we'll fill out with any additional functionality needed by the salt-trigger slave. Change-Id: I928c2fa4c64e69140b673615a8c18e4eea79e952
14 lines
307 B
Puppet
14 lines
307 B
Puppet
# Slave used for automatically triggering commands on the salt master.
|
|
#
|
|
# == Class: openstack_project::salt_trigger_slave
|
|
#
|
|
class openstack_project::salt_trigger_slave (
|
|
$jenkins_ssh_public_key = ''
|
|
) {
|
|
|
|
class { 'openstack_project::slave':
|
|
jenkins_ssh_public_key => $jenkins_ssh_public_key,
|
|
}
|
|
|
|
}
|