Files
puppet-nova/manifests/rackspace/repo.pp
Dan Bode 072e519171 Converted into nova module repo.
- removed all submodules
  I will create an openstack repo to
  hold all modules (including nova) as
  submodules
- moved nova module to top dir
2011-06-16 20:29:58 -07:00

11 lines
282 B
Puppet

class nova::rackspace::repo {
# this should not be hard-coded
# eventually this will be on a real debian repo
apt::source { 'openstack':
location => 'http://jenkins.ohthree.com',
release => 'unstable',
repos => 'main',
include_src => false,
}
}