30 lines
277 B
Text
30 lines
277 B
Text
|
#!/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#
|
||
|
|