Adds example to set root password

The documentation in README.md states that it is possible to set the root password, but it does not give an example. 

This pull request adds an example of how to set the root password
This commit is contained in:
Spencer 2013-10-27 13:10:12 -06:00
parent 6ec7872b44
commit b0eb752d88

View file

@ -54,6 +54,7 @@ pass in an override hash as seen below:
```puppet
class { '::mysql::server':
root_password => 'strongpassword',
override_options => { 'mysqld' => { 'max_connections' => '1024' } }
}
```