mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 12:45:20 +03:00
13 lines
251 B
Bash
13 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
|
|
}
|