diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:41:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 19:41:33 +0000 |
commit | ccee3e4a033ffd7a7048d50623666aebd50e7288 (patch) | |
tree | a80b306b174bb5bd77835dfb274690264d131d72 /debian/nvme-cli.postinst | |
parent | Adding upstream version 2.8. (diff) | |
download | nvme-cli-ccee3e4a033ffd7a7048d50623666aebd50e7288.tar.xz nvme-cli-ccee3e4a033ffd7a7048d50623666aebd50e7288.zip |
Adding debian version 2.8-1.debian/2.8-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | debian/nvme-cli.postinst | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/nvme-cli.postinst b/debian/nvme-cli.postinst new file mode 100755 index 0000000..f984cc9 --- /dev/null +++ b/debian/nvme-cli.postinst @@ -0,0 +1,30 @@ +#!/bin/sh + +set -e + +case "${1}" in + configure) + if [ ! -s /etc/nvme/hostnqn ] + then + nvme gen-hostnqn > /etc/nvme/hostnqn + fi + + if [ ! -s /etc/nvme/hostid ] + then + uuidgen > /etc/nvme/hostid + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`${1}'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 |