Smooth upgrade using the GL.iNet upgrade page and the .tar file. I downloaded SQM scripts and sqm LuCi then ran a config backup to load my configurations.
Adguardhome is 0.107.8 (newest is 0.107.17 or 0.108.0).
Configurations file loaded wgclient and every thing is working except I am getting the same distfeed error as before.
Suggested this:
if ! grep "#!/bin/sh" /usr/bin/wget; then
mv /usr/bin/wget /usr/bin/wget.bak
echo -e "#!/bin/sh\n/usr/bin/wget.bak -4 \"\$@\"" > /usr/bin/wget && chmod +x /usr/bin/wget
fi
or
mv /usr/bin/wget /usr/bin/wget.bak
- create a new
/usr/bin/wget
with contents:
#!/bin/sh /usr/bin/wget.bak -4 “$@”
chmod +x /usr/bin/wget
or