From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 63EEE138CCF for ; Tue, 12 May 2015 16:43:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 082BAE0815; Tue, 12 May 2015 16:43:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93ED5E0815 for ; Tue, 12 May 2015 16:43:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2FC88340C35 for ; Tue, 12 May 2015 16:43:09 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2326) id 25AE99E3; Tue, 12 May 2015 16:43:07 +0000 (UTC) From: "Richard Farina (zerochaos)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, zerochaos@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/nmap: nmap-9999.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: nmap-9999.ebuild ChangeLog X-VCS-Directories: net-analyzer/nmap X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150512164307.25AE99E3@oystercatcher.gentoo.org> Date: Tue, 12 May 2015 16:43:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b9a6f734-4529-41eb-9dab-981dcf4b9d78 X-Archives-Hash: d2772e7539ea2c07d6526f6d3dd5b5a8 zerochaos 15/05/12 16:43:07 Modified: nmap-9999.ebuild ChangeLog Log: improve postinst message for fcaps (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key DD11F94A) Revision Changes Path 1.5 net-analyzer/nmap/nmap-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-9999.ebuild?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-9999.ebuild?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/nmap-9999.ebuild?r1=1.4&r2=1.5 Index: nmap-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-9999.ebuild,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- nmap-9999.ebuild 12 May 2015 16:27:59 -0000 1.4 +++ nmap-9999.ebuild 12 May 2015 16:43:07 -0000 1.5 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-9999.ebuild,v 1.4 2015/05/12 16:27:59 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-9999.ebuild,v 1.5 2015/05/12 16:43:07 zerochaos Exp $ EAPI=5 @@ -163,8 +163,10 @@ cap_net_raw,cap_net_admin,cap_net_bind_service+eip \ "${EROOT}"/usr/bin/nmap - ewarn "NOTE: To run nmap as normal user you have to add yourself to the" - ewarn "nmap group. This security measure ensures that only trusted users" - ewarn "are allowed to run nmap" + ewarn "NOTE: To run nmap as normal user you have to add yourself to the" + ewarn "nmap group AND pass --privileged on the command line. This security" + ewarn "measure ensures that only trusted users are allowed to run nmap." + ewarn "To avoid passing --privileged every time, add" + ewarn "'export NMAP_PRIVILEGED=\"\"' to your user environment (eg ~/.bashrc)." } 1.337 net-analyzer/nmap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/ChangeLog?rev=1.337&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/ChangeLog?rev=1.337&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/nmap/ChangeLog?r1=1.336&r2=1.337 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v retrieving revision 1.336 retrieving revision 1.337 diff -u -r1.336 -r1.337 --- ChangeLog 12 May 2015 16:27:59 -0000 1.336 +++ ChangeLog 12 May 2015 16:43:07 -0000 1.337 @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/nmap # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.336 2015/05/12 16:27:59 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.337 2015/05/12 16:43:07 zerochaos Exp $ + + 12 May 2015; Rick Farina nmap-9999.ebuild: + improve postinst message for fcaps 12 May 2015; Rick Farina nmap-9999.ebuild: add fcaps, bug #492794