Imported Debian patch 2.4.3-1
This commit is contained in:
parent
26fb71b504
commit
31a319d731
47 changed files with 3098 additions and 0 deletions
53
debian/nut.postrm
vendored
Normal file
53
debian/nut.postrm
vendored
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
#!/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 getent passwd nut >/dev/null; then
|
||||
deluser --quiet nut
|
||||
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#
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue