Monty Taylor b2bbd47eef Include openstack_project class to access members.
Change-Id: I4d04bd6cc248ff6b724a42fe872afadc080bb126
2012-07-23 19:22:19 -05:00

21 lines
468 B
Puppet

class openstack_project::pypi {
include tmpreaper
include apt::unattended-upgrades
include openstack_project
# 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]
}
class { "pypimirror":
base_url => "http://pypi.openstack.org",
projects => $openstack_project::project_list,
}
}