blob: e643c244833f958dd3d0aba2db4880324979f586 (
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 gvmd
}
|