Split nut package into nut-client and nut-server, keep nut package as metapackage

This commit is contained in:
Laurent Bigonville 2011-05-16 13:58:32 +02:00
parent 1106c880a1
commit 910934027d
18 changed files with 57 additions and 28 deletions

55
debian/nut-server.postrm vendored Normal file
View file

@ -0,0 +1,55 @@
#!/bin/sh -e
case "$1" in
remove)
# remove sample file if those were previously (wrongly) installed
for file in ups.conf upsd.conf upsmon.conf upsd.users upssched.conf ; do
rm -f /etc/nut/${file}.sample
done
;;
purge)
# remove udev rules files
rm -f /etc/udev/rules.d/025_nut-usbups.rules
rm -f /etc/udev/rules.d/52_nut-usbups.rules
rm -f /etc/udev/rules.d/52-nut-usbups.rules
# remove the nut user
if [ -x "$(command -v deluser)" ]; then
deluser --quiet --system nut > /dev/null || true
else
echo >&2 "not removing nut system account because deluser command was not found"
fi
# handle a dpkg bug
[ -d /etc/nut ] && rmdir --ignore-fail-on-non-empty /etc/nut >/dev/null 2>&1
;;
upgrade)
# do nothing
;;
failed-upgrade)
# do nothing
;;
abort-install)
# do nothing
;;
abort-upgrade)
# do nothing
;;
disappear)
# do nothing
;;
*)
echo "$0: incorrect arguments: $*" >&2
exit 1
;;
esac
#DEBHELPER#