f8f2915020
Once our gate-ci-puppet-lint job goes live, this will help to get it to pass. Change-Id: I2eb363038b8e63e4b17a3f80cc40dc6c6bf90bee Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com> Reviewed-on: https://review.openstack.org/13722 Reviewed-by: James E. Blair <corvus@inaugust.com> Reviewed-by: Clark Boylan <clark.boylan@gmail.com> Approved: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
15 lines
304 B
Puppet
15 lines
304 B
Puppet
class openstack_project::community (
|
|
$sysadmins = []
|
|
) {
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [80, 443, 8099, 8080],
|
|
sysadmins => $sysadmins
|
|
}
|
|
|
|
realize (
|
|
User::Virtual::Localuser['smaffulli'],
|
|
)
|
|
}
|
|
|
|
# vim:sw=2:ts=2:expandtab:textwidth=79
|