X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=50ad721434f7cb6fb125c39e0a34b78809027cbe;hb=78acc390b3a699ecda2d7f0ddcf5609df1d36a6f;hp=dc5c3bdf676338832ae37d55c9f7fe080433d72a;hpb=e640d99cfeb0d10504d5ed152b21f8f3232b6b2b;p=squirrelmail-change-pass-cn.git diff --git a/debian/postinst b/debian/postinst index dc5c3bd..50ad721 100644 --- a/debian/postinst +++ b/debian/postinst @@ -9,12 +9,33 @@ set -e . /usr/share/carnet-tools/functions.sh PKG="squirrelmail-change-pass-cn" -VERSION="3.0.2" +VERSION="3.1.0" SQCONFDIR="/etc/squirrelmail" SQCONF="$SQCONFDIR/config.php" need_restart=0 +# chk_conf_tag () +# +# Check if configuration file has CARNet package info lines. +# return: $RET => 0 - tagged +# 1 - file does not exists +# 2 - file exists, but it is not tagged +# +chk_conf_tag () { + local conf_file + conf_file="$1" + RET=1 + + if [ -f "$conf_file" ]; then + if egrep -q "^## Begin - Generated by CARNet package ${PKG}$" "$conf_file"; then + RET=0 + else + RET=2 + fi + fi +} + # Configure poppassd to refuse connection from all hosts # but localhost (127.0.0.1). # @@ -35,34 +56,40 @@ fi # Enable change_pass plugin in SquirrelMail config.php. # if ! egrep -q '^\$plugins\[[0-9]+\][\ ]*=[\ ]*'\''change_pass'\' "$SQCONF"; then - /usr/sbin/squirrelmail-configure --install-plugin change_pass + squirrelmail-configure --install-plugin change_pass fi # Convert poppassd service from inetd.conf to xinetd.conf type. # Service configuration is saved in /etc/xinetd.d/ directory. # -if [ -x /etc/init.d/xinetd -a -d /etc/xinetd.d -a -x /usr/sbin/itox ]; then - - if egrep -q '^poppassd' /etc/inetd.conf && \ - [ ! -f /etc/xinetd.d/poppassd ]; then - - cp_echo "CN: Enabling poppassd in /etc/xinetd.d/poppassd" +chk_conf_tag /etc/xinetd.d/poppassd +if [ $RET -lt 2 ]; then + cp_echo "CN: Enabling poppassd in /etc/xinetd.d/poppassd" - touch /etc/xinetd.d/poppassd.$$ - grep "^poppassd" /etc/inetd.conf | \ - itox -daemon_dir /usr/sbin | cp-update "$PKG" /etc/xinetd.d/poppassd.$$ - cp_mv /etc/xinetd.d/poppassd.$$ /etc/xinetd.d/poppassd - - need_restart=1 + if [ ! -d /etc/xinetd.d ]; then + mkdir -p /etc/xinetd.d/ fi + touch /etc/xinetd.d/poppassd.$$ + cp-update "$PKG" /etc/xinetd.d/poppassd.$$ </dev/null`" ]; then invoke-rc.d xinetd restart || exit $?