
- removed all submodules I will create an openstack repo to hold all modules (including nova) as submodules - moved nova module to top dir
13 lines
258 B
Puppet
13 lines
258 B
Puppet
class { 'nova':
|
|
sql_connection => 'mysql://root:<password>@127.0.0.1/nova',
|
|
}
|
|
class { 'mysql::server':
|
|
root_password => 'password'
|
|
}
|
|
class { 'nova::db':
|
|
password => 'password',
|
|
name => 'nova',
|
|
user => 'nova',
|
|
host => 'localhost',
|
|
}
|