You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
482 B
16 lines
482 B
#!/bin/sh |
|
|
|
getargbool 1 rd.zfcp.conf -d -n rd_NO_ZFCPCONF || rm /etc/zfcp.conf |
|
|
|
for zfcp_arg in $(getargs rd.zfcp -d 'rd_ZFCP='); do |
|
echo "$zfcp_arg" | grep '^0\.[0-9a-fA-F]\.[0-9a-fA-F]\{4\}\(,0x[0-9a-fA-F]\{16\},0x[0-9a-fA-F]\{16\}\)\?$' > /dev/null |
|
test $? -ne 0 && die "For argument 'rd.zfcp=$zfcp_arg'\nSorry, invalid format." |
|
( |
|
IFS="," |
|
# shellcheck disable=SC2086 |
|
set $zfcp_arg |
|
echo "$@" >> /etc/zfcp.conf |
|
) |
|
done |
|
|
|
zfcp_cio_free
|
|
|