search for: userrid

Displaying 5 results from an estimated 5 matches for "userrid".

Did you mean: userid
2002 May 14
0
Bugfix for idealx smbldap-tools
...cos\n"; + print " -c Comment/gecos\n"; print " -m creates home directory and copies /etc/skel\n"; print " -k skeleton dir (with -m)\n"; print " -P ends by invoking smbldap-passwd.pl\n"; @@ -95,7 +95,7 @@ # as rid we use 2 * uid + 1000 my $userRid = 2 * $userUidNumber + 1000; if (defined($Options{'x'})) { - $userRid= sprint("%x", $userRid); + $userRid= sprintf("%x", $userRid); } my $createGroup = 0; @@ -131,7 +131,7 @@ # as grouprid we use 2 * gid + 1001 my $userGroupRid = 2 * $userGidNumber + 1001;...
2003 Oct 07
1
userGroupRid and groupmapping
Hi ! When I create a user with samba-ldap tools, the userRid is calculated if the -x option is set. The userGroupRid is calculated too. But is the groumapping is enabled, the SambaPrimaryGroupSID not correspond with SambaSID of groupmapping Example : Groupe "Domain Users" : gidNumber 100 displayName Domain Users objectClass sambaGroupMapp...
2006 Jun 15
3
UNIX accounts can create
Anybody know whats wrong when the commands smbldap-useradd or populate work fine with ldap but cant create unix/linux accounts ???? Pelase Help. Jorge __________________________________________________ Correo Yahoo! Espacio para todos tus mensajes, antivirus y antispam ?gratis! ?Abr? tu cuenta ya! - http://correo.yahoo.com.ar
2003 Nov 11
1
Samba 3 Redhat 9 Openldap doc
...rt $UID_START.\n"; #} elsif (getpwuid($userUidNumber)) { # die "Uid already exists.\n"; } #finial #printf "finial UID start $UID_START.\n"; if ($nscd_status == 0) { system "/etc/init.d/nscd start > /dev/null 2>&1"; } # as rid we use 2 * uid + 1000 my $userRid = 2 * $userUidNumber + 1000; if (defined($Options{'x'})) { $userRid= sprint("%x", $userRid); } my $createGroup = 0; my $userGidNumber = $Options{'g'}; # gid not specified ? if (!defined($userGidNumber)) { # windows machine => $_defaultComputerGid if (defined($Options{&...
2005 Aug 11
4
smbldap-tools unresovled problem.
...-useradd,v 1.27 2005/05/27 14:21:00 jtournier Exp $ +# $Id: smbldap-useradd,v 1.26 2005/02/26 11:12:25 jtournier Exp $ # # This code was developped by IDEALX (http://IDEALX.org/) and # contributors (their names can be found in the CONTRIBUTORS file). @@ -164,7 +164,7 @@ my $userGroupSID; my $userRid; my $user_sid; -if (defined $Options{'a'} or defined $Options{'i'}) { +if (defined $Options{'a'} or defined $Options{'i'} or defined $Options{'w'}) { # as grouprid we use the value of the sambaSID attribute for # group of gidNumber=$userGidNumber $g...