Bike database interface
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
296 B

Puppet::Type.type(:pg_database).provide(:default) do
desc "A default pg_database provider which just fails."
def create
return false
end
def destroy
return false
end
def exists?
fail('This is just the default provider for pg_database, all it does is fail')
end
end