summaryrefslogtreecommitdiff
path: root/lib/puppet/type/mysql_grant.rb
diff options
context:
space:
mode:
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)