Changelog: https://github.com/crowdsecurity/cs-firewall-bouncer/releases/tag/v0.0.28 PR: 274213
11 lines
277 B
Bash
11 lines
277 B
Bash
#!/bin/sh
|
|
|
|
case $2 in
|
|
"POST-INSTALL")
|
|
if [ -e /var/run/crowdsec_firewall.running ]; then
|
|
service crowdsec_firewall start
|
|
rm -f /var/run/crowdsec_firewall.running
|
|
fi
|
|
;;
|
|
esac
|