module-puppetlabs-mysql/tests/mysql_grant.pp
Ashley Penney 2abccab4d9 Refactor and rename database_grant to mysql_grant.
This provider has undergone the largest set of changes and currently
just accepts a full SQL grant string as the name and then applies it,
making things easier for DBAs and removes the awkward attempts at
modelling grants into Puppet.
2013-09-03 17:24:21 -04:00

5 lines
133 B
Puppet

mysql_grant{'test1@localhost/redmine':
user => 'test1@localhost',
table => 'redmine.*',
privileges => ['UPDATE'],
}