ntopng/packages/ubuntu/debian.ntopng-data/postinst
2020-08-03 18:55:08 +02:00

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