cleaning up

This commit is contained in:
André Bauer 2016-12-20 13:51:56 +01:00
parent c08423c5ad
commit 35f7055917

View File

@ -7,19 +7,19 @@ GIT_BRANCH="develop"
#GIT_BRANCH="unicorn"
RAILS_SERVER="puma"
RAILS_ENV="production"
FRESH_INSTALL="no"
FRESH_INSTALL="yes"
DEBUG="no"
export RAILS_ENV=${RAILS_ENV}
if [ "$1" = 'zammad' ]; then
shopt -s dotglob
export RAILS_ENV=${RAILS_ENV}
if [ "${FRESH_INSTALL}" == "yes" ]; then
shopt -s dotglob
if [ "${FRESH_INSTALL}" == "yes" ]; then
echo "fresh install requested. deleting everything in ${ZAMMAD_DIR}"
rm -rf ${ZAMMAD_DIR}/*
fi
if [ "$1" = 'zammad' ]; then
fi
# get zammad
if [ -f ${ZAMMAD_DIR}/config/database.yml ]; then