diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-18 12:26:02 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-08-18 12:26:02 +0000 |
commit | 11bb90420d74b579256bd81c9b8c37208577339c (patch) | |
tree | 7f1f5e8ebd2229d8f045d842dfdd7f00c4a07454 /testing/openvas-manager/openvasmd.initd | |
parent | e4aabbb60710901fb208c3a5516a67aee2e02f35 (diff) | |
download | aports-11bb90420d74b579256bd81c9b8c37208577339c.tar.bz2 aports-11bb90420d74b579256bd81c9b8c37208577339c.tar.xz |
Revert "community/openvas-manager: moved from testing"
This reverts commit 0977a30ac83e81c7cbbbefbf41307ad75d7b7787.
Diffstat (limited to 'testing/openvas-manager/openvasmd.initd')
-rw-r--r-- | testing/openvas-manager/openvasmd.initd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/openvas-manager/openvasmd.initd b/testing/openvas-manager/openvasmd.initd new file mode 100644 index 0000000000..d0045d5b2e --- /dev/null +++ b/testing/openvas-manager/openvasmd.initd @@ -0,0 +1,19 @@ +#!/sbin/openrc-run +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +name="OpenVAS Manager" +command=/usr/bin/openvasmd +command_args="${MANAGER_LISTEN} ${MANAGER_PORT} ${SCANNER_LISTEN} ${SCANNER_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 +} + |