-
-
Notifications
You must be signed in to change notification settings - Fork 51
Add support for YAML config #234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 5 commits
c944ca6
01cd3b5
6d85fd3
52160db
5a2dc30
c945b7e
ed73ace
edd9493
ea83934
865f54a
35ccd3d
11e1546
b40a488
b953689
6111c36
6d5d96a
f6fcdb5
8241c11
9094d9a
2a6a0e9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,14 @@ | ||
| --- | ||
| lookup_options: | ||
| powerdns::recursor_local_config: | ||
| merge: deep | ||
| powerdns::authoritative_package_ensure: installed | ||
| powerdns::authoritative_extra_packages_ensure: installed | ||
| powerdns::authoritative_version: '4.9' | ||
| powerdns::authoritative_version: "4.9" | ||
| powerdns::recursor_package_ensure: installed | ||
| powerdns::recursor_version: '5.0' | ||
| powerdns::recursor_version: "5.0" | ||
| powerdns::recursor_user: pdns | ||
| powerdns::recursor_group: pdns | ||
| powerdns::recursor_file_owner: root | ||
| powerdns::recursor_file_group: "%{lookup('powerdns::recursor_group')}" | ||
| powerdns::recursor_use_yaml: false | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| powerdns::mysql_charset: utf8mb3 | ||
| powerdns::mysql_collate: utf8mb3_general_ci | ||
| powerdns::authoritative_version: "5.0" | ||
| powerdns::recursor_version: "5.3" | ||
| powerdns::recursor_use_yaml: true | ||
|
||
| powerdns::recursor_config_includedir: "%{lookup('powerdns::recursor_configdir')}/recursor.d" | ||
| powerdns::recursor_forward_zones_file: "%{lookup('powerdns::recursor_configdir')}/forward-zones.yml" | ||
| powerdns::recursor_local_config_file: "%{lookup('powerdns::recursor_config_includedir')}/00-local.yml" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| powerdns::mysql_charset: utf8 | ||
| powerdns::mysql_collate: utf8_general_ci | ||
| powerdns::authoritative_version: "5.0" | ||
| powerdns::recursor_version: "5.3" | ||
| powerdns::recursor_use_yaml: true | ||
| powerdns::recursor_config_includedir: "%{lookup('powerdns::recursor_configdir')}/recursor.d" | ||
| powerdns::recursor_forward_zones_file: "%{lookup('powerdns::recursor_configdir')}/forward-zones.yml" | ||
| powerdns::recursor_local_config_file: "%{lookup('powerdns::recursor_config_includedir')}/00-local.yml" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
deric marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| powerdns::authoritative_version: "5.0" | ||
| powerdns::recursor_version: "5.3" | ||
| powerdns::recursor_use_yaml: true | ||
| powerdns::recursor_config_includedir: "%{lookup('powerdns::recursor_configdir')}/recursor.d" | ||
| powerdns::recursor_forward_zones_file: "%{lookup('powerdns::recursor_configdir')}/forward-zones.yml" | ||
| powerdns::recursor_local_config_file: "%{lookup('powerdns::recursor_config_includedir')}/00-local.yml" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| powerdns::authoritative_version: "5.0" | ||
| powerdns::recursor_version: "5.3" | ||
| powerdns::recursor_use_yaml: true | ||
| powerdns::recursor_config_includedir: "%{lookup('powerdns::recursor_configdir')}/recursor.d" | ||
| powerdns::recursor_forward_zones_file: "%{lookup('powerdns::recursor_configdir')}/forward-zones.yml" | ||
| powerdns::recursor_local_config_file: "%{lookup('powerdns::recursor_config_includedir')}/00-local.yml" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,6 +53,7 @@ | |
| { | ||
| "operatingsystem": "Ubuntu", | ||
| "operatingsystemrelease": [ | ||
| "22.04", | ||
| "24.04" | ||
| ] | ||
| }, | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.