mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
e39f5d4b36
The script was not exiting cleanly causing it to not be removed from the uci-defaults folder. Signed-off-by: John Crispin <john@phrozen.org>
19 lines
510 B
Plaintext
19 lines
510 B
Plaintext
. /usr/share/libubox/jshn.sh
|
|
|
|
json_init
|
|
json_load "$(cat /etc/board.json)"
|
|
|
|
if json_is_a credentials object; then
|
|
json_select credentials
|
|
json_get_vars root_password_hash root_password_hash
|
|
if [ -n "$root_password_hash" ]; then
|
|
sed -i "s|^root:[^:]*|root:$root_password_hash|g" /etc/shadow
|
|
fi
|
|
|
|
json_get_vars root_password_plain root_password_plain
|
|
if [ -n "$root_password_plain" ]; then
|
|
(echo "$root_password_plain"; sleep 1; echo "$root_password_plain") | passwd root
|
|
fi
|
|
json_select ..
|
|
fi
|