1
0
Fork 0

Adding debian version 1.12-8.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 11:11:48 +01:00
parent ac60c09ef6
commit 868b5312e8
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
9 changed files with 263 additions and 0 deletions

15
debian/nvme-cli.postinst vendored Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
set -e
if [ "$1" = "configure" ]; then
if [ ! -s /etc/nvme/hostnqn ]; then
nvme gen-hostnqn > /etc/nvme/hostnqn
fi
if [ ! -s /etc/nvme/hostid ]; then
uuidgen > /etc/nvme/hostid
fi
fi
#DEBHELPER#