mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-19 23:06:41 +01:00
17 lines
418 B
Text
17 lines
418 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
name="OpenVAS Manager"
|
|
command=/usr/sbin/openvasmd
|
|
command_args="${MANAGER_LISTEN} ${MANAGER_PORT} ${MANAGER_EXTRA_ARGS}"
|
|
pidfile="/run/openvasmd.pid"
|
|
|
|
depend() {
|
|
after bootmisc
|
|
need localmount net openvassd
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --directory --mode 0775 --quiet /var/cache/openvas
|
|
}
|