From: Stephen Gran Date: Sun, 9 Aug 2009 21:40:31 +0000 (+0000) Subject: give the function a better name X-Git-Tag: userdir-ldap-0.3.71~12 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=360ebdcf8443f1fc2b4ca03a4ac3246d078dc8f6 give the function a better name Signed-off-by: Stephen Gran --- diff --git a/ud-generate b/ud-generate index 158c3f6..887176c 100755 --- a/ud-generate +++ b/ud-generate @@ -853,8 +853,8 @@ def ExtractDNSInfo(x): return DNSInfo -# Generate the DNS SSHFP records -def GenSSHFP(File): +# Generate the DNS records +def GenZoneRecords(File): F = None try: F = open(File + ".tmp", "w") @@ -1184,7 +1184,7 @@ for host in HostAttrs: if 'DNS' in ExtraList: GenDNS(OutDir + "dns-zone") - GenSSHFP(OutDir + "dns-sshfp") + GenZoneRecords(OutDir + "dns-sshfp") if 'AUTHKEYS' in ExtraList: DoLink(GlobalDir, OutDir, "authorized_keys")