From 9a5f58a3bad4d7bcd6ebd2cdaf6918b8693c875f Mon Sep 17 00:00:00 2001 From: rootzoll Date: Wed, 8 Jan 2025 15:09:49 +0100 Subject: [PATCH] dont remove system device for new layout --- home.admin/config.scripts/blitz.data.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/home.admin/config.scripts/blitz.data.sh b/home.admin/config.scripts/blitz.data.sh index 79e93d400..f2ce2669d 100644 --- a/home.admin/config.scripts/blitz.data.sh +++ b/home.admin/config.scripts/blitz.data.sh @@ -30,7 +30,7 @@ fi # This script should help to setup & manage those different configurations. -# recommended mining minimal sizes +# minimal storage sizes (recommended sizes can get checked by UI) storagePrunedMinGB=128 storageFullMinGB=890 dataMinGB=32 @@ -294,15 +294,10 @@ if [ "$1" = "status" ]; then }' | sort -k2,2nr -k1,1 ) #echo "listOfDevices='${listOfDevices}'" - # when a system drive is found before - remove it from the list - if [ ${#systemDevice} -gt 0 ]; then - listOfDevices=$(echo "${listOfDevices}" | grep -v "${systemDevice}") - fi - # on laptop ignore identified system drive which is the INSTALL thumb drive on setup # on RaspberryPi ignore all systems from thumb drives if [ "${computerType}" = "laptop" ] || [ "${computerType}" = "raspberrypi" ]; then - echo "# on laptop or RaspberryPi ignore existing system ssd/nvme/ drives" + echo "# on laptop or RaspberryPi ignore existing system drives for new setup" systemDevice="" systemSizeGB="" systemPartition=""