2012-09-06 10:32:48 -07:00
|
|
|
class openstack_project::pypi (
|
|
|
|
$sysadmins = []
|
|
|
|
) {
|
2012-07-23 17:52:04 -05:00
|
|
|
include tmpreaper
|
2012-08-04 10:31:59 -05:00
|
|
|
include unattended_upgrades
|
2012-07-23 17:52:04 -05:00
|
|
|
|
2012-07-20 19:38:57 -07:00
|
|
|
# include jenkins slave so that build deps are there for the pip download
|
2012-08-04 14:30:15 -05:00
|
|
|
class { 'jenkins::slave':
|
2012-07-20 19:38:57 -07:00
|
|
|
ssh_key => "",
|
|
|
|
user => false
|
|
|
|
}
|
|
|
|
|
|
|
|
class { 'openstack_project::server':
|
2012-09-06 10:32:48 -07:00
|
|
|
iptables_public_tcp_ports => [80],
|
|
|
|
sysadmins => $sysadmins
|
2012-07-20 19:38:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
class { "pypimirror":
|
|
|
|
projects => $openstack_project::project_list,
|
|
|
|
}
|
|
|
|
}
|