svn commit: r371500 - head/security/tripwire/files

Antoine Brodin antoine at FreeBSD.org
Sun Oct 26 11:38:51 UTC 2014


Author: antoine
Date: Sun Oct 26 11:38:50 2014
New Revision: 371500
URL: https://svnweb.freebsd.org/changeset/ports/371500
QAT: https://qat.redports.org/buildarchive/r371500/

Log:
  Do not infinite loop on the package builders creating GB (or TB) of logs

Modified:
  head/security/tripwire/files/pkg-deinstall.in

Modified: head/security/tripwire/files/pkg-deinstall.in
==============================================================================
--- head/security/tripwire/files/pkg-deinstall.in	Sun Oct 26 10:54:00 2014	(r371499)
+++ head/security/tripwire/files/pkg-deinstall.in	Sun Oct 26 11:38:50 2014	(r371500)
@@ -2,6 +2,9 @@
 
 case $2 in
 POST-DEINSTALL)
+	if [ -n "${PACKAGE_BUILDING}" ]; then
+		return 0
+	fi
 	if [ -d %%TWCFG%% -o -d %%TWDB%% ]; then
 		unset ANS
 		echo


More information about the svn-ports-all mailing list