1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

r23713: Oops accidentially checked in the wrong file - sorry!

Michael
(This used to be commit ae23e6d04b8551e66b77995994a0c50cd880ea32)
This commit is contained in:
Michael Adam 2007-07-05 00:11:07 +00:00 committed by Gerald (Jerry) Carter
parent 459d01489f
commit 1d95e049bb

View File

@ -1,17 +0,0 @@
#!/usr/bin/perl
use strict;
my $dc = "192.168.45.44";
my $adminuser = "administrator";
my $adminpw = "geheim";
my $maxgroups = 5000;
my $startgroup = 0;
my $rpccli_cmd = "/usr/bin/rpcclient";
my $testuser = "testgroups";
for (my $num = $startgroup; $num <= $maxgroups; ++$num) {
my $group = sprintf "%s%.05d", "group", $num;
print "adding user $testuser to group $group\n";
system("net rpc -I $dc -U$adminuser\%$adminpw group addmem $group $testuser");
}