#!/bin/sh
INSTDIR="$1"

if [ ! -e "$INSTDIR/keys/CCcam.cfg.CCcam" ]; then
	echo "remove ipk CCcam.cfg"
	rm "$INSTDIR/keys/CCcam.cfg"
fi

if [ ! -e "$INSTDIR/keys/SoftCam.Key.CCcam" ]; then
	echo "remove ipk SoftCam.Key"
	rm "$INSTDIR/keys/SoftCam.Key"
fi

exit 0