1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 12:45:20 +03:00
aports/main/sshguard/sshguard.initd
Henrik Riomar 3008e8382c
main/sshguard: after firewall
switch from iptables to firewall in depends
2022-08-29 08:28:21 +02:00

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
}