From d0729d51a537457a66d573e16d62221db65d23ce Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 6 Nov 2025 16:27:50 +0100 Subject: [PATCH] Remove unhealthy system check for OS updates An outdated Home Assistant OS might be the reason for the system to be declared unhealthy (e.g. due to an old Docker version). Operating system updates are fairly self contained and unlikely negatively impacted by a system being unhealthy. Let's allow operating system updates even on unhealthy systems to help users getting back to a healthy state. --- supervisor/os/manager.py | 1 - 1 file changed, 1 deletion(-) diff --git a/supervisor/os/manager.py b/supervisor/os/manager.py index 0369a8a22..8bd8c7779 100644 --- a/supervisor/os/manager.py +++ b/supervisor/os/manager.py @@ -278,7 +278,6 @@ class OSManager(CoreSysAttributes): name="os_manager_update", conditions=[ JobCondition.HAOS, - JobCondition.HEALTHY, JobCondition.INTERNET_SYSTEM, JobCondition.RUNNING, JobCondition.SUPERVISOR_UPDATED,