30 lines
629 B
Bash
Executable File
30 lines
629 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# pdns-tools
|
|
# https://git.stack-source.com/msb/pdns-tools
|
|
# Copyright (c) 2024 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# load include file
|
|
source /usr/local/sbin/pdns.sh
|
|
|
|
help()
|
|
{
|
|
/usr/local/sbin/pdns-rr-del.sh -p $thisfilename -h
|
|
}
|
|
|
|
pdns:getoptions "$@"
|
|
|
|
# check for zone
|
|
if [[ -z $zone ]]; then
|
|
echo "zone is required"
|
|
exit 1
|
|
fi
|
|
|
|
zone_exists=$(/usr/local/bin/vdns-zone-ext.sh -z $zone)
|
|
if [[ $zone_exists = "true" ]]; then
|
|
/usr/local/sbin/pdns-rr-del.sh $@
|
|
else
|
|
echo Zone $zone not found.
|
|
fi
|