File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 */
57165716async function listUpdatableOsPackages ( ) : Promise < void > {
5717+ if ( tools . isDocker ( ) ) {
5718+ return ;
5719+ }
5720+
57175721 const packManager = new PacketManager ( ) ;
57185722 await packManager . ready ( ) ;
57195723
You can’t perform that action at this time.
0 commit comments