e498870959
Change-Id: I520b77a4d83958a6a1c2472e87b28f6b8822d890
17 lines
384 B
Puppet
17 lines
384 B
Puppet
class openstack_project::pypi {
|
|
# 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,
|
|
}
|
|
}
|