You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011121314 |
- #! /usr/bin/env bash
-
- if [ "${POSTGRES_SLAVE_MODE}" == 1 ]
- then
- echo "Database is in slave mode. Exiting."
- exit 0
- fi
-
- if [ "${POSTGRES_DB}" != 'postgres' ]
- then
- psql <<-EOF
- CREATE DATABASE "${POSTGRES_DB}";
- EOF
- fi
|