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