ironsheep / RPi-Reporter-MQTT2HA-Daemon

Linux service to collect and transfer Raspberry Pi data via MQTT to Home Assistant (for RPi Monitoring)
GNU General Public License v3.0
442 stars 62 forks source link

Cannot seem to get a working upgrade... #76

Closed mattlward closed 1 year ago

mattlward commented 1 year ago

I have followed the process outlined to perform the script upgrade, have upgraded the front end in HACS and I am still getting the notices below.

I am on the latest Home Assistant and my Buster Pi is fully updated/upgraded.

image

After a short delay... I now see the following. image

BebeMischa commented 1 year ago

the bullseye pi's seems to be updated fine. That (unexpected value) thing is a known bug.

only the first one, the buster one is not updated.

Needs this:

Systemd commands to perform update

If you are setup in the systemd form, you can update to the latest we've published by following these steps:

go to local repo

cd /opt/RPi-Reporter-MQTT2HA-Daemon

stop the service

sudo systemctl stop isp-rpi-reporter.service

get the latest version

sudo git pull

reload the systemd configuration (in case it changed)

sudo systemctl daemon-reload

restart the service with your new version

sudo systemctl start isp-rpi-reporter.service

if you want, check status of the running script

systemctl status isp-rpi-reporter.service

SysV init script commands to perform update

If you are setup in the Sys V init script form, you can update to the latest we've published by following these steps:

go to local repo

cd /opt/RPi-Reporter-MQTT2HA-Daemon

stop the service

sudo /etc/init.d/rpi-reporter stop

get the latest version

sudo git pull

restart the service with your new version

sudo /etc/init.d/rpi-reporter start

if you want, check status of the running script

sudo /etc/init.d/rpi-reporter status