diff options
author | Karel Kočí <karel.koci@nic.cz> | 2020-03-12 16:30:44 +0100 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2020-03-12 16:30:44 +0100 |
commit | 1e203d8ca01b54e9adae820670cd5e4d9e29eaf8 (patch) | |
tree | f0569d85a2a6f74028eba495ef4472b2e2b42c71 /updater-ng/files | |
parent | aed5dab7d11ef64eef354a64b672f533a4961678 (diff) | |
download | openwrt-personal-pkgs-1e203d8ca01b54e9adae820670cd5e4d9e29eaf8.tar.gz openwrt-personal-pkgs-1e203d8ca01b54e9adae820670cd5e4d9e29eaf8.tar.bz2 openwrt-personal-pkgs-1e203d8ca01b54e9adae820670cd5e4d9e29eaf8.zip |
updater-ng: fix missing file
Diffstat (limited to 'updater-ng/files')
-rwxr-xr-x | updater-ng/files/update_alternatives.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/updater-ng/files/update_alternatives.sh b/updater-ng/files/update_alternatives.sh new file mode 100755 index 0000000..c93ae45 --- /dev/null +++ b/updater-ng/files/update_alternatives.sh @@ -0,0 +1,23 @@ +#!/bin/sh +set -e + +if [ $# -gt 0 ]; then + echo "This script is part of updater and allows user to manually fix alternative links in system." >&2 + exit 0 +fi + +if [ ! -d /usr/lib/opkg/info ]; then + echo "OPKG info directory not located. This is OpenWrt system, isn't it?" >&2 + exit 1 +fi + +# Fist install all busybox applets and then overwite them with alternatives + +busybox --install /bin + +sed -n 's/^Alternatives://p' /usr/lib/opkg/info/*.control | \ + tr , '\n' | \ + sort -n | \ + while IFS=: read PRIO TRG SRC; do + ln -sf "$SRC" "$TRG" + done |