mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-30 22:11:26 +08:00
22 lines
503 B
Bash
22 lines
503 B
Bash
#!/bin/sh
|
|
[ ! -f "/usr/share/ucitrack/luci-app-syncthing.json" ] && {
|
|
cat > /usr/share/ucitrack/luci-app-syncthing.json << EEOF
|
|
{
|
|
"config": "syncthing",
|
|
"init": "syncthing"
|
|
}
|
|
EEOF
|
|
}
|
|
touch /etc/config/syncthing
|
|
|
|
sed -i "s/127.0.0.1:8384/0.0.0.0:8384/" /etc/config/syncthing
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@syncthing[-1]
|
|
add ucitrack syncthing
|
|
set ucitrack.@syncthing[-1].exec='/etc/init.d/syncthing restart'
|
|
commit ucitrack
|
|
EOF
|
|
# remove LuCI cache
|
|
rm -f /tmp/luci*
|
|
exit 0
|