commit: 8fb481d8212bf775242329c6a6bc04b517bcd23d
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 12 18:08:56 2018 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Thu Apr 12 18:10:12 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fb481d8
app-admin/sshguard: Revision bump to 2.1.0-r2, rework init script
The old init script did not pass --interpreted to start-stop-daemon
which caused sshguard to always show up as "crashed" in openrc. This
fixes that and reworks the init script to be the more modern
"declarative" format.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
app-admin/sshguard/files/sshguard.initd-r1 | 14 ++++++++++
app-admin/sshguard/sshguard-2.1.0-r2.ebuild | 40 +++++++++++++++++++++++++++++
2 files changed, 54 insertions(+)
diff --git a/app-admin/sshguard/files/sshguard.initd-r1
b/app-admin/sshguard/files/sshguard.initd-r1
new file mode 100644
index 00000000000..e7b5ca7428b
--- /dev/null
+++ b/app-admin/sshguard/files/sshguard.initd-r1
@@ -0,0 +1,14 @@
+#!/sbin/openrc-run
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+command="/usr/sbin/sshguard"
+pidfile="${SSHGUARD_PIDFILE:-/var/run/${SVCNAME}.pid}"
+command_args="-i \"${pidfile}\" ${SSHGUARD_OPTS}"
+command_background=1
+start_stop_daemon_args="--wait ${SSHGUARD_WAIT:-999} --interpreted --quiet"
+
+depend() {
+ after iptables
+ use logger
+}
diff --git a/app-admin/sshguard/sshguard-2.1.0-r2.ebuild
b/app-admin/sshguard/sshguard-2.1.0-r2.ebuild
new file mode 100644
index 00000000000..7faed8b68c9
--- /dev/null
+++ b/app-admin/sshguard/sshguard-2.1.0-r2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="protects hosts from brute force attacks against ssh"
+HOMEPAGE="http://sshguard.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd"
+
+DEPEND="
+ sys-devel/flex
+"
+RDEPEND="
+ virtual/logger
+"
+DOCS=(
+ CHANGELOG.rst
+ CONTRIBUTING.rst
+ README.rst
+ examples/net.sshguard.plist
+ examples/sshguard.service
+ examples/whitelistfile.example
+)
+PATCHES=(
+ "${FILESDIR}"/${PN}-2.1.0-conf.patch
+)
+
+src_install() {
+ default
+
+ newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+
+ insinto /etc
+ newins examples/sshguard.conf.sample sshguard.conf
+}