summaryrefslogtreecommitdiff
path: root/lib/puppet/type/mysql_grant.rb
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2015-02-24 16:46:45 -0500
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2015-02-24 16:46:45 -0500
commita713d36aeb35595792c09222e4424abfa07ddad8 (patch)
tree0ccda588dd9d74dc36529347b19d4ee99a5e72b7 /lib/puppet/type/mysql_grant.rb
parent9b327191c775b8d73bfc1f8e5da062703cf7f377 (diff)
parent0ce33a632f30f8845359e2fc146789013dcd4984 (diff)
Merge branch 'master' of git://git.puppet.immerda.ch/module-mysql
Conflicts: files/scripts/optimize_tables.rb manifests/server/base.pp
Diffstat (limited to 'lib/puppet/type/mysql_grant.rb')
-rw-r--r--lib/puppet/type/mysql_grant.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/type/mysql_grant.rb b/lib/puppet/type/mysql_grant.rb
index c6311e5..e61f429 100644
--- a/lib/puppet/type/mysql_grant.rb
+++ b/lib/puppet/type/mysql_grant.rb
@@ -43,7 +43,7 @@ Puppet::Type.newtype(:mysql_grant) do
newproperty(:privileges, :array_matching => :all) do
desc "The privileges the user should have. The possible values are implementation dependent."
munge do |v|
- symbolize(v)
+ v.intern
end
def should_to_s(newvalue = @should)