From 8fb481d8212bf775242329c6a6bc04b517bcd23d Mon Sep 17 00:00:00 2001 From: Patrick McLean Date: Thu, 12 Apr 2018 11:08:56 -0700 Subject: 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(+) create mode 100644 app-admin/sshguard/files/sshguard.initd-r1 create mode 100644 app-admin/sshguard/sshguard-2.1.0-r2.ebuild diff --git a/app-admin/sshguard/files/sshguard.initd-r1 b/app-admin/sshguard/files/sshguard.initd-r1 new file mode 100644 index 000000000000..e7b5ca7428b3 --- /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 000000000000..7faed8b68c9c --- /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 +} -- cgit v1.2.3-65-gdbad