
* Fix following warnings: * case statement without a default case * double quoted string containing no variables * indentation of => is not properly aligned * mode should be represented as a 4 digit octal value or symbolic mode * quoted boolean value found * unquoted file mode * variable not enclosed in {} * Fix following errors: * trailing whitespace found * two-space soft tabs not used * Remove quotes around class in include/require statements Change-Id: Ia407416e51c09fb303675863afa68f526a37abcf
16 lines
525 B
Puppet
16 lines
525 B
Puppet
class { 'openstack::all':
|
|
public_address => $::ipaddress_eth0,
|
|
mysql_root_password => 'password',
|
|
rabbit_password => 'password',
|
|
keystone_db_password => 'password',
|
|
keystone_admin_token => '12345',
|
|
admin_email => 'root@localhost',
|
|
admin_password => 'password',
|
|
nova_db_password => 'password',
|
|
nova_user_password => 'password',
|
|
glance_db_password => 'password',
|
|
glance_user_password => 'password',
|
|
libvirt_type => 'qemu',
|
|
secret_key => '12345',
|
|
}
|