Skip to content

Instantly share code, notes, and snippets.

@taikii
taikii / apache-balancer.sh
Created October 14, 2021 02:14 — forked from SeonghoonKim/apache-balancer.sh
Apache HTTPD balancer-manager control script
#! /bin/sh
# Set up a default search path
PATH="/usr/bin:/bin"
CURL=`which curl`
if [ -z "$CURL" ]; then
echo "curl not found"
exit 1
fi