diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-12 11:39:09 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-12 11:39:09 +0000 |
commit | 212c6f3f817a03ef6e18d991aa6d821902a04d55 (patch) | |
tree | 072434e2ac13a3078e770a5fa44bd0a5191fb3e7 /perl-install/any.pm | |
parent | bb612c87e63aacd91d1140865fe88e9028ae0b13 (diff) | |
download | drakx-212c6f3f817a03ef6e18d991aa6d821902a04d55.tar drakx-212c6f3f817a03ef6e18d991aa6d821902a04d55.tar.gz drakx-212c6f3f817a03ef6e18d991aa6d821902a04d55.tar.bz2 drakx-212c6f3f817a03ef6e18d991aa6d821902a04d55.tar.xz drakx-212c6f3f817a03ef6e18d991aa6d821902a04d55.zip |
add user specific shell support in create_user (Nicolas Planel)
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index c4a903e6f..9207245f2 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -76,6 +76,7 @@ sub create_user { 'adduser', '-p', authentication::user_crypted_passwd($u, $isMD5), if_($uid, '-u', $uid), if_($gid, '-g', $gid), + if_($u->{shell}, '-s', $u->{shell}), $u->{name}); } |