mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-02 17:00:16 +00:00
23 lines
282 B
Bash
Executable file
23 lines
282 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
# continue below
|
|
;;
|
|
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
exit 0
|
|
;;
|
|
|
|
*)
|
|
echo "postinst called with unknown argument \`$1'" >&2
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
umask 022
|
|
|
|
echo "Rebuilding ld cache..."
|
|
/sbin/ldconfig
|
|
|
|
exit 0
|