svn commit: r525976 - in head/security/munge: . files

Muhammad Moinur Rahman bofh at FreeBSD.org
Wed Feb 12 22:00:06 UTC 2020


Author: bofh
Date: Wed Feb 12 22:00:05 2020
New Revision: 525976
URL: https://svnweb.freebsd.org/changeset/ports/525976

Log:
  security/munge: Fix rc script
  
  PR:		243917
  Submitted by:	chris.m.dunlap at gmail.com

Modified:
  head/security/munge/Makefile
  head/security/munge/files/munged.in

Modified: head/security/munge/Makefile
==============================================================================
--- head/security/munge/Makefile	Wed Feb 12 21:55:23 2020	(r525975)
+++ head/security/munge/Makefile	Wed Feb 12 22:00:05 2020	(r525976)
@@ -4,6 +4,7 @@
 PORTNAME=	munge
 PORTVERSION=	0.5.14
 DISTVERSIONPREFIX=	${PORTNAME}-
+PORTREVISION=	1
 CATEGORIES=	security
 
 MAINTAINER=	bofh at FreeBSD.org

Modified: head/security/munge/files/munged.in
==============================================================================
--- head/security/munge/files/munged.in	Wed Feb 12 21:55:23 2020	(r525975)
+++ head/security/munge/files/munged.in	Wed Feb 12 22:00:05 2020	(r525976)
@@ -32,9 +32,7 @@ command_args="--key-file=${munged_keyfile}"
 munged_stop()
 {
 	if [ -f "${pidfile}" ]; then
-		kill -9 `cat ${pidfile}`
-		sleep 1 # wait a little bit
-		rm -f /var/run/munge/*
+		kill `cat ${pidfile}`
 	fi
 
 }


More information about the svn-ports-all mailing list