Author: M0E.lnx
Date: Tue Dec 2 13:40:49 2008
New Revision: 342
Modified:
branches/iVL/.project
branches/iVL/FrmImportAccts.class
branches/iVL/installer.gambas
Log:
Fixed password imput issue with user account import
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Tue Dec 2 13:40:49 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.1.17
+Version=0.1.18
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/FrmImportAccts.class
==============================================================================
--- branches/iVL/FrmImportAccts.class (original)
+++ branches/iVL/FrmImportAccts.class Tue Dec 2 13:40:49 2008
@@ -127,7 +127,7 @@
SHELL "chroot /mnt/target /usr/sbin/groupdel " &
Trim(ME.cbAccntList.Text) WAIT
SHELL "chroot /mnt/target /usr/sbin/groupadd " & "-g" & Space(1) &
FrmUserAdd.iUID & Space(1) & Trim(ME.cbAccntList.Text) WAIT
- SHELL "chroot /mnt/target /usr/sbin/useradd -g " &
Trim(ME.cbAccntList.Text) & " -p " & ME.tbPasswd1.text & " -u " &
FrmUserAdd.iUID & " -G " & "\'users," & sGroups & "\' -s /bin/bash "
& 'ME.tbUsername.Text WAIT
+ SHELL "chroot /mnt/target /usr/sbin/useradd -g " &
Trim(ME.cbAccntList.Text) & " -p " & ME.tbPass1.Text & " -u " &
FrmUserAdd.iUID & " -G " & "\'users," & sGroups & "\' -s /bin/bash "
& 'ME.tbUsername.Text WAIT
Trim(ME.cbAccntList.Text) & " -d /home/" & Trim(ME.cbAccntList.Text) WAIT
SHELL "chroot /mnt/target /sbin/passwdx " & Trim(ME.cbAccntList.Text) &
Space(1) & ME.tbPass1.Text WAIT
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|