summaryrefslogtreecommitdiffstats
path: root/debian/mc.postinst
blob: b847313ddf125fa35405194c0edb2b4d5d693476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e

case "$1" in
	configure|abort-upgrade)
		update-alternatives --install /usr/bin/view view /usr/bin/mcview 25 \
			--slave /usr/share/man/man1/view.1.gz view.1.gz /usr/share/man/man1/mcview.1.gz
		update-alternatives --install /usr/bin/editor editor /usr/bin/mcedit 25 \
			--slave /usr/share/man/man1/editor.1.gz editor.1.gz /usr/share/man/man1/mcedit.1.gz
	;;
esac

#DEBHELPER#