#!/bin/sh
set -e
#
# Remove installed symbolic links
if [ "$1" = "remove" ]; then
	if [ -L /usr/lib/python3/dist-packages/pijuice.py ]; then
		rm /usr/lib/python3/dist-packages/pijuice.py
	fi
	if [ -L /usr/bin/pijuiceboot ]; then
		rm /usr/bin/pijuiceboot
	fi
	if [ -L /usr/bin/pijuice_cli ]; then
		rm /usr/bin/pijuice_cli
	fi
fi

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#
