1
0
Fork 0
nvme-cli/debian/nvme-cli.postinst

16 lines
241 B
Text
Raw Normal View History

#!/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#