#!/bin/sh # postinst script for apacheds # # see: dh_installdeb(1) set -e APACHEDS_USER=apacheds APACHEDS_GROUP=apacheds # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-remove' # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) # Create apacheds user if it doesn't exist. if ! id $APACHEDS_USER > /dev/null 2>&1 ; then adduser --system --home /var/lib/apacheds --no-create-home \ --group --disabled-password --quiet --shell /bin/bash \ $APACHEDS_USER fi # Fix directory permissions chown -R $APACHEDS_USER:$APACHEDS_GROUP /var/log/apacheds || true chown -R $APACHEDS_USER:$APACHEDS_GROUP /var/lib/apacheds || true chown $APACHEDS_USER:$APACHEDS_GROUP /etc/apacheds/* chmod 640 /etc/apacheds/* ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. # Automatically added by dh_installinit if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then if [ -x "/etc/init.d/apacheds" ]; then update-rc.d apacheds defaults >/dev/null invoke-rc.d apacheds start || exit $? fi fi # End automatically added section exit 0