blob: 178d10b16fcef75f128e9fa5c3e6b91d7db30d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
case "$1" in
configure)
update-alternatives --quiet --install /usr/bin/pager pager /usr/bin/less 77
update-alternatives --quiet --install /usr/bin/pager pager /usr/bin/more 50
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
|