#!/bin/sh
# cpanel - addonupdates/uninstall                 Copyright(c) 2011 cPanel, Inc.
#                                                           All rights Reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cpanel license. Unauthorized copying is prohibited

if [ -e pkg.tar.gz ]; then
    rm -f pkg.tar.gz
fi

for file in `cat packing.lst`
do
    if [ -e /usr/local/${file} ]; then
        rm -fv /usr/local/${file}
    fi
    if [ -e /usr/local/${file}.bz2 ]; then
        rm -f /usr/local/${file}.bz2
    fi
done

