#! /bin/sh #---------------------------------------------------------------------------- # del-package - delete package # # Copyright (c) 2001-2002 Michell Schimanski # Copyright (c) 2003 Frank Meyer # # Creation: 09.12.2001 ms # Last Update: 19.07.2003 fm # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- package=$1 if [ -f /var/install/deinstall/$package ] then /var/install/deinstall/$package rm -f /var/install/packages/$package echo "Package $package removed." else echo "No deinstall skript for Package $package found" fi