
Also, moved depends for launchpad sync script to the launchpad sync module, and put the ntp stuff into an ntp module. Change-Id: I2568752493fefa305f9108a23da101d80a311552
13 lines
304 B
Puppet
13 lines
304 B
Puppet
# A template host with no running services
|
|
class openstack_project::template ($iptables_public_tcp_ports) {
|
|
include openstack_project::base
|
|
include ntp
|
|
include ssh
|
|
include snmpd
|
|
include apt::unattended-upgrades
|
|
|
|
class { 'iptables':
|
|
public_tcp_ports => $iptables_public_tcp_ports,
|
|
}
|
|
}
|