mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 00:02:17 +01:00
14 lines
251 B
Bash
14 lines
251 B
Bash
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
|
|
name="SSHGuard"
|
|
description="Protects hosts from brute-force attacks against SSH and other services"
|
|
command="/usr/sbin/sshguard"
|
|
|
|
command_args="$SSHGUARD_OPTS"
|
|
|
|
depend() {
|
|
after firewall
|
|
use logger
|
|
}
|