Hestia update check not working

Hi,

Currently running 1.8.4 with auto updates disabled, and I noticed that 1.8.5 was released 2 days ago.

My system doesn’t seem to realize it isn’t up to date. I remember this used to work a few versions back, so perhaps a recent change affected the update checks?

apt update and then check again?

Hmmm issue persists


1 Like

May be it was made to be work like that, If opted - “Disable Automatic Updates” -
Then- Don’t check for updates.

The reason you can’t see there is an update is because a typo in script /usr/local/hestia/bin/v-list-sys-hestia-updates

Line 105 is:

if [ -n "$hesta_v" ] && [ "$hestia_v" \> "$VERSION" ]; then

And $hesta_v should be $hestia_v, like this:

if [ -n "$hestia_v" ] && [ "$hestia_v" \> "$VERSION" ]; then

Cheers,
sahsanu

5 Likes
4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.