net-analyzer/nessus-agent-bin: bump to 7.4.2
authorMarek Szuba <marecki@gentoo.org>
Mon, 19 Aug 2019 09:13:35 +0000 (10:13 +0100)
committerMarek Szuba <marecki@gentoo.org>
Mon, 19 Aug 2019 09:14:01 +0000 (10:14 +0100)
Closes: https://bugs.gentoo.org/692504
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Marek Szuba <marecki@gentoo.org>
net-analyzer/nessus-agent-bin/Manifest
net-analyzer/nessus-agent-bin/nessus-agent-bin-7.4.2.ebuild [new file with mode: 0644]

index 08a208f72679d8ef5627a77adbbaeeafd42ae6c7..c001708f163c7e877b4a86576657966b4ed4f413 100644 (file)
@@ -1,2 +1,3 @@
 DIST NessusAgent-7.4.0-es7.x86_64.rpm 15719960 BLAKE2B 3ea992c54d7a5acf09bc0097b6780993daab68ef2ac4816b247dba8deb949f5fd3202f9244d8ca6d9b53414163deb942b4e2739e14b42396a9a64b2265dea18e SHA512 35d948807a5110a3b1e32abf8a427aebbf082555ffd7f11abff037909119eed8f866f09121d2523107a6b2c374a45f0ff42933b1148d7679436540956d227c4b
 DIST NessusAgent-7.4.1-es7.x86_64.rpm 15719896 BLAKE2B 16e0c578c01edeb54156e6228569ad3c179ac421887dc5f844aa957ef0c12f69d72a22efd8f0fecec9d3d23dcd8a9fdc017561f05f1aaf1cc3a426f83b9b914d SHA512 ff3704706d740e70cac083eb748e9e0e410709b8718c7fd77851ee7591fd5cb0c162bc7308662f864cd1d527ae33171c089d0b32e88c278399aaf8d95d013c22
+DIST NessusAgent-7.4.2-es7.x86_64.rpm 15989044 BLAKE2B 7fdc998acc4a5ee38519a3cf4d41d1de29cb8ddacb05bd6f734a458c63d7ce22c547b4d080320631d489dc381c4553d99a81786dcb48231833a77561ffa6928f SHA512 4aacc51d360c41963ad46c0976322cd29012d52e054337d4e0a303257796923bd35059324a041827ce0c54ef5c5dd6738311fcc4f0bcba19b6d4ea1e3730a146
diff --git a/net-analyzer/nessus-agent-bin/nessus-agent-bin-7.4.2.ebuild b/net-analyzer/nessus-agent-bin/nessus-agent-bin-7.4.2.ebuild
new file mode 100644 (file)
index 0000000..20d896e
--- /dev/null
@@ -0,0 +1,64 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit rpm pax-utils systemd
+
+MY_P="NessusAgent-${PV}-es7"
+
+DESCRIPTION="A remote security scanner for Linux - agent component"
+HOMEPAGE="https://www.tenable.com/"
+SRC_URI="${MY_P}.x86_64.rpm"
+
+LICENSE="GPL-2 Nessus-EULA"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RESTRICT="mirror fetch strip"
+
+QA_PREBUILT="opt/nessus_agent/bin/nasl
+       opt/nessus_agent/bin/nessus-mkrand
+       opt/nessus_agent/lib/nessus/libjemalloc.so.${PV}
+       opt/nessus_agent/lib/nessus/libnessus-glibc-fix.so
+       opt/nessus_agent/lib/nessus/plugins/ovaldi64-rhel7.inc
+       opt/nessus_agent/sbin/nessus-check-signature
+       opt/nessus_agent/sbin/nessus-service
+       opt/nessus_agent/sbin/nessuscli
+       opt/nessus_agent/sbin/nessusd"
+
+S="${WORKDIR}"
+
+pkg_nofetch() {
+       einfo "Please download ${A} from ${HOMEPAGE}downloads/nessus-agents"
+       einfo "The archive should then be placed into your DISTDIR directory."
+}
+
+src_install() {
+       # Using doins -r would strip executable bits from all binaries
+       cp -pPR "${S}"/opt "${D}"/ || die "Failed to copy files"
+
+       pax-mark m "${D}"/opt/nessus_agent/sbin/nessusd
+
+       # Make sure these originally empty directories do not vanish,
+       # Nessus will not run properly without them
+       keepdir /opt/nessus_agent/com/nessus/CA
+       keepdir /opt/nessus_agent/etc/nessus
+       keepdir /opt/nessus_agent/var/nessus/logs
+       keepdir /opt/nessus_agent/var/nessus/tmp
+       keepdir /opt/nessus_agent/var/nessus/users
+
+       newinitd "${FILESDIR}"/nessusagent.initd nessusagent
+       systemd_dounit usr/lib/systemd/system/nessusagent.service
+}
+
+pkg_postinst() {
+       if [[ -z "${REPLACING_VERSIONS}" ]]; then
+               elog "In order to link the agent to Tenable.io or an instance of Nessus Manager,"
+               elog "obtain an appropriate linking key and run"
+               elog ""
+               elog "  /opt/nessus_agent/sbin/nessuscli agent link --key=<key> --host=<host> --port=<port> [optional parameters]"
+               elog ""
+               elog "This can be done before the agent is started."
+       fi
+}