X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-generate;h=6be531dd746e700dcf2ab758b08004ffdca7fe35;hb=566b90f55eb6ebbede83ae9ac8ed6d466bc19ec3;hp=0ba6fa9f2eb8401271ea445f962e4bca9d3171fd;hpb=b4ab56c86125ee342523bc4fedf65c76f6f0d2cd;p=mirror%2Fuserdir-ldap.git diff --git a/ud-generate b/ud-generate index 0ba6fa9..6be531d 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-2003 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 *; @@ -570,13 +589,15 @@ while(1): GroupList[str(GroupIDMap[I])] = None; Allowed = GroupList; + if Allowed == {}: + Allowed = None CurrentHost = Split[0]; sys.stdout.flush(); GenPasswd(l,OutDir+"passwd",Split[1]); sys.stdout.flush(); GenGroup(l,OutDir+"group"); - if CurrentHost == "haydn.debian.org" or CurrentHost == "costa.debian.org": + if ExtraList.has_key("[UNTRUSTED]"): continue; GenShadow(l,OutDir+"shadow");