post_install()
{
	if ! grep -q '^ccache:' /etc/group ; then
		groupadd -g 48 ccache
	fi
}

post_upgrade()
{
	post_install $1
}

pre_remove() {
	groupdel ccache
}

op=$1
shift

$op $*
