This file is indexed.

/usr/share/vim/addons/UltiSnips/bindzone.snippets is in vim-snippets 1.0.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
priority -50

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