diff options
Diffstat (limited to 'main/build/before_install.sh')
-rw-r--r-- | main/build/before_install.sh | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/main/build/before_install.sh b/main/build/before_install.sh deleted file mode 100644 index 37d7524..0000000 --- a/main/build/before_install.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash -# -# Inspired by ownCloud´s before_install.sh script <3 -# - -WORKDIR=$PWD -DB=$1 - -echo "Work directory: $WORKDIR" -echo "Database: $DB" - -# -# set up mysql -# -if [ "$DB" == "mysql" ] ; then - echo "Setting up mysql ..." - mysql -u root -e "CREATE DATABASE userfrosting;" - mysql -u root -e "GRANT ALL ON userfrosting.* TO 'travis'@'localhost';" - printf "UF_MODE=\"dev\"\nDB_DRIVER=\"mysql\"\nDB_HOST=\"localhost\"\nDB_PORT=\"3306\"\nDB_NAME=\"userfrosting\"\nDB_USER=\"travis\"\nDB_PASSWORD=\"\"\n" > app/.env -fi - -# -# set up pgsql -# -if [ "$DB" == "pgsql" ] ; then - echo "Setting up pgsql ..." - psql -c "CREATE DATABASE userfrosting;" -U postgres - psql -c "GRANT ALL PRIVILEGES ON DATABASE userfrosting TO postgres;" -U postgres - printf "UF_MODE=\"dev\"\nDB_DRIVER=\"pgsql\"\nDB_HOST=\"localhost\"\nDB_PORT=\"5432\"\nDB_NAME=\"userfrosting\"\nDB_USER=\"postgres\"\nDB_PASSWORD=\"\"\n" > app/.env -fi - -# -# set up sqlite -# -if [ "$DB" == "sqlite" ] ; then - echo "Setting up sqlite ..." - touch userfrosting.db - printf "UF_MODE=\"dev\"\nDB_DRIVER=\"sqlite\"\nDB_NAME=\"userfrosting.db\"\n" > app/.env -fi |