diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 23:53:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-08-10 23:53:18 +0000 |
commit | ba2e9575a26cb1c9a81ef5d1303422f862d5e019 (patch) | |
tree | 14240b5d02125b97c1e8c6279573f4fe200cb173 /perl-install/standalone/adduserdrake | |
parent | 5f78b9376156a4c9d9cec4e8c630a632c4402fea (diff) | |
download | drakx-ba2e9575a26cb1c9a81ef5d1303422f862d5e019.tar drakx-ba2e9575a26cb1c9a81ef5d1303422f862d5e019.tar.gz drakx-ba2e9575a26cb1c9a81ef5d1303422f862d5e019.tar.bz2 drakx-ba2e9575a26cb1c9a81ef5d1303422f862d5e019.tar.xz drakx-ba2e9575a26cb1c9a81ef5d1303422f862d5e019.zip |
use $::prefix instead of passing $prefix to functions
Diffstat (limited to 'perl-install/standalone/adduserdrake')
-rwxr-xr-x | perl-install/standalone/adduserdrake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/adduserdrake b/perl-install/standalone/adduserdrake index 4bbad2fa3..e5c1fc611 100755 --- a/perl-install/standalone/adduserdrake +++ b/perl-install/standalone/adduserdrake @@ -9,7 +9,7 @@ use interactive; use any; my @etc_pass_fields = qw(name pw uid gid realname home shell); -my @shells = grep { -x $_ } map { "/bin/$_" } qw(bash tcsh zsh ash ksh); +my @shells = any::shells(); my $isMD5 = cat_("/etc/pam.d/system-auth") =~ /md5/; my $isShadow = cat_("/etc/pam.d/system-auth") =~ /shadow/; @@ -21,13 +21,13 @@ if (my @l = grep { ! /^-/ } @ARGV) { $users = [ map { { name => $_, realname => $_ } } @l ]; } else { $in = 'interactive'->vnew('su'); - any::ask_users('', $in, $users, $ENV{SECURE_LEVEL}); + 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); +any::addUsers($users); $in->exit(0) if $in; |