summaryrefslogtreecommitdiff
path: root/lib/puppet/type/mysql_user.rb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-02-03 14:11:18 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-02-03 14:11:18 -0200
commitadc9c0f1168b780e6c8b78f63caa2fb51cc72399 (patch)
tree8b431784fd610e203ca3b42f03069f1c617dcddd /lib/puppet/type/mysql_user.rb
parentb5d91bdba1f0a02614fd6f6e9699c2c97ec8b725 (diff)
downloadpuppet-mysql-adc9c0f1168b780e6c8b78f63caa2fb51cc72399.tar.gz
puppet-mysql-adc9c0f1168b780e6c8b78f63caa2fb51cc72399.tar.bz2
Adding resource types mysql_{user,database,grant} (2)
Diffstat (limited to 'lib/puppet/type/mysql_user.rb')
-rw-r--r--lib/puppet/type/mysql_user.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/puppet/type/mysql_user.rb b/lib/puppet/type/mysql_user.rb
new file mode 100644
index 0000000..55d97b6
--- /dev/null
+++ b/lib/puppet/type/mysql_user.rb
@@ -0,0 +1,22 @@
+# This has to be a separate type to enable collecting
+Puppet::Type.newtype(:mysql_user) do
+ @doc = "Manage a database user."
+ ensurable
+ newparam(:name) do
+ desc "The name of the user. This uses the 'username@hostname' form."
+
+ validate do |value|
+ if value.split('@').first.size > 16
+ raise ArgumentError,
+ "MySQL usernames are limited to a maximum of 16 characters"
+ else
+ super
+ end
+ end
+ end
+
+ newproperty(:password_hash) do
+ desc "The password hash of the user. Use mysql_password() for creating such a hash."
+ end
+end
+