Displaying 2 results from an estimated 2 matches for "group_gid".
Did you mean:
group_fd
2003 Nov 25
0
Problems using smbldaptools
...at
/usr/share/samba3/scripts//smbldap_tools.pm line 494, <DATA> line 283.
It complains about authentication. I also took a look at line 494:
$modify->code && die "failed to add entry: ", $modify->error ;
Here is what is above that:
# $gid = group_add($groupname, $group_gid, $force_using_existing_gid)
sub group_add
{
my ($gname, $gid, $force) = @_;
my $nscd_status = system "/etc/init.d/nscd status >/dev/null 2>&1";
if ($nscd_status == 0) {
system "/etc/init.d/nscd stop > /dev/null 2>&1";...
2002 May 14
0
Bugfix for idealx smbldap-tools
...00000000 +0000
+++ modified/smbldap_tools.pm 2002-05-14 08:15:01.000000000 +0000
@@ -337,7 +337,7 @@
}
my $dn = get_dn_from_line($dn_line);
- system "$ldapdelete $dn >/dev/null";
+ system "$ldapdelete '$dn'";
}
# $success = group_add($groupname, $group_gid, $force_using_existing_gid)
diff -ur sbin/smbldap-useradd.pl modified/smbldap-useradd.pl
--- sbin/smbldap-useradd.pl 2002-05-14 08:05:54.000000000 +0000
+++ modified/smbldap-useradd.pl 2002-05-14 08:15:52.000000000 +0000
@@ -54,7 +54,7 @@
print " -n do not create a group\n";
print &q...