This commit is contained in:
mwiegand 2021-06-20 11:57:30 +02:00
parent e29e8e2964
commit 946b6c439a
2 changed files with 11 additions and 11 deletions

View file

@ -1,15 +1,19 @@
<%!
def column_width(column, table):
return max(map(lambda row: len(row[column]), table)) if table else 0
%>\
$TTL 600
@ IN SOA ns.sublimity.de. admin.sublimity.de. (
2020080302 ;Serial
1200 ;Refresh
600 ;Retry
1209600 ;Expire
600 ;Negative response caching TTL
@ IN SOA ns.sublimity.de. admin.sublimity.de. (
2020080302 ;Serial
1200 ;Refresh
600 ;Retry
1209600 ;Expire
600 ;Negative response caching TTL
)
% for record in sorted(records, key=lambda r: (r['name'], r['type'], r['value'])):
% for part in (record['value'][i:i+255] for i in range(0, len(record['value']), 255)):
${record['name'].ljust(column_width('name', records))} \
${record['name'].rjust(column_width('name', records))} \
IN \
${record['type'].ljust(column_width('type', records))} \
"${part}"

View file

@ -6,15 +6,11 @@ files['/etc/default/bind9'] = {
'source': 'defaults',
}
def column_width(column, table):
return max(map(lambda row: len(row[column]), table)) if table else 0
for zone, records in node.metadata.get('bind/zones').items():
files[f'/var/lib/bind/db.{zone}'] = {
'source': 'db',
'content_type': 'mako',
'context': {
'records': records,
'column_width': column_width,
}
}