add dasel install, used to convert json to csv

This commit is contained in:
Matthew Saunders Brown 2024-02-06 10:31:16 -08:00
parent fa6719db54
commit 9f46179174

View File

@ -8,6 +8,12 @@
DEBIAN_FRONTEND=noninteractive apt-get -y install pip DEBIAN_FRONTEND=noninteractive apt-get -y install pip
pip install certbot-dns-powerdns pip install certbot-dns-powerdns
# Install dasel from binary. Used to convert json data to csv
wget --quiet --output-document=/usr/local/bin/dasel https://github.com/TomWright/dasel/releases/download/v2.5.0/dasel_linux_amd64
chmod 755 /usr/local/bin/dasel
# one liner to automatically get latest version. could also be used to update existing install
# curl -sSLf "$(curl -sSLf https://api.github.com/repos/tomwright/dasel/releases/latest | grep browser_download_url | grep linux_amd64 | grep -v .gz | cut -d\" -f 4)" -L -o /usr/local/bin/dasel && chmod +x /usr/local/bin/dasel
if [[ ! -f /root/.pdns-credentials.ini ]]; then 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_url =" > /root/.pdns-credentials.ini
echo "certbot_dns_powerdns:dns_powerdns_api_key =" >> /root/.pdns-credentials.ini echo "certbot_dns_powerdns:dns_powerdns_api_key =" >> /root/.pdns-credentials.ini