
- removed all submodules I will create an openstack repo to hold all modules (including nova) as submodules - moved nova module to top dir
10 lines
256 B
Puppet
10 lines
256 B
Puppet
define nova::manage::project ( $owner ) {
|
|
nova_project { $name:
|
|
ensure => present,
|
|
provider => 'nova_manage',
|
|
owner => $owner,
|
|
notify => Exec["nova-db-sync"],
|
|
require => [Class["nova::db"], Nova::Manage::Admin[$owner]],
|
|
}
|
|
}
|