summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2022-07-14 18:28:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2022-07-16 15:12:07 +0000
commit589986012c4b3ab68e299a2eadca18f90080113b (patch)
treef29a53b04a1950cdddae69344bccb3f0146fa728 /scripts
parentReleasing debian version 1.16-4. (diff)
downloadnvme-cli-589986012c4b3ab68e299a2eadca18f90080113b.tar.xz
nvme-cli-589986012c4b3ab68e299a2eadca18f90080113b.zip
Merging upstream version 2.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/gen-hostnqn.sh29
1 files changed, 2 insertions, 27 deletions
diff --git a/scripts/gen-hostnqn.sh b/scripts/gen-hostnqn.sh
index 563aa60..3333a86 100644
--- a/scripts/gen-hostnqn.sh
+++ b/scripts/gen-hostnqn.sh
@@ -1,28 +1,3 @@
-#!/bin/bash
+#!/bin/sh
-LC_ALL=C
-
-if [ -e "/proc/device-tree/ibm,partition-uuid" ] ; then
- UUID=$(tr -d '\0' < /proc/device-tree/ibm,partition-uuid)
-else
- UUID=$(dmidecode -s system-uuid | tr -d '[:space:]')
-fi
-
-if [ -z "$UUID" ] ; then
- >&2 echo "No UUID found, can't determine hostnqn."
- exit 1
-fi
-
-# convert UUID to lower-case only:
-UUID=$(echo $UUID | tr '[:upper:]' '[:lower:]')
-
-# check UUID format, e.g.: 4c4c4544-0156-4a10-8134-b7d04f383232, so: 8-4-4-4-12
-if ! [[ $UUID =~ ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$ ]] ; then
- >&2 echo "UUID has invalid format."
- >&2 echo "Invalid UUID: ${UUID}"
- exit 2
-fi
-
-HOSTNQN="nqn.2014-08.org.nvmexpress:uuid:${UUID}"
-
-echo $HOSTNQN
+nvme gen-hostnqn