diff options
author | mh <mh@immerda.ch> | 2008-07-02 20:04:16 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-07-02 20:04:16 +0000 |
commit | 674d0d6b8f4d6d0f1209c111bac8352fb0e27b0a (patch) | |
tree | c6641e1bfeb936a4bbbf5101631cd4cf6968fae6 | |
parent | d52e1b74604c7c29ea733c93cda443e9bf36291d (diff) |
fixed requireing of the wrong user
-rw-r--r-- | manifests/puppetmaster.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster.pp b/manifests/puppetmaster.pp index 821cb80..fadbfc6 100644 --- a/manifests/puppetmaster.pp +++ b/manifests/puppetmaster.pp @@ -126,7 +126,7 @@ define puppet::puppetmaster::hasdb::mysql( @@mysql_grant{"${dbuser}@$${dbconnectinghost}/${dbname}": privileges => all, - require => Mysql_user['munin@localhost'], + require => Mysql_user["${dbuser}@{dbconnectinghost}"], tag => "mysql_${dbhostfqdn}", } } |