29 lines
277 B
Bash
29 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#
|
|
|