powerdns-tools/install.sh

21 lines
665 B
Bash
Raw Normal View History

2022-01-21 13:38:32 -08:00
#!/bin/bash
apt install pip
pip install certbot-dns-powerdns
if [[ ! -f /root/.pdns-credentials.ini ]]; then
echo "certbot_dns_powerdns:dns_powerdns_api_url =" > /root/.pdns-credentials.ini
echo "certbot_dns_powerdns:dns_powerdns_api_key =" >> /root/.pdns-credentials.ini
chmod 640 /root/.pdns-credentials.ini
echo "Update /root/.pdns-credentials.ini with your settings (this is to be used with certbot-dns-powerdns)."
fi
2022-01-21 13:38:32 -08:00
chmod 755 bin/*
cp bin/* /usr/local/bin/
if [[ ! -f /usr/local/etc/pdns.conf ]]; then
cp etc/pdns.conf /usr/local/etc/pdns.conf
chmod 640 /usr/local/etc/pdns.conf
echo "Update /usr/local/etc/pdns.conf with your settings."
2022-01-21 13:38:32 -08:00
fi