diff options
Diffstat (limited to 'goaccess/templates')
| -rw-r--r-- | goaccess/templates/goaccess.service.j2 | 11 | ||||
| -rw-r--r-- | goaccess/templates/goaccess.timer.j2 | 9 |
2 files changed, 20 insertions, 0 deletions
diff --git a/goaccess/templates/goaccess.service.j2 b/goaccess/templates/goaccess.service.j2 new file mode 100644 index 0000000..aa1e929 --- /dev/null +++ b/goaccess/templates/goaccess.service.j2 @@ -0,0 +1,11 @@ +[Unit] +Description=GoAccess + +[Service] +Type=oneshot +ExecStart=/usr/bin/goaccess {{goaccess_http_log}} -o {{goaccess_output_dest}} --log-format=COMBINED --no-progress --no-parsing-spinner +RemainAfterExit=true +Environment=HOME=/var/run + +[Install] +WantedBy=multi-user.target diff --git a/goaccess/templates/goaccess.timer.j2 b/goaccess/templates/goaccess.timer.j2 new file mode 100644 index 0000000..7f68e81 --- /dev/null +++ b/goaccess/templates/goaccess.timer.j2 @@ -0,0 +1,9 @@ +[Unit] +Description=GoAccess refresh timer + +[Timer] +OnCalendar={{goaccess_timer_freq}} +Unit=goaccess.service + +[Install] +WantedBy=timers.target |
