File: jserv.prerm

package info (click to toggle)
jserv 1.1.2-2
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 4,584 kB
  • ctags: 3,019
  • sloc: sh: 7,715; java: 6,635; ansic: 5,013; makefile: 814; perl: 39; xml: 32
file content (21 lines) | stat: -rw-r--r-- 436 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh -e

#DEBHELPER#

case "$1" in
    upgrade)
        # Nothing to do here
    ;;

    deconfigure|remove|failed-upgrade)
        # Remove the include directive and the LoadModule command
        # from Apache's configuration file and reload the Apache
        # configuration
        /usr/sbin/update-jserv remove-apache || true
    ;;

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