Skip to content

Instantly share code, notes, and snippets.

View skroczek's full-sized avatar
👋
Still working from home.

Sebastian Kroczek skroczek

👋
Still working from home.
View GitHub Profile
@skroczek
skroczek / apache-balancer.sh
Last active January 20, 2016 11:12 — forked from SeonghoonKim/apache-balancer.sh
Apache HTTPD balancer-manager control script
#! /bin/bash
# Set up a default search path
PATH="/usr/bin:/bin"
CURL=`which curl`
if [ -z "$CURL" ]; then
echo "curl not found"
exit 1
fi