blob: 07c13b3e45c65361aa8749ce3ac50f6238e466fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# sshguard.conf -- SSHGuard configuration
# Based on /usr/doc/sshguard-2.4.2/examples/sshguard.conf.sample
# Full path to backend executable.
BACKEND="/usr/libexec/sshg-fw-iptables"
# Space-separated list of log files to monitor.
FILES="/var/log/messages"
# Do not provide PID file path.
# It is handled by daemon(1).
PID_FILE=
|