#!/bin/bash
# Seeed Grove ++ (C) 2015-2016 Stephane Charette <stephanecharette@gmail.com>
# $Id: postrm 1512 2016-01-01 09:06:13Z stephane $


echo "Postrm: $@"


if [ "$1" = upgrade ]; then
	# nothing (yet!) to do in postrm for upgrades
	true
fi


if [ "$1" = remove -o "$1" = abort-install -o "$1" = disappear ]; then
	# nothing (yet!) to do in postrm for removals
	true
fi


# This token is replaced with shell script snippets generated by other debhelper commands:
#DEBHELPER#

exit 0

