1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00

Improved pkg-deinstall. It now displays a warning message

if the www user still exists. Bumped PORTREVISION.
This commit is contained in:
Ernst de Haan 2002-03-04 23:31:47 +00:00
parent ad27933c59
commit 7a5656bbf0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=55542
4 changed files with 66 additions and 14 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= orion
PORTVERSION= 1.5.2
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= www java
MASTER_SITES= http://www.orionserver.com/distributions/ \
http://www.atlassian.com/software/orion/downloads/ \

View File

@ -1,8 +1,34 @@
#!/bin/sh
PID_FILE=/var/run/orion.pid
if [ -e ${PID_FILE} ]; then
echo -n "Orion Server is still running."
/bin/kill `cat ${PID_FILE}`
rm -f ${PID_FILE}
echo " Stopped."
#
# This script does the following.
#
# * Checks if the Orion PID file exists. If it does, it kills the
# Orion process and removes the PID file.
#
# * Checks if the 'www' user exists. If it does, then it displays
# a message.
#
# $FreeBSD$
#
# Make sure we're in the right stage of the process
if [ "$2" = "DEINSTALL" ]; then
# Kill Orion if it is still running
PID_FILE=/var/run/orion.pid
if [ -e ${PID_FILE} ]; then
echo -n "Orion Server is still running."
/bin/kill `cat ${PID_FILE}`
rm -f ${PID_FILE}
echo " Stopped."
fi
fi
if [ "$2" = "POST-DEINSTALL" ]; then
# If the user exists, then display a message
if pw usershow "www" 2>/dev/null 1>&2; then
echo "To delete the www user permanently, use 'pw userdel www'"
fi
fi
exit 0

View File

@ -7,7 +7,7 @@
PORTNAME= orion
PORTVERSION= 1.5.2
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= www java
MASTER_SITES= http://www.orionserver.com/distributions/ \
http://www.atlassian.com/software/orion/downloads/ \

View File

@ -1,8 +1,34 @@
#!/bin/sh
PID_FILE=/var/run/orion.pid
if [ -e ${PID_FILE} ]; then
echo -n "Orion Server is still running."
/bin/kill `cat ${PID_FILE}`
rm -f ${PID_FILE}
echo " Stopped."
#
# This script does the following.
#
# * Checks if the Orion PID file exists. If it does, it kills the
# Orion process and removes the PID file.
#
# * Checks if the 'www' user exists. If it does, then it displays
# a message.
#
# $FreeBSD$
#
# Make sure we're in the right stage of the process
if [ "$2" = "DEINSTALL" ]; then
# Kill Orion if it is still running
PID_FILE=/var/run/orion.pid
if [ -e ${PID_FILE} ]; then
echo -n "Orion Server is still running."
/bin/kill `cat ${PID_FILE}`
rm -f ${PID_FILE}
echo " Stopped."
fi
fi
if [ "$2" = "POST-DEINSTALL" ]; then
# If the user exists, then display a message
if pw usershow "www" 2>/dev/null 1>&2; then
echo "To delete the www user permanently, use 'pw userdel www'"
fi
fi
exit 0