Your IP : 3.15.208.206


Current Path : /var/lib/dpkg/info/
Upload File :
Current File : /var/lib/dpkg/info/ispmanager-pkg-roundcube.postrm

#!/bin/sh
# postrm script for coremanager-5.15.0
#
# see: dh_installdeb(1)


# summary of how this script can be called:
#        * <postrm> `remove'
#        * <postrm> `purge'
#        * <old-postrm> `upgrade' <new-version>
#        * <new-postrm> `failed-upgrade' <old-version>
#        * <new-postrm> `abort-install'
#        * <new-postrm> `abort-install' <old-version>
#        * <new-postrm> `abort-upgrade' <old-version>
#        * <disappearer's-postrm> `disappear' <overwriter>
#          <overwriter-version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package


COREDIR=/usr/local/mgr5
. ${COREDIR}/lib/pkgsh/core_pkg_funcs.sh
. ${COREDIR}/lib/pkgsh/ispmgr_pkg_funcs.sh

case "$1" in
    purge)
        echo "roundcube roundcube/purge select true" | debconf-set-selections
        echo "DROP USER 'roundcube'@'localhost'" | mysql
        ReloadWeb
        
        if [ -f /lib/systemd/system/php-fpm74.service ] && [ "$(systemctl is-active php-fpm74)" == "active" ]; then
            if  [ ! "$(ls /opt/php74/etc/php-fpm.d/pool.d/*.conf 2>/dev/null)" ] && [ ! "$(ls /opt/php74/etc/php-fpm.d/*.conf 2>/dev/null)" ]; then  
                Service php-fpm74 stop
                Service php-fpm74 disable
            else
                Service php-fpm74 reload
            fi
        fi
    ;;

    remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
        ReloadWeb
    ;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.



exit 0