nut-debian/debian/libupsclient1.postinst
2010-03-26 00:21:03 +01:00

30 lines
277 B
Bash

#!/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#