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
24 lines
501 B
Puppet
24 lines
501 B
Puppet
# == Class: openstack_project::pypi
|
|
#
|
|
class openstack_project::pypi (
|
|
$sysadmins = []
|
|
) {
|
|
include tmpreaper
|
|
include unattended_upgrades
|
|
|
|
# include jenkins slave so that build deps are there for the pip download
|
|
class { 'jenkins::slave':
|
|
ssh_key => '',
|
|
user => false,
|
|
}
|
|
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [80],
|
|
sysadmins => $sysadmins,
|
|
}
|
|
|
|
class { 'pypimirror':
|
|
projects => $openstack_project::project_list,
|
|
}
|
|
}
|