/usr/share/zentyal/stubs/dns/keys.mas is in zentyal-dns 2.3.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 | <%doc>
Template to write down the TSIG keys for zones whose update is done
dynamically using external programs
Parameters:
keys - Hash indexed by key name, stores the TSIG secret
</%doc>
<%args>
%keys
</%args>
# Symmetric TSIG keys to update dynamic zones
% foreach my $keyName (keys(%keys)) {
key "<% $keyName %>." {
algorithm HMAC-MD5;
secret "<% $keys{$keyName} %>";
};
% }
|