mirror of
https://github.com/crowdsecurity/cs-firewall-bouncer.git
synced 2024-08-19 01:18:49 +03:00
9 lines
175 B
Bash
9 lines
175 B
Bash
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
BOUNCER="crowdsec-firewall-bouncer"
|
|
|
|
systemctl stop "$BOUNCER" || echo "cannot stop service"
|
|
systemctl disable "$BOUNCER" || echo "cannot disable service"
|