1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/sysutils/condor/pkg-deinstall
Ruslan Makhmatkhanov b7504b26ff - update to 7.8.7
PR:		173246
Submitted by:	Jason Bacon <jwbacon@tds.net> (maintainer)
Submitted by:   nwhitehorn (some fixes to the port)
2013-01-10 19:01:39 +00:00

31 lines
854 B
Bash

#!/bin/sh
##########################################################################
# Script description:
# Install script for Condor scheduler
#
# Arguments:
# $1 = port name
# $2 = mode (e.g. 'POST-INSTALL')
#
# Returns:
# Standard
#
# History:
# Date Name Modification
# 2011-11-22 J Bacon Derived from Ganglia pkg-install
##########################################################################
case $2 in
DEINSTALL)
# Old log, spool, etc. in /home/condor are left in place.
# This could leave incompatible
# older files in place when Condor is upgraded. Not sure how backward
# compatible condor versions are with respect to logs, etc. For now,
# the syadmin is left to deal with this.
# Remove the link to /home/condor
/bin/rm -f /var/db/condor
;;
esac