-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from pieterlexis/centos-8
Centos 8
- Loading branch information
Showing
11 changed files
with
112 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
- name: allow mysql connect from pdns in selinux | ||
seboolean: | ||
name: pdns_can_network_connect_db | ||
state: yes | ||
persistent: yes | ||
when: "pdns_mysql_databases_credentials | length > 0" | ||
|
||
- name: allow pdns to bind to udp high ports | ||
seport: | ||
ports: 10000-20000 | ||
proto: udp | ||
setype: dns_port_t | ||
state: present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
|
||
# The name of the PowerDNS Authoritative Server package | ||
default_pdns_package_name: "pdns" | ||
|
||
# Packages needed to install MySQL | ||
pdns_mysql_packages: | ||
- mariadb | ||
- mariadb-server | ||
- mariadb-connector-c | ||
- python3-PyMySQL | ||
- perl-DBD-MySQL | ||
|
||
# The name of the PowerDNS Authoritative Server debug package | ||
default_pdns_debug_symbols_package_name: "pdns-debuginfo" | ||
|
||
# List of PowerDNS Authoritative Server backends packages on RedHat | ||
default_pdns_backends_packages: | ||
geo: pdns-backend-geo | ||
geoip: pdns-backend-geoip | ||
gmysql: pdns-backend-mysql | ||
gpgsql: pdns-backend-postgresql | ||
gsqlite3: pdns-backend-sqlite | ||
ldap: pdns-backend-ldap | ||
lmdb: pdns-backend-lmdb | ||
lua: pdns-backend-lua | ||
mydns: pdns-backend-mydns | ||
pipe: pdns-backend-pipe | ||
remote: pdns-backend-remote | ||
tinydns: pdns-backend-tinydns | ||
|
||
# The directory where the PowerDNS Authoritative Server configuration is located | ||
default_pdns_config_dir: "/etc/pdns" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters