File: libapache2-mod-jk.postinst

package info (click to toggle)
libapache-mod-jk 1%3A1.2.30-1squeeze2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 10,056 kB
  • ctags: 5,973
  • sloc: ansic: 54,056; xml: 12,930; sh: 9,363; java: 1,921; perl: 1,004; makefile: 275; awk: 59
file content (24 lines) | stat: -rw-r--r-- 304 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
21
22
23
24
#!/bin/sh -e

#DEBHELPER#

case "$1" in
    configure)

	# Only activate jk if this is not an upgrade
	if [ -z "$2" ]; then
	    a2enmod jk || true
	fi
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
	echo "$0 called with unknown argument \`$1'" >&2
	exit 1
    ;;
esac

exit 0