Displaying 7 results from an estimated 7 matches for "grouprid".
Did you mean:
group_id
2011 Sep 09
3
Can't add users to well known groups...
I created the well known group Domain Admins pointing to a local group,
but I am not able to add users to the group -- it claims I can only add
users to
local or global groups...
But I only see local, domain ,well-known, builtin.
There are no global groups unless one would include all groups that are
not local (i.e. domain, well-known, and builtin)....
So why doesn't it want to let me add
2002 May 14
0
Bugfix for idealx smbldap-tools
...sswd.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;
if (defined($Options{'x'})) {
- $userGroupRid = sprint("%x", $userGroupRid);
+ $userGroupRid = sprintf("%x", $userGroupRid);
}
# Read only first @ARGV
my $userName = $ARGV[0];
@@ -153,6 +153,9...
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 Feb 26
0
[help] Can't Join Samba 2.2.3a to TNG+LDAP
...806F43221CE1344
lmPassword: B874DAD114582F99AAD3B435B51404EE
uidNumber: 3556
pwdLastSet: 00000000
uid: arena$
objectClass: sambaAccount
objectClass: top
objectClass: account
script: dummy.bat
ntuid: arena$
acctFlags: [W ]
cn: arena$
description: Samba Machine Account
rid: de4
pwdCanChange: 00000000
grouprid: 201
2009 Jun 26
2
smblap-useradd problem
...start to rise :/
Here is the problem that makes me crazy for 15 days now :
----
fano2:~# smbldap-useradd -a ploup
Can't call method "get_value" on an undefined value at /usr/sbin/smbldap-
useradd line 232.
---
The related lines in smbldap-useradd script are :
----
229 # as grouprid we use the value of the sambaSID attribute for
230 # group of gidNumber=$userGidNumber
231 $group_entry = read_group_entry_gid($userGidNumber);
232 $userGroupSID = $group_entry->get_value('sambaSID');
233 unless ($userGroupSID) {
234 print "Error: SID not set for...
2005 Aug 11
4
smbldap-tools unresovled problem.
...ir 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
$group_entry = read_group_entry_gid($userGidNumber);
@@ -265,6 +265,28 @@
$modify->code && die "failed to add entry: ", $modify->error ;
}
+
+ if (defined($Options{'w'}...
2003 Nov 11
1
Samba 3 Redhat 9 Openldap doc
...erGidNumber = $GID_START;
# $createGroup = 1;
} else {
# user will have gid = $_defaultUserGid
$userGidNumber = $_defaultUserGid;
}
} else {
my $gid;
if (($gid = parse_group($userGidNumber)) < 0) {
print "$0: unknown group $userGidNumber\n";
exit (6);
}
$userGidNumber = $gid;
}
# as grouprid we use 2 * gid + 1001
my $userGroupRid = 2 * $userGidNumber + 1001;
if (defined($Options{'x'})) {
$userGroupRid = sprint("%x", $userGroupRid);
}
# Read only first @ARGV
my $userName = $ARGV[0];
# untaint $userName (can finish with one or two $)
if ($userName =~ /^([\w -]+\$?)$/)...