This commit is contained in:
teldra 2022-02-07 15:15:09 +01:00
parent dd0829db41
commit 077826437f

View File

@ -29,7 +29,7 @@ target_phy_id() {
local i local i
local f2 local f2
set -x set -x
for i in $(find /dev/disk/by-id|grep -v part); do for i in $(find /dev/disk/by-id ! -type d|grep -v part); do
if realpath "$i" | grep -q -i "$TARGET_PHY_DISK"; then if realpath "$i" | grep -q -i "$TARGET_PHY_DISK"; then
if echo "$i" | grep -q -v "wwn" | grep -q -v "eui"; then if echo "$i" | grep -q -v "wwn" | grep -q -v "eui"; then
TARGET_PHY_ID="$i" TARGET_PHY_ID="$i"