module-puppetlabs-mysql/tests/server/config.pp
2012-09-04 16:25:08 +02:00

11 lines
195 B
Puppet

mysql::server::config { 'testfile':
settings => {
'mysqld' => {
'bind-address' => '0.0.0.0',
'read-only' => true,
},
'client' => {
'port' => '3306'
}
}
}