mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-28 23:19:33 +00:00
18 lines
225 B
Bash
Executable file
18 lines
225 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
|
|
|
|
exit 0
|