1
0
Fork 0
nvme-cli/debian/nvme-cli.postinst
Daniel Baumann 02ba105e52
Rewriting postinst with the standard maintainer script.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-16 11:31:14 +01:00

30 lines
367 B
Bash
Executable file

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