#!/bin/sh
#
# dcp2000/base-files package pre installation script
#

UINSTLIST="./rootfs/tmp/uninstall.list"
# Uninstall old and unused files
while read _file ; do 
#	echo "DEBUG: delete ${_file}"
	test -e "${_file}" && rm -rf "${_file}"
done < "${UINSTLIST}"

exit 0
