system-config/modules/openstack_project/manifests/server.pp
Monty Taylor f6ae3e6b7b Use puppetmaster for slaves.
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
2012-08-19 18:02:37 +00:00

15 lines
371 B
Puppet

# A server that we expect to run for some time
class openstack_project::server (
$iptables_public_tcp_ports = [],
$certname=$fqdn
) {
include openstack_project
class { 'openstack_project::template':
iptables_public_tcp_ports => $iptables_public_tcp_ports,
certname => $certname,
}
class { 'exim':
sysadmin => $openstack_project::sysadmins
}
}