mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-22 08:58:47 +00:00
d7987b732d
- Move out modules into separate ports - Rename rc.d script - Pass maintainership to submitter PR: ports/105781 Submitted by: Martin Matuska <martin@matuska.org> Approved by: aldert@nooitgedagt.net (maintainer), erwin (mentor)
24 lines
324 B
Bash
24 lines
324 B
Bash
#! /bin/sh
|
|
|
|
AOLSERVERBASE=%%AOLSERVERBASE%%
|
|
|
|
post-deinstall() {
|
|
[ -d ${AOLSERVERBASE} ] && {
|
|
echo ""
|
|
echo "******** NOTICE ********"
|
|
echo "AOLserver has beed deinstalled."
|
|
echo "You may need to remove ${AOLSERVERBASE} manually."
|
|
echo ""
|
|
}
|
|
return 0
|
|
}
|
|
|
|
case $2 in
|
|
|
|
POST-DEINSTALL)
|
|
post-deinstall
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|