File: prerm

package info (click to toggle)
less 668-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,988 kB
  • sloc: ansic: 24,976; perl: 884; sh: 399; makefile: 123; python: 33
file content (19 lines) | stat: -rw-r--r-- 254 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
#!/bin/sh

set -e

case "$1" in
  remove)
    update-alternatives --quiet --remove pager /usr/bin/less
  ;;
  upgrade|failed-upgrade|deconfigure)
  ;;
  *)
    echo "prerm called with unknown argument \`$1'" >&2
    exit 0
  ;;
esac

#DEBHELPER#

exit 0