summaryrefslogtreecommitdiffstats
path: root/plugins/puppet/type/mysql_database.rb
blob: 5dd96d480368124383de9f8e1189cf504c3d0b5e (plain)
1
2
3
4
5
6
7
8
9
# This has to be a separate type to enable collecting
Puppet::Type.newtype(:mysql_database) do
	@doc = "Manage a database."
	ensurable
	newparam(:name) do
		desc "The name of the database."
	end
end