File: postinst

package info (click to toggle)
most 4.10.2-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 828 kB
  • ctags: 440
  • sloc: ansic: 5,674; sh: 5,168; makefile: 127
file content (11 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

#DEBHELPER#

case "$1" in
	configure)
		update-alternatives --quiet --install /usr/bin/pager pager \
			/usr/bin/most 60 --slave /usr/share/man/man1/pager.1.gz \
			pager.1.gz /usr/share/man/man1/most.1.gz
		;;
esac