diff options
author | ivan <ivan> | 2003-06-12 12:57:46 +0000 |
---|---|---|
committer | ivan <ivan> | 2003-06-12 12:57:46 +0000 |
commit | 8b5f871f851f21f85c08281cd9654b6a8a9b237a (patch) | |
tree | 38a3b0e291f36237f37a8c087e0f508d0ff9db0b | |
parent | 3c02e25a618e0dcb7a9f0181087a1bee5d9901a5 (diff) |
_default_ default now sets GECOS like the OS-defaults
-rw-r--r-- | FS/FS/part_export.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_export.pm b/FS/FS/part_export.pm index 241b9e254..2078d19c2 100644 --- a/FS/FS/part_export.pm +++ b/FS/FS/part_export.pm @@ -548,7 +548,7 @@ tie my %shellcommands_options, 'Tie::IxHash', #'machine' => { label=>'Remote machine' }, 'user' => { label=>'Remote username', default=>'root' }, 'useradd' => { label=>'Insert command', - default=>'useradd -d $dir -m -s $shell -u $uid -p $crypt_password $username' + default=>'useradd -c $finger -d $dir -m -s $shell -u $uid -p $crypt_password $username' #default=>'cp -pr /etc/skel $dir; chown -R $uid.$gid $dir' }, 'useradd_stdin' => { label=>'Insert command STDIN', @@ -564,7 +564,7 @@ tie my %shellcommands_options, 'Tie::IxHash', default=>'', }, 'usermod' => { label=>'Modify command', - default=>'usermod -d $new_dir -m -l $new_username -s $new_shell -u $new_uid -p $new_crypt_password $old_username', + default=>'usermod -c $new_finger -d $new_dir -m -l $new_username -s $new_shell -u $new_uid -p $new_crypt_password $old_username', #default=>'[ -d $old_dir ] && mv $old_dir $new_dir || ( '. # 'chmod u+t $old_dir; mkdir $new_dir; cd $old_dir; '. # 'find . -depth -print | cpio -pdm $new_dir; '. |