system-config/modules/openstack_project/manifests/template.pp
Matthew Wagoner f31a426c65 Cleanup openstack_project manifest lint errors.
Now with extra unwrap!

Change-Id: I7c622ffa77821f33f911793fc6b6cdaaba37904a
Reviewed-on: https://review.openstack.org/15052
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
2012-11-21 17:48:11 +00:00

25 lines
489 B
Puppet

# == Class: openstack_project::template
#
# A template host with no running services
#
class openstack_project::template (
$iptables_public_tcp_ports = [],
$install_users = true,
$certname = $::fqdn
) {
include ssh
include snmpd
include unattended_upgrades
class { 'iptables':
public_tcp_ports => $iptables_public_tcp_ports,
}
class { 'ntp::server': }
class { 'openstack_project::base':
install_users => $install_users,
certname => $certname,
}
}