summaryrefslogtreecommitdiff
path: root/www/aolserver/pkg-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'www/aolserver/pkg-deinstall')
-rw-r--r--www/aolserver/pkg-deinstall20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/aolserver/pkg-deinstall b/www/aolserver/pkg-deinstall
deleted file mode 100644
index d3bf33b7a2f6..000000000000
--- a/www/aolserver/pkg-deinstall
+++ /dev/null
@@ -1,20 +0,0 @@
-#! /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