summaryrefslogtreecommitdiffstats
path: root/debian/util-linux.postinst
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--debian/util-linux.postinst10
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/util-linux.postinst b/debian/util-linux.postinst
new file mode 100644
index 0000000..c9a446e
--- /dev/null
+++ b/debian/util-linux.postinst
@@ -0,0 +1,10 @@
+#!/bin/sh
+set -e
+
+if [ "$(uname -s)" = "Linux" ]; then
+ update-alternatives --install /usr/bin/pager pager /bin/more 50 \
+ --slave /usr/share/man/man1/pager.1.gz pager.1.gz \
+ /usr/share/man/man1/more.1.gz
+fi
+
+#DEBHELPER#