aboutsummaryrefslogtreecommitdiff
path: root/uninstall.sh
blob: b164ea027ec3500bbd6fe85e34c10b7cd7c64e54 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

. /srv/www/lib.sh

for FILE in ${FILES}; do
	rm "/${FILE}"
done

for DIR in ${DIRS}; do
	rm -r "${DIR}"
done