blob: bd782952cfb49e72675fe4714a090b7a1af73632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/sbin/openrc-run
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
command="/usr/bin/goaccess"
name="GoAccess"
description="Real-time web log analyzer"
config="${CONFIG:-/etc/goaccess/goaccess.conf}"
command_args="--real-time-html --daemonize -p $config ${OPTS}"
pidfile="/run/goaccess/${RC_SVCNAME}.pid"
start_stop_daemon_args="-q"
depend() {
need net
}
|