From 14578a236699f68d3afc9ea3a79ddb00c5327785 Mon Sep 17 00:00:00 2001 From: Nick Anderson Date: Tue, 21 Feb 2012 23:59:08 -0600 Subject: [PATCH] Add bind zonefile snippets for creating a new zone, and inserting an A record --- UltiSnips/bindzone.snippets | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 UltiSnips/bindzone.snippets diff --git a/UltiSnips/bindzone.snippets b/UltiSnips/bindzone.snippets new file mode 100644 index 0000000..034ccde --- /dev/null +++ b/UltiSnips/bindzone.snippets @@ -0,0 +1,27 @@ +global !p +def newsoa(): + import datetime + now = datetime.datetime.now() + # return standard SOA formatted serial for today + return now.strftime("%Y%m%d00") +endglobal + +snippet zone "Bootstrap a new Bind zonefile" b +$TTL 86400 +@ IN SOA ${1:example.net}. ${2:hostmaster.$1}.( + `!p snip.rv = newsoa()`; serial + 21600; refresh every 6 hours + 3600; retry after one hour + 604800; expire after a week + 86400 ); minimum TTL of 1 day + + IN NS ns01.$1. + IN MX 10 mail.$1. + +ns01.$1 IN A +mail.$1 IN A +endsnippet + +snippet A "Insert A Record" b +${1:hostname} IN A ${2:ip} +endsnippet