addjusted collon to space

This commit is contained in:
2025-03-01 14:22:23 -05:00
parent 37ebd0c23f
commit 8d36842ee4

View File

@ -34,13 +34,13 @@ get_drives_info() {
declare -A DRIVE_MAPPINGS=( declare -A DRIVE_MAPPINGS=(
["medium2"]=" ["medium2"]="
pci-0000:0c:00.0-ata-3:3 pci-0000:0c:00.0-ata-3 5
pci-0000:0c:00.0-ata-4:4 pci-0000:0c:00.0-ata-4 6
pci-0000:0c:00.0-ata-5:5 pci-0000:0c:00.0-ata-1 3
pci-0000:0c:00.0-ata-6:6 pci-0000:0c:00.0-ata-2 4
pci-0000:0d:00.0-nvme-1:11 pci-0000:0d:00.0-nvme-1 11
pci-0000:0b:00.0-usb-0:3:1.0-scsi-0:0:0:0:usb1 pci-0000:0b:00.0-usb-0:3:1.0-scsi-0:0:0:0 usb1
pci-0000:0b:00.0-usb-0:4:1.0-scsi-0:0:0:0:usb2 pci-0000:0b:00.0-usb-0:4:1.0-scsi-0:0:0:0 usb2
" "
) )
@ -48,17 +48,14 @@ build_drive_map() {
local host=$(hostname) local host=$(hostname)
declare -A drive_map declare -A drive_map
# Add debug output
echo "DEBUG: Current host: $host" echo "DEBUG: Current host: $host"
echo "DEBUG: Mapping found: ${DRIVE_MAPPINGS[$host]}" echo "DEBUG: Mapping found: ${DRIVE_MAPPINGS[$host]}"
local mapping=${DRIVE_MAPPINGS[$host]} local mapping=${DRIVE_MAPPINGS[$host]}
if [[ -n "$mapping" ]]; then if [[ -n "$mapping" ]]; then
while read -r path_slot; do while read -r path slot; do
[[ -z "$path_slot" ]] && continue [[ -z "$path" || -z "$slot" ]] && continue
local path=${path_slot%:*}
local slot=${path_slot#*:}
echo "DEBUG: Checking path: $path for slot: $slot" echo "DEBUG: Checking path: $path for slot: $slot"