Monty Taylor 0bc0ae7d0c Add in root level scoping.
Change-Id: I6fcdf293f719aa3fa18a3c5b4f7d8d64059b6f9c
2012-07-23 17:24:44 -05:00

17 lines
386 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,
}
}