mb-admin/scripts/relay/check_relay_status.sh

8 lines
110 B
Bash
Raw Normal View History

2024-09-18 15:44:48 +00:00
#!/bin/bash
if php -m | grep -q relay; then
echo "Relay is enabled"
else
echo "Relay is disabled"
fi