mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-30 18:51:17 +02:00
19 lines
534 B
Text
19 lines
534 B
Text
#!/sbin/openrc-run
|
|
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
description="A scalable 4-in-1 open source and free Security Incident Response Platform"
|
|
command="/opt/thehive/bin/thehive"
|
|
command_background="true"
|
|
command_user="thehive:thehive"
|
|
command_args="${TH_OPTS} -Dpidfile.path=/dev/null"
|
|
command_progress="yes"
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
start_stop_daemon_args="--quiet"
|
|
retry="SIGTERM/50"
|
|
|
|
depend() {
|
|
need elasticsearch
|
|
}
|
|
|
|
# vim: set ft=gentoo-init-d ts=4 :
|