Bug 171526 - [PATCH] dns/unbound installs munin scripts as data
Summary: [PATCH] dns/unbound installs munin scripts as data
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Sergey Matveychuk
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-10 18:10 UTC by Jaap Akkerhuis
Modified: 2012-09-10 19:00 UTC (History)
1 user (show)

See Also:


Attachments
unbound.diff (549 bytes, patch)
2012-09-10 18:10 UTC, Jaap Akkerhuis
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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!