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

31 lines
367 B
Text
Raw Normal View History

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