From cf9a7f4aea28f97df202f25f1ba10b0d52412170 Mon Sep 17 00:00:00 2001 From: Zeljko Boros Date: Fri, 16 Apr 2021 12:46:23 +0200 Subject: [PATCH] fix --- debian/postrm | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/debian/postrm b/debian/postrm index 961ffe7..cbf0f4c 100755 --- a/debian/postrm +++ b/debian/postrm @@ -22,15 +22,22 @@ case "$1" in # continue below ;; - *) + remove) + # kludge + rm -f /usr/share/monit-cn/bacula-fd.conf.cn-old exit 0 ;; + + *) + exit 0 + ;; esac -# Brisemo /etc/monit, ali samo ako paket MONIT nije vise instaliran +# Brisemo /etc/monit i /usr/share/monit-cn, ali samo ako paket MONIT nije vise instaliran if [ $(dpkg-query -W -f='${Status}' monit 2> /dev/null | grep -c "ok installed" || true) -ne "0" ]; then - rm -fr /etc/monit + echo "Brisem /etc/monit i /usr/share/monit-cn..." + rm -fr /etc/monit /usr/share/monit-cn fi # dh_installdeb will replace this with shell code automatically -- 1.7.10.4