svn commit: r477228 - in head/security/amavisd-new: . files

Florian Smeets flo at FreeBSD.org
Wed Aug 15 13:30:41 UTC 2018


Author: flo
Date: Wed Aug 15 13:30:40 2018
New Revision: 477228
URL: https://svnweb.freebsd.org/changeset/ports/477228

Log:
  Don't warn when using ramdisk, according to the submitter who discussed it
  with kib, the warning is no longer appropriate.
  
  Reported by:	Willem Jan Withagen <wjw at digiware.nl>

Modified:
  head/security/amavisd-new/Makefile
  head/security/amavisd-new/files/amavisd.in

Modified: head/security/amavisd-new/Makefile
==============================================================================
--- head/security/amavisd-new/Makefile	Wed Aug 15 13:19:15 2018	(r477227)
+++ head/security/amavisd-new/Makefile	Wed Aug 15 13:30:40 2018	(r477228)
@@ -2,7 +2,7 @@
 
 PORTNAME=	amavisd-new
 PORTVERSION=	2.11.0
-PORTREVISION=	2
+PORTREVISION=	3
 PORTEPOCH=	1
 CATEGORIES=	security
 MASTER_SITES=	http://www.ijs.si/software/amavisd/ \

Modified: head/security/amavisd-new/files/amavisd.in
==============================================================================
--- head/security/amavisd-new/files/amavisd.in	Wed Aug 15 13:19:15 2018	(r477227)
+++ head/security/amavisd-new/files/amavisd.in	Wed Aug 15 13:30:40 2018	(r477228)
@@ -38,10 +38,6 @@ start_precmd()
 {
 	rm -rf %%AMAVISDIR%%/tmp/* %%AMAVISDIR%%/tmp/.* 2>/dev/null || true
 	if [ ${amavisd_ram} ];then
-	  echo "========================================================"
-	  echo "WARNING: using ramdisk is reported to be unstable and"
-	  echo "thus it is highly recommended to be turned off."
-	  echo "========================================================"
 	  df %%AMAVISDIR%%/tmp | grep -E '^(/dev/md|tmpfs)' > /dev/null
 	  if [ $? -eq 1 ]; then
 	    mdmfs -s ${amavisd_ram} -p 750 -w %%AMAVISUSER%%:%%AMAVISGROUP%% md %%AMAVISDIR%%/tmp || true


More information about the svn-ports-head mailing list