From 00b676e8d0ba74af161e7efd8fbe7df6ccfa7271 Mon Sep 17 00:00:00 2001 From: Kale Date: Mon, 16 Aug 2021 08:11:08 -0700 Subject: [PATCH] too much cache time so i reduce this by 7:59:30 Hours --- maker_rpz.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maker_rpz.py b/maker_rpz.py index d3080da..e487b6a 100644 --- a/maker_rpz.py +++ b/maker_rpz.py @@ -24,9 +24,9 @@ def RPZbuilding(excluded,incoming,output): f.write('; Format : RPZ\n') f.write('; Licenses : MIT\n') f.write('; Compiled Date : ' + str(date) +'\n\n') - f.write('$TTL 12h\n') + f.write('$TTL 30\n') f.write('@ IN SOA localhost. root.localhost. (1 6h 1h 1w 2h)\n') - f.write(' IN NS localhost.\n\n') + f.write(' NS localhost.\n\n') for line in lines: if line.strip() and not line in exclude and not line.startswith(';'): f.write('\n'.join([line + ' CNAME .\n'])) and f.write('\n'.join(['*.'+line+' CNAME .\n']))