powerdns-tools/install.sh
Matthew Saunders Brown 4e140cfb5f initial script import
2022-01-21 13:38:32 -08:00

11 lines
264 B
Bash
Executable File

#!/bin/bash
chmod 755 bin/*
cp bin/* /usr/local/bin/
if [[ ! -f /usr/local/etc/pdns.conf ]]; then
chmod 640 etc/pdns.conf
cp etc/pdns.conf /usr/local/etc/pdns.conf
echo "Install complete, but sure to update /usr/local/etc/pdns.conf with your settings."
fi