#!/bin/sh #----------------------------------------------------------------------- if [ "x$2" = "xPOST-DEINSTALL" ]; then #----------------------------------------------------------------------- if [ -d /var/log/bopm ] then rm -f /var/log/bopm/bopm.pid 2>/dev/null rmdir /var/log/bopm 2>/dev/null || echo "The logs in /var/log/bopm will remain untouched after the port is deinstalled." fi #----------------------------------------------------------------------- fi #----------------------------------------------------------------------- exit 0