nut/debian/libupsclient1.postinst

30 lines
277 B
Text
Raw Normal View History

2010-02-24 21:58:53 +00: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#