#!/bin/sh set -e if [ "$1" = "configure" ] && [ "$2" ] && dpkg --compare-versions "$2" lt "1.08-1"; then if [ -e /etc/rc2.d/S40ps-watcher ] && \ [ -e /etc/rc3.d/S40ps-watcher ] && \ [ -e /etc/rc4.d/S40ps-watcher ] && \ [ -e /etc/rc5.d/S40ps-watcher ] && \ [ -e /etc/rc0.d/K40ps-watcher ] && \ [ -e /etc/rc1.d/K40ps-watcher ] && \ [ -e /etc/rc6.d/K40ps-watcher ]; then update-rc.d -f ps-watcher remove >/dev/null fi fi # Automatically added by dh_installinit/13.3.1 if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then if [ -x "/etc/init.d/ps-watcher" ]; then update-rc.d ps-watcher defaults 99 01 >/dev/null if [ -n "$2" ]; then _dh_action=restart else _dh_action=start fi invoke-rc.d --skip-systemd-native ps-watcher $_dh_action || exit 1 fi fi # End automatically added section