Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/gvmd/files/
Date: Wed, 11 May 2022 13:22:15
Message-Id: 1652275325.4da07f56b6a81278340bccc2c2d7882de15c3a7d.flow@gentoo
1 commit: 4da07f56b6a81278340bccc2c2d7882de15c3a7d
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Wed May 11 11:55:08 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed May 11 13:22:05 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4da07f56
7
8 net-analyzer/gvmd: remove unused file
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/25442
13 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
14
15 net-analyzer/gvmd/files/gvmd.init | 24 ------------------------
16 1 file changed, 24 deletions(-)
17
18 diff --git a/net-analyzer/gvmd/files/gvmd.init b/net-analyzer/gvmd/files/gvmd.init
19 deleted file mode 100644
20 index 098232afa1e5..000000000000
21 --- a/net-analyzer/gvmd/files/gvmd.init
22 +++ /dev/null
23 @@ -1,24 +0,0 @@
24 -#!/sbin/openrc-run
25 -# Copyright 1999-2020 Gentoo Authors
26 -# Distributed under the terms of the GNU General Public License v2
27 -
28 -: ${GVMD_USER:=gvm}
29 -: ${GVMD_GROUP:=gvm}
30 -: ${GVMD_TIMEOUT:=30}
31 -
32 -name="Greenbone Vulnerability Manager"
33 -command=/usr/bin/gvmd
34 -command_args="--foreground ${GVMD_OPTIONS} ${GVMD_LISTEN_ADDRESS_TCP} ${GVMD_PORT} ${GVMD_SCANNER_HOST} ${GVMD_GNUTLS_PRIORITIES}"
35 -command_background="true"
36 -command_user="${GVMD_USER}:${GVMD_GROUP}"
37 -pidfile="/run/gvmd.pid"
38 -retry="${GVMD_TIMEOUT}"
39 -
40 -depend() {
41 - after bootmisc
42 - need localmount net ospd-openvas
43 -}
44 -
45 -start_pre() {
46 - /bin/bash /etc/gvm/gvmd-startpre.sh
47 -}