mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-17 03:25:46 +00:00
459626c99c
- Transfer maintainership to submitter PR: ports/83547 Submitted by: Aldert Nooitgedagt <aldert@nooitgedagt.net> Approved by: Matthew Braithwaite <mab@red-bean.com> (maintainer)
21 lines
500 B
Bash
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
|