mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-17 05:05:14 +03:00
Crowdsec firewall bouncer, which enforces crowdsec decissions through various firewall backends.
10 lines
222 B
Bash
10 lines
222 B
Bash
#!/sbin/openrc-run
|
|
|
|
command=/usr/bin/crowdsec-firewall-bouncer
|
|
command_args="-c /etc/crowdsec/bouncers/crowdsec-firewall-bouncer.yaml"
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
command_background=true
|
|
|
|
depend() {
|
|
after firewall
|
|
}
|