From 8b31e2e7bd0c9c5f207a6d05ff7fbbda79d59fdf Mon Sep 17 00:00:00 2001 From: Pieter Lexis Date: Mon, 16 Sep 2019 09:20:36 +0200 Subject: [PATCH] Drop 4.0, hello 4.2! (#61) --- README.md | 8 ++++---- defaults/main.yml | 10 +++++----- vars/main.yml | 9 +++++++++ 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 46cfced..452d6c5 100644 --- a/README.md +++ b/README.md @@ -32,17 +32,17 @@ By default, the PowerDNS Authoritative Server is installed from the software rep - { role: PowerDNS.pdns, pdns_install_repo: "{{ pdns_auth_powerdns_repo_master }}" -# Install the PowerDNS Authoritative Server from the '4.0.x' official repository +# Install the PowerDNS Authoritative Server from the '4.1.x' official repository - hosts: all roles: - { role: PowerDNS.pdns, - pdns_install_repo: "{{ pdns_auth_powerdns_repo_40 }}" + pdns_install_repo: "{{ pdns_auth_powerdns_repo_41 }}" -# Install the PowerDNS Authoritative Server from the '4.1.x' official repository +# Install the PowerDNS Authoritative Server from the '4.2.x' official repository - hosts: all roles: - { role: PowerDNS.pdns, - pdns_install_repo: "{{ pdns_auth_powerdns_repo_41 }}" + pdns_install_repo: "{{ pdns_auth_powerdns_repo_42 }}" ``` The examples above, show how to install the PowerDNS Authoritative Server from the official PowerDNS repositories diff --git a/defaults/main.yml b/defaults/main.yml index 8e95358..5fcf8ea 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -10,19 +10,19 @@ pdns_install_repo: "" # - { role: PowerDNS.pdns, # pdns_install_repo: "{{ pdns_auth_powerdns_repo_master }}" # -# To install the PowerDNS Authoritative Server from the '4.0.x' official repository +# To install the PowerDNS Authoritative Server from the '4.1.x' official repository # use the following playbook snippet # - hosts: all # roles: # - { role: PowerDNS.pdns, -# pdns_install_repo: "{{ pdns_auth_powerdns_repo_40 }}" -# -# To install the PowerDNS Authoritative Server from the '4.1.x' official repository +# pdns_install_repo: "{{ pdns_auth_powerdns_repo_41 }}" + +# To install the PowerDNS Authoritative Server from the '4.2.x' official repository # use the following playbook snippet # - hosts: all # roles: # - { role: PowerDNS.pdns, -# pdns_install_repo: "{{ pdns_auth_powerdns_repo_41 }}" +# pdns_install_repo: "{{ pdns_auth_powerdns_repo_42 }}" # # To make this role configure a custom repository and install the # PowerDNS Authoritative Server from it override the `pdns_install_repo` variable diff --git a/vars/main.yml b/vars/main.yml index 88797e7..901ecc5 100644 --- a/vars/main.yml +++ b/vars/main.yml @@ -26,3 +26,12 @@ pdns_auth_powerdns_repo_41: yum_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/auth-41" yum_debug_symbols_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/auth-41/debug" name: "powerdns-auth-41" + +pdns_auth_powerdns_repo_42: + apt_repo_origin: "repo.powerdns.com" + apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-auth-42 main" + gpg_key: "http://repo.powerdns.com/FD380FBB-pub.asc" + gpg_key_id: "9FAAA5577E8FCF62093D036C1B0C6205FD380FBB" + yum_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/auth-42" + yum_debug_symbols_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/auth-42/debug" + name: "powerdns-auth-42"