mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 01:37:34 -08:00
Signed-off-by: Vladimir Pavljuchenkov <spiderx@spiderx.dp.ua> Signed-off-by: Joonas Niilola <juippis@gentoo.org>
16 lines
414 B
Plaintext
16 lines
414 B
Plaintext
#!/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
|
|
}
|