#!/bin/bash # # packager.io postinstall script # PATH=/opt/zammad/bin:/opt/zammad/vendor/bundle/bin:/sbin:/bin:/usr/sbin:/usr/bin: ZAMMAD_DIR="/opt/zammad" DB="zammad_production" DB_USER="zammad" echo "# (Re)creating init scripts" zammad scale web=1 websocket=1 worker=1 echo "# Stopping Zammad" systemctl stop zammad # check if database.yml.bak exists if [ -f ${ZAMMAD_DIR}/config/database.yml.bak ]; then # copy database.yml.bak to database.yml cp ${ZAMMAD_DIR}/config/database.yml.bak ${ZAMMAD_DIR}/config/database.yml # db migration echo "# database.yml.bak exists. Updating db..." zammad run rake db:migrate else # create new password DB_PASS="$(tr -dc A-Za-z0-9 < /dev/urandom | head -c10)" # create database echo "# database.yml not found. Creating new db..." 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 sed "s/.*password:.*/ password: ${DB_PASS}/" < ${ZAMMAD_DIR}/config/database.yml.pkgr > ${ZAMMAD_DIR}/config/database.yml # save database config for updates cp ${ZAMMAD_DIR}/config/database.yml ${ZAMMAD_DIR}/config/database.yml.bak # 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 echo "# Starting Zammad" systemctl start zammad # 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 "# Restarting Nginx" systemctl restart nginx echo -e "\nOpen http://localhost in your browser to start using Zammad!\n" else echo -e "\nOpen http://localhost:3000 in your browser to start using Zammad!\n" fi