2abccab4d9
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.
5 lines
133 B
Puppet
5 lines
133 B
Puppet
mysql_grant{'test1@localhost/redmine':
|
|
user => 'test1@localhost',
|
|
table => 'redmine.*',
|
|
privileges => ['UPDATE'],
|
|
}
|