X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/faf8ae12e85eabb050b0f5eceb2cb67ad1de5261..6bf5013e5d298962c5a54bc395b53a5ec1a8a5ba:/cookbooks/postgresql/providers/database.rb diff --git a/cookbooks/postgresql/providers/database.rb b/cookbooks/postgresql/providers/database.rb index eee79031d..1a8402b4b 100644 --- a/cookbooks/postgresql/providers/database.rb +++ b/cookbooks/postgresql/providers/database.rb @@ -17,34 +17,39 @@ # limitations under the License. # +use_inline_resources + def load_current_resource @pg = Chef::PostgreSQL.new(new_resource.cluster) @current_resource = Chef::Resource::PostgresqlDatabase.new(new_resource.name) @current_resource.database(new_resource.database) @current_resource.cluster(new_resource.cluster) - if pg_database = @pg.databases[@current_resource.database] + if (pg_database = @pg.databases[@current_resource.database]) @current_resource.owner(pg_database[:owner]) @current_resource.encoding(pg_database[:encoding]) + @current_resource.encoding(pg_database[:collate]) + @current_resource.encoding(pg_database[:ctype]) end @current_resource end action :create do - unless @pg.databases.include?(new_resource.database) - @pg.execute(:command => "CREATE DATABASE #{new_resource.database} OWNER #{new_resource.owner} ENCODING '#{new_resource.encoding}'") - new_resource.updated_by_last_action(true) - else - if new_resource.owner != @current_resource.owner - @pg.execute(:command => "ALTER DATABASE #{new_resource.database} OWNER TO #{new_resource.owner}") - new_resource.updated_by_last_action(true) + if !@pg.databases.include?(new_resource.database) + converge_by "create database #{new_resource.database}" do + @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}'") + end + elsif new_resource.owner != @current_resource.owner + converge_by "alter database #{new_resource.database}" do + @pg.execute(:command => "ALTER DATABASE \"#{new_resource.database}\" OWNER TO \"#{new_resource.owner}\"") end end end action :drop do if @pg.databases.include?(new_resource.database) - @pg.execute(:command => "DROP DATABASE #{new_resource.database}") - new_resource.updated_by_last_action(true) + converge_by "drop database #{new_resource.database}" do + @pg.execute(:command => "DROP DATABASE \"#{new_resource.database}\"") + end end end