#!/bin/sh

echo "Are you sure (enter yes or no)?"

read sure

if [ "$sure" = "yes" ]; then

	for file in `cat packing.lst`
	do
		rm -fv /usr/local/${file}
	done

fi

echo -n "Removing Leech Protection directives from httpd.conf... "

perl apacheleechprotectremove

echo "Done"
