summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/adduserdrake
blob: ff024dbf7775799dac75d049071ce9c21127cf00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl

use lib qw(/usr/lib/libDrakX);

use standalone;     #- warning, standalone must be loaded very first, for 'explanations'

use common;
use interactive;
use any;

my @etc_pass_fields = qw(name pw uid gid realname home shell);
my @shells = any::shells();
my $isMD5 = cat_("/etc/pam.d/system-auth") =~ /md5/;
my $isShadow = cat_("/etc/pam.d/system-auth") =~ /shadow/;


my $users = []; 
my $in;

if (my @l = grep { ! /^-/ } @ARGV) {
    $users = [ map { { name => $_, realname => $_ } } @l ];
} else {
    $in = 'interactive'->vnew('su');
    any::ask_users($in, $users, $ENV{SECURE_LEVEL});
}

system("adduser", $_->{name}) foreach @$users;
any::write_passwd_user($_, $isMD5) foreach @$users;
system("pwconv") if $isShadow;

any::addUsers($users);

$in->exit(0) if $in;