From 97e4306a0f4c690e2f17cdcf1c8c1dc1642b5881 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 19 Feb 2014 22:08:08 -0500 Subject: Manage /usr/bin/mkpasswd with update-alternatives. This is also provided by busybox. --- (limited to 'expect-doc.pkg') diff --git a/expect-doc.pkg/files b/expect-doc.pkg/files index ab52a50..94acd44 100644 --- a/expect-doc.pkg/files +++ b/expect-doc.pkg/files @@ -6,7 +6,7 @@ /usr/bin/ftp-rfc /usr/bin/kibitz /usr/bin/lpunlock -/usr/bin/mkpasswd +/usr/bin/mkpasswd.expect /usr/bin/multixterm /usr/bin/passmass /usr/bin/rftp diff --git a/expect-doc.pkg/postinst b/expect-doc.pkg/postinst new file mode 100644 index 0000000..e0cec59 --- /dev/null +++ b/expect-doc.pkg/postinst @@ -0,0 +1,6 @@ +#!/bin/sh + +if [ "x${1}" = 'xconfigure' ]; then + update-alternatives --install /usr/bin/mkpasswd mkpasswd \ + /usr/bin/mkpasswd.expect 10 +fi diff --git a/expect-doc.pkg/prerm b/expect-doc.pkg/prerm new file mode 100644 index 0000000..f67579a --- /dev/null +++ b/expect-doc.pkg/prerm @@ -0,0 +1,5 @@ +#!/bin/sh + +if [ "x${1}" = 'xremove' ]; then + update-alternatives --remove mkpasswd /usr/bin/mkpasswd.expect +fi -- cgit v0.9.1