aboutsummaryrefslogtreecommitdiffstats
path: root/community/greenbone-security-assistant/gsad.initd
diff options
context:
space:
mode:
Diffstat (limited to 'community/greenbone-security-assistant/gsad.initd')
-rw-r--r--community/greenbone-security-assistant/gsad.initd28
1 files changed, 0 insertions, 28 deletions
diff --git a/community/greenbone-security-assistant/gsad.initd b/community/greenbone-security-assistant/gsad.initd
deleted file mode 100644
index 8f0c53d0ad2..00000000000
--- a/community/greenbone-security-assistant/gsad.initd
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/openrc-run
-
-: ${GSAD_USER:=gvm}
-: ${GSAD_GROUP:=gvm}
-: ${GSAD_TIMEOUT:=30}
-: ${GSAD_OPTIONS:=--no-redirect --http-only}
-: ${GSAD_LISTEN_ADDRESS:=127.0.0.1}
-: ${GSAD_LISTEN_PORT:=9392}
-: ${GVMD_LISTEN_ADDRESS:=127.0.0.1}
-: ${GVMD_LISTEN_PORT:=9390}
-: ${GVMD_GNUTLS_PRIORITIES:=NORMAL}
-
-name="Greenbone Security Assistant (GSA)"
-command="/usr/bin/gsad"
-command_args="--foreground ${GSAD_OPTIONS} --listen=${GSAD_LISTEN_ADDRESS} --port=${GSAD_LISTEN_PORT} --mlisten=${GVMD_LISTEN_ADDRESS} --mport=${GVMD_LISTEN_PORT} --gnutls-priorities=${GSAD_GNUTLS_PRIORITIES}"
-command_background="true"
-command_user="${GSAD_USER}:${GSAD_GROUP}"
-pidfile="/run/gvm/gsad.pid"
-retry="${GSAD_TIMEOUT}"
-
-depend() {
- after firewall
- need net gvmd
-}
-
-start_pre() {
- checkpath --directory --owner "$command_user" "${pidfile%/*}" /var/log/gvm
-}