From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BA630158090 for ; Wed, 11 May 2022 13:22:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7F41E085E; Wed, 11 May 2022 13:22:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D274CE085E for ; Wed, 11 May 2022 13:22:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EC5293415F5 for ; Wed, 11 May 2022 13:22:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FA0A287 for ; Wed, 11 May 2022 13:22:10 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1652275325.4da07f56b6a81278340bccc2c2d7882de15c3a7d.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/gvmd/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/gvmd/files/gvmd.init X-VCS-Directories: net-analyzer/gvmd/files/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 4da07f56b6a81278340bccc2c2d7882de15c3a7d X-VCS-Branch: master Date: Wed, 11 May 2022 13:22:10 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8403acd-b098-4e1c-94c9-0617355eacdf X-Archives-Hash: 106a2fbf00a2eb031362b4d3c2249469 commit: 4da07f56b6a81278340bccc2c2d7882de15c3a7d Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed May 11 11:55:08 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed May 11 13:22:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da07f56 net-analyzer/gvmd: remove unused file Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/25442 Signed-off-by: Florian Schmaus gentoo.org> net-analyzer/gvmd/files/gvmd.init | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/net-analyzer/gvmd/files/gvmd.init b/net-analyzer/gvmd/files/gvmd.init deleted file mode 100644 index 098232afa1e5..000000000000 --- a/net-analyzer/gvmd/files/gvmd.init +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -: ${GVMD_USER:=gvm} -: ${GVMD_GROUP:=gvm} -: ${GVMD_TIMEOUT:=30} - -name="Greenbone Vulnerability Manager" -command=/usr/bin/gvmd -command_args="--foreground ${GVMD_OPTIONS} ${GVMD_LISTEN_ADDRESS_TCP} ${GVMD_PORT} ${GVMD_SCANNER_HOST} ${GVMD_GNUTLS_PRIORITIES}" -command_background="true" -command_user="${GVMD_USER}:${GVMD_GROUP}" -pidfile="/run/gvmd.pid" -retry="${GVMD_TIMEOUT}" - -depend() { - after bootmisc - need localmount net ospd-openvas -} - -start_pre() { - /bin/bash /etc/gvm/gvmd-startpre.sh -}