#!/bin/sh # manual remove packages PURGE_LIST="abiword-plugin-grammar abiword-plugin-mathview abiword-plugins brasero cdparanoia command-not-found dvd+rw-tools genisoimage gpaint iputils-arping iputils-tracepath lftp manpages mozilla-mplayer ppp pppconfig pppoeconf reiserfsprogs tuxpaint wodim wvdial yasr" if [ "$PURGE_LIST" ] ; then dpkg --purge ${PURGE_LIST} || true fi exit 0