pkgr-postinstall.sh fixes

This commit is contained in:
André Bauer 2016-10-28 10:06:33 +02:00
commit 765fa29879

View file

@ -10,15 +10,14 @@ DB="zammad_production"
DB_USER="zammad" DB_USER="zammad"
# check which init system is used # check which init system is used
if [ -n "$(which initctl)" ]; then if [ -n $(which initctl) ]; then
INIT_CMD="initctl" INIT_CMD="initctl"
elif [ -n "$(which systemctl)" ]; then elif [ -n $(which systemctl) ]; then
INIT_CMD="systemctl" INIT_CMD="systemctl"
else else
function sysvinit () { function sysvinit () {
service $2 $1 service $2 $1
} }
INIT_CMD="sysvinit" INIT_CMD="sysvinit"
fi fi
@ -59,8 +58,8 @@ echo "# Starting Zammad"
${INIT_CMD} start zammad ${INIT_CMD} start zammad
# nginx config # nginx config
if [ -n "$(which nginx)" ];then if [ -n $(which nginx) ]; then
# copy nginx config # copy nginx config
# debian / ubuntu # debian / ubuntu
if [ -d /etc/nginx/sites-enabled ]; then if [ -d /etc/nginx/sites-enabled ]; then
NGINX_CONF="/etc/nginx/sites-enabled/zammad.conf" NGINX_CONF="/etc/nginx/sites-enabled/zammad.conf"