Bug 171526

Summary: [PATCH] dns/unbound installs munin scripts as data
Product: Ports & Packages Reporter: Jaap Akkerhuis <jaap>
Component: Individual Port(s)Assignee: Sergey Matveychuk <sem>
Status: Closed FIXED    
Severity: Affects Only Me CC: jaap
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
unbound.diff none

Description Jaap Akkerhuis 2012-09-10 18:10:02 UTC
	If the option to munin is chosen, the probe
	/usr/local/share/munin/plugins/unbound_munin_
	is installed as data and is non-executable (r--r--r--).

How-To-Repeat: 	Install the port
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2012-09-10 18:10:16 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sem

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2012-09-10 18:53:17 UTC
Author: sem
Date: Mon Sep 10 17:53:04 2012
New Revision: 304042
URL: http://svn.freebsd.org/changeset/ports/304042

Log:
  - Fix permissions on munin script
  
  PR:		ports/171526
  Submitted by:	Jaap Akkerhuis <jaap at NLnetLabs.nl>

Modified:
  head/dns/unbound/Makefile

Modified: head/dns/unbound/Makefile
==============================================================================
--- head/dns/unbound/Makefile	Mon Sep 10 17:21:55 2012	(r304041)
+++ head/dns/unbound/Makefile	Mon Sep 10 17:53:04 2012	(r304042)
@@ -7,7 +7,7 @@
 
 PORTNAME=	unbound
 PORTVERSION=	1.4.18
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	dns
 MASTER_SITES=	http://unbound.net/downloads/
 
@@ -102,7 +102,7 @@ post-install:
 .if ${PORT_OPTIONS:MMUNIN}
 	@${MKDIR} ${PREFIX}/share/munin/plugins
 	@${MKDIR} ${PREFIX}/etc/munin/plugins
-	@${INSTALL_DATA} ${WRKDIR}/unbound-${PORTVERSION}/contrib/unbound_munin_\
+	@${INSTALL_SCRIPT} ${WRKDIR}/unbound-${PORTVERSION}/contrib/unbound_munin_\
 		${PREFIX}/share/munin/plugins/
 	@for i in ${MUNIN_ALL}; do\
 		${LN} -fs ${PREFIX}/share/munin/plugins/unbound_munin_\
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Sergey Matveychuk freebsd_committer freebsd_triage 2012-09-10 18:54:23 UTC
State Changed
From-To: open->closed

Committed. Thanks!