X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;ds=sidebyside;f=ud-generate;h=7931ff6d55d3f3ceb1b25f0ae9212a1e93620dd6;hb=e5e831be77686bd3a4e86d5eb20506f6fea8c854;hp=c3eff77bb491f4d42672fc5ecef8081a61c6c9a9;hpb=05c6861e0202cb70a062df9efc33f9bcc2907b7c;p=mirror%2Fuserdir-ldap.git diff --git a/ud-generate b/ud-generate index c3eff77..7931ff6 100755 --- a/ud-generate +++ b/ud-generate @@ -70,6 +70,8 @@ IsDebianHost = re.compile(ConfModule.dns_hostmatch) isSSHFP = re.compile("^\s*IN\s+SSHFP") DNSZone = ".debian.net" Keyrings = ConfModule.sync_keyrings.split(":") +GitoliteSSHRestrictions = getattr(ConfModule, "gitolitesshrestrictions", None) + def safe_makedirs(dir): try: @@ -338,6 +340,34 @@ def GenShadowSudo(accounts, File, untrusted): raise Done(File, F, None) +# Generate the sudo passwd file +def GenSSHGitolite(accounts, File): + F = None + try: + OldMask = os.umask(0022) + F = open(File + ".tmp", "w", 0600) + os.umask(OldMask) + + if not GitoliteSSHRestrictions is None and GitoliteSSHRestrictions != "": + for a in accounts: + if not 'sshRSAAuthKey' in a: continue + + User = a['uid'] + prefix = GitoliteSSHRestrictions.replace('@@USER@@', User) + for I in a["sshRSAAuthKey"]: + if I.startswith('ssh-'): + line = "%s %s"%(prefix, I) + else: + line = "%s,%s"%(prefix, I) + line = Sanitize(line) + "\n" + F.write(line) + + # Oops, something unspeakable happened. + except: + Die(File, F, None) + raise + Done(File, F, None) + # Generate the shadow list def GenSSHShadow(global_dir, accounts): # Fetch all the users @@ -1101,6 +1131,7 @@ def generate_all(global_dir, ldap_conn): GenMarkers(accounts, global_dir + "markers") GenSSHKnown(host_attrs, global_dir + "ssh_known_hosts") GenHosts(host_attrs, global_dir + "debianhosts") + GenSSHGitolite(accounts, global_dir + "ssh-gitolite") GenDNS(accounts, global_dir + "dns-zone") GenZoneRecords(host_attrs, global_dir + "dns-sshfp") @@ -1193,6 +1224,9 @@ def generate_host(host, global_dir, accounts, ssh_files): if 'PRIVATE' in ExtraList: DoLink(global_dir, OutDir, "debian-private") + if 'GITOLITE' in ExtraList: + DoLink(global_dir, OutDir, "ssh-gitolite") + if 'WEB-PASSWORDS' in ExtraList: DoLink(global_dir, OutDir, "web-passwords") @@ -1215,6 +1249,7 @@ def generate_host(host, global_dir, accounts, ssh_files): posix.remove(target) except: pass + DoLink(global_dir, OutDir, "last_update.trace") l = make_ldap_conn() @@ -1238,20 +1273,24 @@ cache_last_mod = 0 try: fd = open(os.path.join(GenerateDir, "last_update.trace"), "r") - cache_last_mod=fd.read().strip() + cache_last_mod=fd.read().split() + try: + cache_last_mod = cache_last_mod[0] + except IndexError: + pass fd.close() except IOError, e: if e.errno == errno.ENOENT: pass else: raise e + if cache_last_mod >= last: + fd = open(os.path.join(GenerateDir, "last_update.trace"), "w") + fd.write("%s\n%s\n" % (last, int(time.time()))) + fd.close() sys.exit(0) -fd = open(os.path.join(GenerateDir, "last_update.trace"), "w") -fd.write(last) -fd.close() - # Fetch all the groups GroupIDMap = {} attrs = l.search_s(BaseDn, ldap.SCOPE_ONELEVEL, "gid=*",\ @@ -1275,12 +1314,16 @@ try: sys.stderr.write("Could not acquire lock %s.\n"%(lockf)) sys.exit(1) + tracefd = open(os.path.join(GenerateDir, "last_update.trace"), "w") generate_all(GenerateDir, l) + tracefd.write("%s\n%s\n" % (last, int(time.time()))) + tracefd.close() finally: if lock is not None: lock.release() + # vim:set et: # vim:set ts=3: # vim:set shiftwidth=3: