diff options
author | P. J. McDermott <pjm@nac.net> | 2014-02-19 19:26:58 (EST) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2014-02-19 19:26:58 (EST) |
commit | ceef092839b88b388a77190ba3bd0a331e5ff9e7 (patch) | |
tree | 0cb0550ddd824c8da363f3daa94cf1c1ef1771b0 /busybox.pkg/postinst | |
parent | 8e3ec3ad08dfdf18151e01fd23a9d33b6e9c20f4 (diff) |
Refactor update-alternatives stuff into loops.
Diffstat (limited to 'busybox.pkg/postinst')
-rwxr-xr-x | busybox.pkg/postinst | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index 29c3d31..2120eeb 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -1,14 +1,17 @@ #!/bin/sh if [ "x${1}" = 'xconfigure' ]; then - update-alternatives --install /usr/bin/awk awk /usr/bin/awk.busybox 10 - update-alternatives --install /usr/bin/ar ar /usr/bin/ar.busybox 10 - update-alternatives --install /usr/bin/strings strings \ - /usr/bin/strings.busybox 10 - update-alternatives --install /usr/bin/clear clear \ - /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 + while read link name prio; do + if [ -e "${link}.busybox" ]; then + update-alternatives --install "${link}" "${name}" \ + "${link}.busybox" "${prio}" + fi + done <<-EOF + /usr/bin/awk awk 10 + /usr/bin/ar ar 10 + /usr/bin/strings strings 10 + /usr/bin/clear clear 10 + /usr/bin/reset reset 10 + /usr/bin/mkpasswd mkpasswd 10 + EOF fi |