mirror of
https://github.com/OISF/suricata.git
synced 2026-06-10 09:21:54 -04:00
This commit improves the overall documentation's grammar, spelling, and adds clarifications where needed.
15 lines
338 B
ReStructuredText
15 lines
338 B
ReStructuredText
Init Scripts
|
|
============
|
|
|
|
For Ubuntu with Upstart, the following can be used in ``/etc/init/suricata.conf``:
|
|
|
|
|
|
::
|
|
|
|
|
|
# suricata
|
|
description "Intrusion Detection System Daemon"
|
|
start on runlevel [2345]
|
|
stop on runlevel [!2345]
|
|
expect fork
|
|
exec suricata -D --pidfile /var/run/suricata.pid -c /etc/suricata/suricata.yaml -i eth1
|