diff options
Diffstat (limited to 'busybox.pkg')
-rwxr-xr-x | busybox.pkg/postinst | 2 | ||||
-rwxr-xr-x | busybox.pkg/prerm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index 3c1a964..29c3d31 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -9,4 +9,6 @@ if [ "x${1}" = 'xconfigure' ]; then /usr/bin/clear.busybox 10 update-alternatives --install /usr/bin/reset reset \ /usr/bin/reset.busybox 10 + update-alternatives --install /usr/bin/mkpasswd mkpasswd \ + /usr/bin/mkpasswd.busybox 10 fi diff --git a/busybox.pkg/prerm b/busybox.pkg/prerm index 6cfc7e0..63b465e 100755 --- a/busybox.pkg/prerm +++ b/busybox.pkg/prerm @@ -6,4 +6,5 @@ if [ "${1}" = remove ]; then update-alternatives --remove strings /usr/bin/strings.busybox update-alternatives --remove clear /usr/bin/clear.busybox update-alternatives --remove reset /usr/bin/reset.busybox + update-alternatives --remove mkpasswd /usr/bin/mkpasswd.busybox fi |