grep -v -E "^veth|^fwbr|^fwln|^fwpr|^tap" grep -iE "RAID|SAS|SATA|SCSI|Mass storage|NVMe"
Improvement: Define constants at the top:
VIRTUAL_IFACE_PATTERN="^veth|^fwbr|^fwln|^fwpr|^tap" STORAGE_CONTROLLER_PATTERN="RAID|SAS|SATA|SCSI|Mass storage|NVMe"
No dependencies set.
The note is not visible to the blocked user.
grep -v -E "^veth|^fwbr|^fwln|^fwpr|^tap"
grep -iE "RAID|SAS|SATA|SCSI|Mass storage|NVMe"
Improvement: Define constants at the top:
VIRTUAL_IFACE_PATTERN="^veth|^fwbr|^fwln|^fwpr|^tap"
STORAGE_CONTROLLER_PATTERN="RAID|SAS|SATA|SCSI|Mass storage|NVMe"