summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorRobert Marko <robimarko@gmail.com>2024-06-08 12:57:18 +0200
committerRobert Marko <robimarko@gmail.com>2024-06-08 12:57:18 +0200
commit80d1c353b79e6c216dcb2534420470e3e6ed5d60 (patch)
tree0c2ff1ff73b5696fb5e935833bf8e3ba4cfe019e /package
parentde59fc45402ff03e320264c8204f6928090534ad (diff)
downloadopenwrt-80d1c353b79e6c216dcb2534420470e3e6ed5d60.tar.gz
openwrt-80d1c353b79e6c216dcb2534420470e3e6ed5d60.tar.bz2
openwrt-80d1c353b79e6c216dcb2534420470e3e6ed5d60.zip
Revert "base-files: Ignore exit code of uci.sh inclusion"
This reverts commit 17d8c5825e6f5c5d2e4d2c320c3b4b797f4ca0e9. This commit is breaking init somehow, even the hostname is not set, so until its fixed, revert it. Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'package')
-rw-r--r--package/base-files/files/lib/functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh
index 0fc8c07d1a..a009aa81e9 100644
--- a/package/base-files/files/lib/functions.sh
+++ b/package/base-files/files/lib/functions.sh
@@ -533,4 +533,4 @@ cmdline_get_var() {
done
}
-[ -z "$IPKG_INSTROOT" ] && ( [ -f /lib/config/uci.sh ] && . /lib/config/uci.sh ) || true
+[ -z "$IPKG_INSTROOT" ] && [ -f /lib/config/uci.sh ] && . /lib/config/uci.sh