_EXTRAMODULES=

_post_install() {
	echo ">>> Updating module dependencies. Please wait ..."
	depmod "$(cat /usr/lib/modules/$_EXTRAMODULES/version)" >/dev/null 2>&1
}

post_install() {
	_post_install
	getent group cdemu &>/dev/null || groupadd -r cdemu
}

post_upgrade() {
	post_install
}

post_remove() {
	_post_install
	groupdel cdemu
}