File: doc.postinst

package info (click to toggle)
make 3.76.1-8
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 2,540 kB
  • ctags: 1,231
  • sloc: ansic: 18,525; sh: 367; makefile: 189
file content (22 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/sh

set -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