A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
17 lines
509 B
Bash
17 lines
509 B
Bash
#!/bin/bash
|
|
|
|
appCrowdSecStatus() {
|
|
echo "=== crowdsec.service ==="
|
|
systemctl status crowdsec --no-pager --lines=5 2>&1 | head -15
|
|
echo
|
|
echo "=== crowdsec-firewall-bouncer.service ==="
|
|
systemctl status crowdsec-firewall-bouncer --no-pager --lines=5 2>&1 | head -15
|
|
echo
|
|
echo "=== installed collections ==="
|
|
sudo cscli collections list -o human 2>&1 | head -30
|
|
echo
|
|
echo "=== machines + bouncers ==="
|
|
sudo cscli machines list 2>&1
|
|
sudo cscli bouncers list 2>&1
|
|
}
|