removed config file

This commit is contained in:
André Bauer 2016-12-19 21:51:36 +01:00
parent a1d87eb9e3
commit c782cef279
3 changed files with 9 additions and 24 deletions

View File

@ -1,11 +1,14 @@
#!/bin/bash #!/bin/bash
if [ ! -f entrypoint.config ]; then ZAMMAD_DIR="/home/zammad"
echo "entrypoint.config not found! create it from entrypoint.config.dist before running this script!" GIT_URL="https://github.com/zammad/zammad.git"
exit 1 GIT_BRANCH="develop"
fi #GIT_URL="https://github.com/monotek/zammad.git"
#GIT_BRANCH="unicorn"
. entrypoint.config FRESH_INSTALL="no"
RAILS_SERVER="puma"
DEBUG="no"
RAILS_ENV="production"
export RAILS_ENV=${RAILS_ENV} export RAILS_ENV=${RAILS_ENV}

View File

@ -1,9 +0,0 @@
#!/bin/bash
ZAMMAD_DIR="/home/zammad"
GIT_URL="https://github.com/monotek/zammad.git"
GIT_BRANCH="unicorn"
FRESH_INSTALL="no"
RAILS_SERVER="unicorn"
DEBUG="no"
RAILS_ENV="production"

View File

@ -1,9 +0,0 @@
#!/bin/bash
ZAMMAD_DIR="/home/zammad"
GIT_URL="https://github.com/zammad/zammad.git"
GIT_BRANCH="develop"
FRESH_INSTALL="no"
RAILS_SERVER="puma"
DEBUG="no"
RAILS_ENV="production"