mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-27 10:31:38 +08:00
11 lines
225 B
Bash
11 lines
225 B
Bash
#!/bin/sh
|
|
|
|
grep -q "config login$" "/etc/config/sysuh3c" || exit 0
|
|
|
|
sed -e "s,config login,config sysuh3c 'config'," \
|
|
-e "s,option enable ,option enabled ," \
|
|
-e "/blockstartup/d" \
|
|
-i "/etc/config/sysuh3c"
|
|
|
|
exit 0
|