Skip to content
Snippets Groups Projects
cc-node-hypervisor.postinst 190 B
Newer Older
Anael Beutot's avatar
Anael Beutot committed
#!/bin/sh
set -e

case "$1" in
configure)
;;

abort-upgrade|abort-remove|abort-deconfigure)
;;

*)
echo "postinst called with unknown argument `$1`" > &2
exit 1
;;
esac

#DEBHELPER#

exit 0