9 lines
169 B
Puppet
9 lines
169 B
Puppet
err("Grant SELECT, INSERT and UPDATE to test_user@%")
|
|
|
|
mysql_grant {
|
|
"test_user@%":
|
|
privileges => [ "select_priv", 'insert_priv', 'update_priv' ],
|
|
tag => test;
|
|
}
|
|
|
|
|