#!/bin/sh

if [ -z $(pidof squid) ]; then
  # squid not running
  exit 1
else
  # squid running
  exit 0
fi
