File: postinst

package info (click to toggle)
ksh 93r-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,540 kB
  • ctags: 13,342
  • sloc: ansic: 147,476; sh: 20,429; makefile: 902; cpp: 10
file content (27 lines) | stat: -rw-r--r-- 513 bytes parent folder | download | duplicates (3)
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
#!/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

#DEBHELPER#

update-alternatives --install /bin/ksh ksh /bin/ksh93 20 \
                    --slave /usr/bin/ksh usr.bin.ksh /bin/ksh93 \
                    --slave /usr/share/man/man1/ksh.1.gz ksh.1.gz \
                            /usr/share/man/man1/ksh93.1.gz

add-shell /bin/ksh93

exit 0