Skip to content

Instantly share code, notes, and snippets.

@rebine
rebine / apache-balancer.sh
Created September 20, 2017 09:08 — 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