freebsd-ports/www/aolserver/pkg-deinstall
Pav Lucistnik 459626c99c - Update to 4.0.10
- Transfer maintainership to submitter

PR:		ports/83547
Submitted by:	Aldert Nooitgedagt <aldert@nooitgedagt.net>
Approved by:	Matthew Braithwaite <mab@red-bean.com> (maintainer)
2005-07-17 17:03:18 +00:00

21 lines
500 B
Bash

#! /bin/sh
PATH=$PATH:/bin:/usr/bin:/usr/sbin
case $2 in
POST-DEINSTALL)
echo "You are deinstalling this port:"
echo " Remember to kill the associated Aolserver process if we don't succeed."
echo " We will try to kill the standard now:"
pid=`ps -ax | grep sample-config | grep -v grep| awk -F' ' '{print $1}'`;
if test "$pid" = "" ; then
echo " No sample-config.tcl process found."
else
echo " Killing sample-config.tcl proces. pid: $pid ."
kill $pid
echo " Done."
fi
;;
esac