Hi there,

I thought I understood how this module works, but I guess I missed
something. Here is what I have in my nodes.pp


node 'mysql' inherits default {
        include mysql
        mysql::user { "db1":
                mysql_password_hash => "db1",
                mysql_user => "db1",
                mysql_host => "%"
        }
        mysql::grant { "db1":
                mysql_privileges => "ALL",
                mysql_password => "password",
                mysql_db => "db1",
                mysql_user => "db1",
                mysql_host => "%"
        }
}

That works perfectly. What I want to do is expand this to be able to
setup additional users and grants. I thought adding more lines for
mysql::user & mysql::grant to do more users.

Any suggestions how I do this? I'm at a bit of a loss how to handle
multiple users and grants.

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to