Compare commits

...

3 Commits
v0.1 ... master

Author SHA1 Message Date
1487cfdd70
Escape zone names
Support zones containing slashes in their name by urlencoding the zone
name added to the API URL.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2024-10-20 21:49:09 +02:00
3f818e8ccb
Improve README formatting
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2023-11-12 17:51:14 +01:00
850556ab7d
Add files for packaging
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2023-11-12 17:44:20 +01:00
5 changed files with 47 additions and 1 deletions

View File

@ -1,7 +1,13 @@
# pdns-genrev
Tool to generate PTR records in reverse zones based off A/AAAA records in forward zones.
## Configuration
Requires the following environment variables to be set:
`GENREV_KEY` - the API key defined in the PowerDNS configuration
`GENREV_URL` - URL to the PowerDNS webserver, without a path (for example `http://[::1]:8081`)
`GENREV_ZONES` - comma separated list of forward zones to scan

View File

@ -45,7 +45,9 @@ def _get(path):
def _iterate_zone(zone, types, only_records=False):
result = {}
records = []
this_zone = _get(f'zones/{zone}')
escapedzone = requests.utils.quote(zone, safe='')
this_zone = _get(f'zones/{escapedzone}')
for rrset in this_zone['rrsets']:
if rrset['type'] in types:

View File

@ -1,7 +1,11 @@
# This file is part of the pdns-genrev package
# Author: Georg Pfuetzenreuter <mail+opensuse@georg-pfuetzenreuter.net>
[Unit]
Description=PowerDNS reverse zone update
[Service]
Type=oneshot
User=pdns-genrev
EnvironmentFile=/etc/sysconfig/pdns-genrev
ExecStart=/usr/bin/pdns-genrev $ARGS

View File

@ -0,0 +1,33 @@
# This file is part of the pdns-genrev package
# Author: Georg Pfuetzenreuter <mail+opensuse@georg-pfuetzenreuter.net>
## Description: pdns-genrev configuration
## Type: string
## Default: not set
#
# PowerDNS API Key
#
GENREV_KEY=""
## Type: string
## Default: "http://[::1]:8081"
#
# PowerDNS web server
#
GENREV_URL="http://[::1]:8081"
## Type: string
## Default: not set
#
# Comma separated list of forward DNS zones
#
GENREV_ZONES=""
## Type: string
## Default: "--wet"
#
# Command line arguments to pass
# Add "--notify" here if primary/secondary replication is used
#
ARGS="--wet"

View File

@ -0,0 +1 @@
u pdns-genrev - "PowerDNS reverse zone helper" /var/lib/empty -