f6ae3e6b7b
Use puppet agent --test for puppet cron. We don't need the private ssh or gpg key on the slaves anymore. We do need the glance testing stuff, so stick that into hiera. Change-Id: If94fc3f150bf569efe9461f80d3565f9825eebce Reviewed-on: https://review.openstack.org/10851 Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
20 lines
422 B
Puppet
20 lines
422 B
Puppet
# A template host with no running services
|
|
class openstack_project::template (
|
|
$iptables_public_tcp_ports,
|
|
$install_users = true,
|
|
$certname = $fqdn
|
|
) {
|
|
include ntp
|
|
include ssh
|
|
include snmpd
|
|
include unattended_upgrades
|
|
|
|
class { 'iptables':
|
|
public_tcp_ports => $iptables_public_tcp_ports,
|
|
}
|
|
class { 'openstack_project::base':
|
|
install_users => $install_users,
|
|
certname => $certname,
|
|
}
|
|
}
|