mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-28 17:32:00 +08:00
11 lines
235 B
Bash
11 lines
235 B
Bash
#!/bin/sh
|
|
|
|
grep -q "config gost$" "/etc/config/gost" || exit 0
|
|
|
|
sed -e "s,config gost,config gost 'config'," \
|
|
-e "s,option enable ,option enabled ," \
|
|
-e "s,option run_command,list arguments," \
|
|
-i "/etc/config/gost"
|
|
|
|
exit 0
|