#!/bin/sh -e # Debian nmap postinst # LaMont Jones case "$1" in configure) # see below ;; abort-upgrade|abort-remove|abort-deconfigure) exit 0 ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac