[Perl] Zentyal LDAP Passwords change

This is a small script I have done today in Zentyal that allows you to change the passwords of all users in LDAP. It creates a file /tmp/usuarios.csv with the users and their new passwords

01#!/usr/bin/perl
02use strict;
03use warnings;
04use EBox;
05use EBox::UsersAndGroups;
06use EBox::Global;
07use EBox::Util::Random;
08EBox::init();
09 
10my $salida ="/tmp/users.csv";
11open (OUT,">$out") || die "ERROR: Can't create or write to file $out\n";
12my $users = EBox::Global->modInstance('users');
13my @userlist = @{$users->users()   }  ;
14foreach my $user (@userlist) {
15        my $password;
16        $password =  EBox::Util::Random::generate(8);
17        print OUT $user->name()." ". $password."\n";
18        $user->changePassword($password,0)
19}
20  close (OUT);

Deja un comentario