Issue #11542 has been updated by Josh Cooper.

Keywords changed from mysql to mysql empathy


----------------------------------------
Bug #11542: puppetlabs-mysql module does not grant event and trigger privileges
https://projects.puppetlabs.com/issues/11542

Author: Josh Cooper
Status: Accepted
Priority: Normal
Assignee: Carl Caum
Category: modules
Target version: 
Affected Puppet version: 
Keywords: mysql empathy
Branch: 


Using the puppetlabs-mysql module from 
<https://github.com/puppetlabs/puppetlabs-mysql> with the following manifest:

<pre>
mysql::db { 'dashboard':
  user     => 'dashboard',
  password => 'password',
  host     => 'localhost',
  grant    => ['all'],
}
</pre>

doesn't grant all privileges:

<pre>
mysql -u root -ppassword
mysql> use mysql;
mysql> select * from db \G;
*************************** 1. row ***************************
                 Host: localhost
                   Db: dashboard
                 User: dashboard
          Select_priv: Y
          Insert_priv: Y
          Update_priv: Y
          Delete_priv: Y
          Create_priv: Y
            Drop_priv: Y
           Grant_priv: Y
      References_priv: Y
           Index_priv: Y
           Alter_priv: Y
Create_tmp_table_priv: Y
     Lock_tables_priv: Y
     Create_view_priv: Y
       Show_view_priv: Y
  Create_routine_priv: Y
   Alter_routine_priv: Y
         Execute_priv: Y
           Event_priv: N
         Trigger_priv: N
1 row in set (0.00 sec)
</pre>

Possible fix is here <https://github.com/puppetlabs/puppetlabs-mysql/pull/23>


-- 
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://projects.puppetlabs.com/my/account

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Bugs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/puppet-bugs?hl=en.

Reply via email to