File: bash.prerm

package info (click to toggle)
bash 4.2%2Bdfsg-0.1%2Bdeb7u3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,308 kB
  • sloc: ansic: 452; sh: 418; makefile: 385
file content (22 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#! /bin/bash

set -e

case "$1" in
    upgrade)
	update-alternatives --remove builtins.7.gz \
	    /usr/share/man/man7/bash-builtins.7.gz
	;;

    remove|deconfigure)
	;;

    failed-upgrade)
	;;
    *)
        echo "prerm called with unknown argument \`$1'" >&2
        exit 1
	;;
esac

#DEBHELPER#