Skip to content

Commit

Permalink
Remove 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterlexis committed Jun 21, 2021
1 parent a7ec425 commit 629356e
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 183 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- '2.10'
- '2.11'
scenario:
- pdns-42
- pdns-43
- pdns-44
- pdns-master
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.x' official repository
# Install the PowerDNS Authoritative Server from the '4.3.x' official repository
- hosts: all
roles:
- { role: PowerDNS.pdns,
pdns_install_repo: "{{ pdns_auth_powerdns_repo_41 }}"
pdns_install_repo: "{{ pdns_auth_powerdns_repo_43 }}"

# Install the PowerDNS Authoritative Server from the '4.2.x' official repository
# Install the PowerDNS Authoritative Server from the '4.4.x' official repository
- hosts: all
roles:
- { role: PowerDNS.pdns,
pdns_install_repo: "{{ pdns_auth_powerdns_repo_42 }}"
pdns_install_repo: "{{ pdns_auth_powerdns_repo_44 }}"
```
The examples above, show how to install the PowerDNS Authoritative Server from the official PowerDNS repositories
Expand Down Expand Up @@ -345,7 +345,7 @@ To test all the scenarios run

To run a custom molecule command

$ tox -e py27-ansible27 -- molecule test -s pdns-42
$ tox -e ansible210 -- molecule test -s pdns-44

## License

Expand Down
9 changes: 0 additions & 9 deletions molecule/pdns-42/converge.yml

This file was deleted.

88 changes: 0 additions & 88 deletions molecule/pdns-42/molecule.yml

This file was deleted.

44 changes: 0 additions & 44 deletions molecule/resources/tests/repo-42/test_repo_42.py

This file was deleted.

7 changes: 0 additions & 7 deletions molecule/resources/vars/pdns-repo-42.yml

This file was deleted.

30 changes: 1 addition & 29 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,33 +9,6 @@ pdns_auth_powerdns_repo_master:
yum_debug_symbols_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/auth-master/debug"
name: "powerdns-auth-master"

pdns_auth_powerdns_repo_40:
apt_repo_origin: "repo.powerdns.com"
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-auth-40 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-40"
yum_debug_symbols_repo_baseurl: "http://repo.powerdns.com/centos/$basearch/$releasever/auth-40/debug"
name: "powerdns-auth-40"

pdns_auth_powerdns_repo_41:
apt_repo_origin: "repo.powerdns.com"
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-auth-41 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-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"

pdns_auth_powerdns_repo_43:
apt_repo_origin: "repo.powerdns.com"
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-auth-43 main"
Expand All @@ -57,6 +30,5 @@ pdns_auth_powerdns_repo_44:
default_pdns_service_overrides: >-
{{ { 'User' : pdns_user
, 'Group' : pdns_group
} if _pdns_running_version is version('4.3', operator='ge')
else {}
}
}}

0 comments on commit 629356e

Please sign in to comment.