summaryrefslogtreecommitdiff
path: root/net-analyzer/notus-scanner/files/notus-scanner.initd
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/notus-scanner/files/notus-scanner.initd')
-rw-r--r--net-analyzer/notus-scanner/files/notus-scanner.initd23
1 files changed, 23 insertions, 0 deletions
diff --git a/net-analyzer/notus-scanner/files/notus-scanner.initd b/net-analyzer/notus-scanner/files/notus-scanner.initd
new file mode 100644
index 000000000000..e00e9118e32e
--- /dev/null
+++ b/net-analyzer/notus-scanner/files/notus-scanner.initd
@@ -0,0 +1,23 @@
+#!/sbin/openrc-run
+# Copyright 2023Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+name="Greenbone Notus Scanner"
+command=/usr/bin/notus-scanner
+pidfile="/run/notus-scanner/${RC_SVCNAME}.pid"
+command_args="${NOTUS_SCANNER_OPTIONS} \
+ ${NOTUS_SCANNER_MQTT_BROKER_ADDRESS} \
+ ${NOTUS_SCANNER_MQTT_BROKER_PORT} \
+ ${NOTUS_SCANNER_PRODUCTS_DIRECTORY} \
+ ${NOTUS_DISABLE_HASHSUM_VERIFICATION} \
+ --pid-file ${pidfile} \
+ --config /etc/gvm/notus-scanner.toml"
+
+depend() {
+ after bootmisc
+ need localmount mosquitto
+}
+
+start_pre() {
+ checkpath -d /var/run/notus-scanner
+}