X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-generate;h=971fec208f89767d2608cb47202952cad01aae29;hb=07e061d6afac847cadcd9aac7a964a0cf269ae90;hp=0d65457ee48ad0007d34c7ea5edc95945cfb9388;hpb=1f2611a526a8fd85a8dc57f443f56487686408d6;p=mirror%2Fuserdir-ldap.git diff --git a/ud-generate b/ud-generate index 0d65457..971fec2 100755 --- a/ud-generate +++ b/ud-generate @@ -2,6 +2,25 @@ # -*- mode: python -*- # Generates passwd, shadow and group files from the ldap directory. +# Copyright (c) 2000-2001 Jason Gunthorpe +# Copyright (c) 2001-2005 Ryan Murray +# Copyright (c) 2003-2004 James Troup +# Copyright (c) 2004-2005 Joey Schulze +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + import string, re, time, ldap, getopt, sys, os, pwd, posix, socket; from userdir_ldap import *; @@ -389,6 +408,10 @@ def GenDNS(l,File,HomePrefix): for x in PasswdAttrs: if x[1].has_key("dnsZoneEntry") == 0: continue; + + # If the account has no PGP key, do not write it + if x[1].has_key("keyFingerPrint") == 0: + continue; try: F.write("; %s\n"%(EmailAddress(x))); for z in x[1]["dnsZoneEntry"]: @@ -440,6 +463,10 @@ def GenBSMTP(l,File,HomePrefix): for x in PasswdAttrs: if x[1].has_key("dnsZoneEntry") == 0: continue; + + # If the account has no PGP key, do not write it + if x[1].has_key("keyFingerPrint") == 0: + continue; try: for z in x[1]["dnsZoneEntry"]: Split = string.split(string.lower(z)); @@ -464,7 +491,7 @@ def GenBSMTP(l,File,HomePrefix): raise; Done(File,F,None); -# Generate the shadow list +# Generate the ssh known hosts file def GenSSHKnown(l,File): F = None; try: @@ -498,6 +525,32 @@ def GenSSHKnown(l,File): raise; Done(File,F,None); +# Generate the debianhosts file (list of all IP addresses) +def GenHosts(l,File): + F = None; + try: + OldMask = os.umask(0022); + F = open(File + ".tmp","w",0644); + os.umask(OldMask); + + # Fetch all the hosts + HostNames = l.search_s(HostBaseDn,ldap.SCOPE_ONELEVEL,"hostname=*",\ + ["hostname"]); + + if HostNames == None: + raise "No Hosts"; + + for x in HostNames: + if x[1].has_key("hostname") == 0: + continue; + Host = GetAttr(x,"hostname"); + Addr = socket.gethostbyname(Host); + F.write(Addr + "\n"); + # Oops, something unspeakable happened. + except: + Die(File,F,None); + raise; + Done(File,F,None); # Connect to the ldap server l = ldap.open(LDAPServer); @@ -539,6 +592,7 @@ GenAllForward(l,GlobalDir+"mail-forward.cdb"); GenMarkers(l,GlobalDir+"markers"); GenPrivate(l,GlobalDir+"debian-private"); GenSSHKnown(l,GlobalDir+"ssh_known_hosts"); +GenHosts(l,GlobalDir+"debianhosts"); # Compatibility. GenForward(l,GlobalDir+"forward-alias"); @@ -570,6 +624,8 @@ while(1): GroupList[str(GroupIDMap[I])] = None; Allowed = GroupList; + if Allowed == {}: + Allowed = None CurrentHost = Split[0]; sys.stdout.flush(); @@ -585,6 +641,7 @@ while(1): DoLink(GlobalDir,OutDir,"markers"); DoLink(GlobalDir,OutDir,"mail-forward.cdb"); DoLink(GlobalDir,OutDir,"ssh_known_hosts"); + DoLink(GlobalDir,OutDir,"debianhosts"); # Compatibility. DoLink(GlobalDir,OutDir,"forward-alias");