mirror of
https://github.com/fspc/bike-database.git
synced 2025-04-04 10:03:22 -04:00
18 lines
296 B
Ruby
Executable File
18 lines
296 B
Ruby
Executable File
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
|