diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2024-04-07 15:16:24 +0300 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2024-04-07 15:16:24 +0300 |
commit | 983047a505d57d72b52e7a291f9a36b4e8c41794 (patch) | |
tree | 862835b0ba6123f90616137063df72f49c75af21 /applications/luci-app-nut/root/etc/uci-defaults | |
parent | 110bb468319140110ae297c6f0f292781d9bdf7e (diff) |
luci-app-nut: Remove old no-op uci-defaults script
Remove old uci-defaults script that was supposed to be run
if nut was older than 2.4.7-8. Nut has been at 2.7.4-9 or newer
since 2018.
(Ps. The script had faulty logic: the version check never matched.)
Fixes #6966
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'applications/luci-app-nut/root/etc/uci-defaults')
-rwxr-xr-x | applications/luci-app-nut/root/etc/uci-defaults/40_luci-nut | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/applications/luci-app-nut/root/etc/uci-defaults/40_luci-nut b/applications/luci-app-nut/root/etc/uci-defaults/40_luci-nut deleted file mode 100755 index 45a1fbb431..0000000000 --- a/applications/luci-app-nut/root/etc/uci-defaults/40_luci-nut +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -version="$(opkg status nut|grep 'Version: '|cut -f2 -d\ )" -release="$(echo $version|cut -f2 -d-)" - -if [ "$version" = "2.7.4" ] && [ "$release" -lt 8 ]; then - uci -q batch <<-EOF >/dev/null - delete ucitrack.@nut_server[-1] - delete ucitrack.@nut_monitor[-1] - delete ucitrack.@nut_cgi[-1] - add ucitrack nut_server - set ucitrack.@nut_server[-1].init=nut-server - add ucitrack nut_monitor - set ucitrack.@nut_monitor[-1].init=nut-monitor - add ucitrack nut_cgi - set ucitrack.@nut_cgi[-1].init=nut-cgi - commit ucitrack -EOF -fi - -exit 0 |