#!/bin/bash

if (nc -z 127.0.0.1 89); then
	apache-top -u http://127.0.0.1:89/server-status
	exit 0
else
	echo "Admin Apache is not running"
	exit 3
fi
