File: postinst

package info (click to toggle)
zec 0.12-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 340 kB
  • ctags: 43
  • sloc: sh: 1,160; xml: 72; makefile: 58
file content (20 lines) | stat: -rw-r--r-- 284 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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

if test -x /usr/bin/update-menus ; then update-menus ; fi

exit 0