
- removed all submodules I will create an openstack repo to hold all modules (including nova) as submodules - moved nova module to top dir
20 lines
388 B
Puppet
20 lines
388 B
Puppet
# all of the openstack specific stuff is being moved to herej
|
|
class nova::rackspace::dev() {
|
|
|
|
class { 'puppet': }
|
|
class {
|
|
[
|
|
'bzr',
|
|
'git',
|
|
'gcc',
|
|
# I may need to move python-mysqldb to elsewhere if it depends on mysql
|
|
# python-nova pulls in all of the deps mentioned here
|
|
'python',
|
|
]:
|
|
}
|
|
package { 'swig':
|
|
ensure => installed,
|
|
}
|
|
|
|
}
|