3
0
Files
confdroid_postgresql/templates/server/databases/db_create_sql.erb
2025-10-26 16:36:21 +01:00

4 lines
387 B
Plaintext

psql -U postgres -tc "SELECT 1 FROM pg_database WHERE datname = '<%= @pl_db_name %>'" | grep -q 1 || psql -U postgres -c "CREATE DATABASE <%= @pl_db_name %> OWNER '<%= @pl_owner_name %>' "
psql -U postgres -tc "GRANT ALL PRIVILEGES ON DATABASE <%= @pl_db_name %> TO '<%= @pl_owner_name %>'"
psql -U postgres <%= @pl_db_name %> -c 'create extension if not exists <%= @pl_db_extension %>'