From d171fa21b86cb00e6e58928a5da21cc88d956ef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helgi=20=C3=9Eormar=20=C3=9Eorbj=C3=B6rnsson?= <70530+helgi@users.noreply.github.com> Date: Tue, 30 Jun 2020 14:12:53 -0700 Subject: [PATCH] The xvd vs sd distinction got removed; update comment --- ebs-nvme-mapping.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ebs-nvme-mapping.sh b/ebs-nvme-mapping.sh index 3fb70a2..58e5713 100755 --- a/ebs-nvme-mapping.sh +++ b/ebs-nvme-mapping.sh @@ -13,7 +13,6 @@ fi # capture 32 bytes at an offset of 3072 bytes from the raw-binary data # not all block devices are extracted with /dev/ prefix -# use `xvd` prefix instead of `sd` # remove all trailing space nvme_link=$( \ nvme id-ctrl --raw-binary "${1}" | \ @@ -21,4 +20,4 @@ nvme_link=$( \ sed 's/^\/dev\///g'| \ tr -d '[:space:]' \ ); -echo $nvme_link; \ No newline at end of file +echo $nvme_link;