Any way to update AdGuardHome to edge release?

Started by beneix, October 23, 2024, 10:23:54 AM

Previous topic - Next topic
October 23, 2024, 10:23:54 AM Last Edit: October 23, 2024, 10:26:39 AM by beneix
I use the AdGuardHome plugin. Normally, I update it via its web interface. At the moment, there is an issue that has been fixed in the latest edge release but not yet released as a stable release. I know that you can update the plugin using the command line and -u, but I assume that only looks for a new stable release. Is there any way to install instead a specific release like the edge release?
OPNsense 24.7.7-amd64 on APU2E4 using ZFS

Do the following:

1) Check current version
sudo /usr/local/AdGuardHome/AdGuardHome -v --version

2) Download beta/edge version of AGH as appropriate
fetch -o agh.tar.gz https://static.adguard.com/adguardhome/beta/AdGuardHome_freebsd_amd64.tar.gz
or
fetch -o agh.tar.gz https://static.adguard.com/adguardhome/edge/AdGuardHome_freebsd_amd64.tar.gz

3) Stop AGH, disable the service

4) Extract the AGH binary to the appropriate location:
sudo tar xvf agh.tar.gz -C /usr/local/;
sudo rm agh.tar.gz;
sudo rm /usr/local/AdGuardHome/LICENSE.txt;
sudo rm /usr/local/AdGuardHome/README.md;
sudo rm /usr/local/AdGuardHome/CHANGELOG.md;


5) Check version again
sudo /usr/local/AdGuardHome/AdGuardHome -v --version

6) Start AGH, enable the service

Thanks gspannu, I got the beta installed and it's working much better.
OPNsense 24.7.7-amd64 on APU2E4 using ZFS