Skip to content

Commit d9be204

Browse files
authored
do not check for os updates on docker installations (#2856)
- closes #2849
1 parent 5d5a8bd commit d9be204

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
-->
66

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

packages/controller/src/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5714,6 +5714,10 @@ async function setInstanceOfflineStates(id: ioBroker.ObjectIDs.Instance): Promis
57145714
* Check for updatable OS packages and register them as notification
57155715
*/
57165716
async function listUpdatableOsPackages(): Promise<void> {
5717+
if (tools.isDocker()) {
5718+
return;
5719+
}
5720+
57175721
const packManager = new PacketManager();
57185722
await packManager.ready();
57195723

0 commit comments

Comments
 (0)