trabajo-afectivo/contrib/pkgr-postinstall.sh

75 lines
2.1 KiB
Bash
Raw Normal View History

#!/bin/bash
2016-10-25 13:51:46 +00:00
#
# packager.io postinstall script
#
2016-10-25 15:59:31 +00:00
PATH=/opt/zammad/bin:/opt/zammad/vendor/bundle/bin:/sbin:/bin:/usr/sbin:/usr/bin:
2016-10-25 16:07:10 +00:00
ZAMMAD_DIR="/opt/zammad"
2016-10-25 15:59:31 +00:00
DB="zammad_production"
DB_USER="zammad"
2016-10-25 17:23:46 +00:00
# check if database.yml exists
if [ -f ${ZAMMAD_DIR}/config/database.yml ]; then
# get existing db pass
DB_PASS="$(grep "password:" < ${ZAMMAD_DIR}/config/database.yml | sed 's/.*password://')"
fi
2016-10-25 15:59:31 +00:00
# check if db pass exists
if [ -z "${DB_PASS}" ]; then
# create new db pass
DB_PASS="$(tr -dc A-Za-z0-9 < /dev/urandom | head -c10)"
# create database
cd /tmp
su - postgres -c "createdb -E UTF8 ${DB}"
# create postgres user
echo "CREATE USER \"${DB_USER}\" WITH PASSWORD '${DB_PASS}';" | su - postgres -c psql
# grant privileges
echo "GRANT ALL PRIVILEGES ON DATABASE \"${DB}\" TO \"${DB_USER}\";" | su - postgres -c psql
# update configfile
2016-10-25 16:07:10 +00:00
sed -e "s/ password:/ password: ${DB_PASS}/" < ${ZAMMAD_DIR}/config/database.yml.pkgr > ${ZAMMAD_DIR}/config/database.yml
2016-10-25 15:59:31 +00:00
# zammad config set
zammad config:set DATABASE_URL=postgres://${DB_USER}:${DB_PASS}@127.0.0.1/${DB}
# fill database
zammad run rake db:migrate
zammad run rake db:seed
fi
# create init scripts
2016-10-25 15:59:31 +00:00
zammad scale web=1 websocket=1 worker=1
2016-10-25 13:51:46 +00:00
# stop zammad
systemctl stop zammad
2016-10-25 13:51:46 +00:00
# db migration
2016-10-25 15:59:31 +00:00
zammad run rake db:migrate
2016-10-25 13:51:46 +00:00
# start zammad
2016-10-25 15:59:31 +00:00
systemctl start zammad
2016-10-25 16:07:10 +00:00
# nginx config
if [ -d /etc/nginx/sites-enabled ]; then
# copy nginx config
test -f /etc/nginx/sites-available/zammad.conf || cp ${ZAMMAD_DIR}/contrib/nginx/sites-available/zammad.conf /etc/nginx/sites-available/zammad.conf
if [ ! -f /etc/nginx/sites-available/zammad.conf ]; then
# creating symlink
ln -s /etc/nginx/sites-available/zammad.conf /etc/nginx/sites-enabled/zammad.conf
echo -e "\nAdd your FQDN to servername directive in /etc/nginx/sites/enabled/zammad.conf anmd restart nginx if you're not testing localy!\n"
fi
echo -e "\nOpen http://localhost in your browser to start!\n"
2016-10-25 16:07:10 +00:00
# restart nginx
systemctl restart nginx
else
echo -e "\nOpen http://localhost:3000 in your browser to start!\n"
2016-10-25 16:07:10 +00:00
fi