From 937dd2be5e5eb8f169fc949f51abdf4e4ff60a27 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 21 Aug 2025 10:26:46 +0200 Subject: [PATCH] Do not list /boot partition for blockdevices routes --- src/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system.js b/src/system.js index f4232761f..af9d15fd5 100644 --- a/src/system.js +++ b/src/system.js @@ -334,7 +334,7 @@ async function getBlockDevices() { rota: d.rota, // false (ssd) true (hdd) . unforuntately, this is not set correctly when virtualized (like in DO) mountpoint: Array.isArray(d.mountpoints) ? d.mountpoints[d.mountpoints.length-1] : d.mountpoint // we only support one mountpoint here old lsblk only exposed one via .mountpoint }; - }); + }).filter(d => d.mountpoint !== '/boot'); } async function checkRebootRequired() {