X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/05a0ff951fd8a83036b6b7d2e0e6762c7ba61d63..df06e4ba2ff5ab46ddef6a6a5b8053c3af587ded:/cookbooks/postgresql/providers/database.rb diff --git a/cookbooks/postgresql/providers/database.rb b/cookbooks/postgresql/providers/database.rb index a63197afe..c2b000d13 100644 --- a/cookbooks/postgresql/providers/database.rb +++ b/cookbooks/postgresql/providers/database.rb @@ -33,7 +33,7 @@ def load_current_resource end action :create do - unless @pg.databases.include?(new_resource.database) + if !@pg.databases.include?(new_resource.database) @pg.execute(:command => "CREATE DATABASE \"#{new_resource.database}\" OWNER \"#{new_resource.owner}\" TEMPLATE template0 ENCODING '#{new_resource.encoding}' LC_COLLATE '#{new_resource.collation}' LC_CTYPE '#{new_resource.ctype}'") new_resource.updated_by_last_action(true) else