11 lines
195 B
Puppet
11 lines
195 B
Puppet
mysql::server::config { 'testfile':
|
|
settings => {
|
|
'mysqld' => {
|
|
'bind-address' => '0.0.0.0',
|
|
'read-only' => true,
|
|
},
|
|
'client' => {
|
|
'port' => '3306'
|
|
}
|
|
}
|
|
}
|