mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
17 lines
360 B
Plaintext
17 lines
360 B
Plaintext
#!/sbin/openrc-run
|
|
#Copyright 2016 Alpine Linux
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
command_args="${GSAD_LISTEN} ${GSAD_PORT} ${MANAGER_LISTEN} ${MANAGER_PORT} ${GSAD_EXTRA_ARGS}"
|
|
name="Greenbone Security Assistant (GSA)"
|
|
command=/usr/sbin/gsad
|
|
|
|
pidfile="/run/gsad.pid"
|
|
|
|
depend() {
|
|
after bootmisc
|
|
need net openvasmd
|
|
}
|
|
|