nut-debian/debian/libupsclient1.postinst

30 lines
277 B
Plaintext
Raw Normal View History

2010-02-24 23:58:53 +02:00
#!/bin/sh -e
case "$1" in
configure)
ldconfig
;;
abort-upgrade)
# do nothing
;;
abort-remove)
# do nothing
;;
abort-deconfigure)
# do nothing
;;
*)
echo "$0: incorrect arguments: $*" >&2
exit 1
;;
esac
#DEBHELPER#