8 lines
86 B
Bash
Raw Normal View History

2025-06-16 20:25:32 +02:00
#!/bin/sh
if systemctl is-active --quiet haproxy; then
exit 0
else
exit 1
fi