Skip to content

Commit

Permalink
do not check for os updates on docker installations (#2856)
Browse files Browse the repository at this point in the history
- closes #2849
  • Loading branch information
foxriver76 authored Aug 3, 2024
1 parent 5d5a8bd commit d9be204
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
-->

## __WORK IN PROGRESS__
* (foxriver76) do not check for OS updates on Docker installations
* (foxriver76) clear package update notification if no updates are present anymore
* (Gaspode69) fixed restarting controller on Windows systems

Expand Down
4 changes: 4 additions & 0 deletions packages/controller/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5714,6 +5714,10 @@ async function setInstanceOfflineStates(id: ioBroker.ObjectIDs.Instance): Promis
* Check for updatable OS packages and register them as notification
*/
async function listUpdatableOsPackages(): Promise<void> {
if (tools.isDocker()) {
return;
}

const packManager = new PacketManager();
await packManager.ready();

Expand Down

0 comments on commit d9be204

Please sign in to comment.