X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ab47927c016597f8602b81dcdc168ad5c335389d..2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b:/cookbooks/postgresql/resources/database.rb diff --git a/cookbooks/postgresql/resources/database.rb b/cookbooks/postgresql/resources/database.rb index c73250464..cd2d4c764 100644 --- a/cookbooks/postgresql/resources/database.rb +++ b/cookbooks/postgresql/resources/database.rb @@ -17,6 +17,8 @@ # limitations under the License. # +unified_mode true + default_action :create property :database, :kind_of => String, :name_property => true @@ -41,7 +43,11 @@ end action :drop do if cluster.databases.include?(new_resource.database) converge_by "drop database #{new_resource.database}" do - cluster.execute(:command => "DROP DATABASE \"#{new_resource.database}\"") + if cluster.version >= 13 + cluster.execute(:command => "DROP DATABASE \"#{new_resource.database}\" WITH (FORCE)") + else + cluster.execute(:command => "DROP DATABASE \"#{new_resource.database}\"") + end end end end