File: buthead.postinst

package info (click to toggle)
buthead 1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 100 kB
  • sloc: ansic: 65; sh: 16; makefile: 8
file content (16 lines) | stat: -rwxr-xr-x 314 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/sh

set -e

case "$1" in
    configure)
        # Alternatives
        update-alternatives --quiet \
            --install /usr/bin/bh bh /usr/bin/buthead 30 \
            --slave \
            /usr/share/man/man1/bh.1.gz bh.1.gz \
            /usr/share/man/man1/buthead.1.gz
        ;;
esac

#DEBHELPER#