#!/bin/sh

echo "VENDOR THERMAL PRINTER"
echo "VENDOR THERMAL PRINTER CUPS Driver 1.0.0 Removing Start"
echo "---------------------------------------"
echo ""

if [ -e /usr/lib/cups/filter/rastertovtp ]
then 
	echo "Removing rastertovtp"
	rm -f /usr/lib/cups/filter/rastertovtp
fi

if [ -d /usr/share/cups/model/VendorTP ]
then
	echo "Removing dir .../cups/model/VendorTP"
	rm -rf /usr/share/cups/model/VendorTP
fi

echo "Removing Complete!!!"
echo ""

