1
0
Fork 0
nvme-cli/debian/nvme-cli.postrm
Daniel Baumann b9f630281c
Removing generated files on purge.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-16 11:32:22 +01:00

23 lines
277 B
Bash
Executable file

#!/bin/sh
set -e
case "${1}" in
purge)
rm -f /etc/nvme/hostnqn
rm -f /etc/nvme/hostid
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`${1}'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0