op-packages/luci-app-syncthing/root/etc/uci-defaults/luci-syncthing
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

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