summaryrefslogtreecommitdiffstats
path: root/debian/postinst
blob: fe33a7d58f88b18612bf150229197eb5aa8a0fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh -e

. /usr/share/debconf/confmodule
test $DEBIAN_SCRIPT_DEBUG && set -v -x


case "$1" in
    install)
    ;;
    upgrade)
    ;;
    configure)
    # Do not do anything. In the past we setup samhain's database but
    # that would send a mail to root on installation and was determined
    # to be unwise (see Debian Bug #749602)
    ;;
    abort-upgrade|abort-remove|abort-deconfigure)
    ;;
    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 0
    ;;
esac


#DEBHELPER#

exit 0