discourse/.cloud66/scripts/import_dev.sh
2013-10-14 17:09:29 +01:00

10 lines
No EOL
190 B
Bash

#!/bin/bash
FILE=/tmp/import_dev_done
if [ -f $FILE ]
then
echo "File $FILE exists..."
else
psql $POSTGRESQL_DATABASE < /tmp/images/development-image.sql
touch /tmp/import_dev_done
fi