Current File : //scripts/zonecheck
#!/bin/sh

IPA=`/usr/bin/dig $1 @$2 +short`

if [ -z "$IPA" ]; then
    exit 1;
fi

exit 0;