f31a426c65
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
16 lines
347 B
Puppet
16 lines
347 B
Puppet
# == Class: openstack_project::planet
|
|
#
|
|
class openstack_project::planet (
|
|
$sysadmins = []
|
|
) {
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [80],
|
|
sysadmins => $sysadmins,
|
|
}
|
|
include ::planet
|
|
|
|
planet::site { 'openstack':
|
|
git_url => 'https://github.com/openstack/openstack-planet.git',
|
|
}
|
|
}
|