Mercurial > public > ssdt-docker
annotate postgres/setupExtensions.sh @ 333:e36bf4191e25
testing
author | aldrich |
---|---|
date | Wed, 05 Feb 2020 17:12:52 +0000 |
parents | 53671513b240 |
children |
rev | line source |
---|---|
3 | 1 #!/bin/bash |
2 | |
3 export PGUSER=postgres | |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
80
diff
changeset
|
4 result=`psql -t -A <<- EOSQL |
3 | 5 SELECT 1 FROM pg_database WHERE datname='$DB_NAME'; |
6 EOSQL` | |
7 | |
81
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
80
diff
changeset
|
8 echo "Checking extensions on $DB_NAME ( $result )" |
53671513b240
DEP-10: add timezone and locale settings. add java base image. add native APR for tomcat
smith@nwoca.org
parents:
80
diff
changeset
|
9 if [[ $result == "1" ]]; then |
80 | 10 psql $DB_NAME <<- EOSQL |
11 CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | |
3 | 12 EOSQL |
80 | 13 echo "Set extensions on $DB_NAME" |
3 | 14 fi |
15 |