zulip/tools/postgres-init-db

17 lines
311 B
Plaintext
Raw Normal View History

#/bin/sh -xe
PASSWORD=xxxxxxxxxxxx
sudo -u postgres psql << EOF
DROP SCHEMA public CASCADE;
CREATE DATABASE humbug;
CREATE USER humbug WITH PASSWORD '$PASSWORD';
GRANT ALL ON DATABASE humbug TO humbug;
EOF
echo "Database created"
umask go-rw
echo "*:*:*:humbug:$PASSWORD" >> ~/.pgpass
chmod go-rw ~/.pgpass