blob: 83e7f890c5a815f33916b3078736d28a708d2d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
}
|