obrand-admin-server/dbrebuild.sh

12 lines
220 B
Bash
Raw Permalink Normal View History

2016-04-04 13:14:32 +00:00
#!/bin/bash
echo Database rebuilder...
SQLFILE="obrand.sql"
createdb oBrand
if [[ ! -f "$SQLFILE" ]]; then
wget https://dl.dropboxusercontent.com/u/233909/obrand/obrand.sql -O obrand.sql
fi
psql -f obrand.sql oBrand