#! /bin/sh
#
# homebridge entfernen
#
	echo
	echo "Es wird homebridge inkl. nodejs entfernt !!"
	echo 
	echo "Press any key to delete homebridge or CTRL+C to exit" 
	read edummy
	rm -r /usr/local/bin/*
	rm -r /usr/local/include/node/*
	rm -r /usr/local/lib/node_modules/*
	rm -r ./.npm/*
	rm -r ./.node-gyp
	echo "jetzt kann homebridge neu installiert werden"
