Author: m0e.lnx
Date: Sat Oct 11 21:46:00 2008
New Revision: 225
Modified:
branches/iVL/.project
branches/iVL/DevLog
branches/iVL/FMain.class
branches/iVL/FrmUserAdd.class
branches/iVL/MdlConfLilo.module
branches/iVL/installer.gambas
Log:
- Fixed milisecond multiplier for LILO conf writer module ( units * 10)
- Corrected problem with user accounts created without UID value
- Updated binary
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Sat Oct 11 21:46:00 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.108
+Version=0.0.110
Library=gb.gtk
Library=gb.form
Library=gb.debug
Modified: branches/iVL/DevLog
==============================================================================
--- branches/iVL/DevLog (original)
+++ branches/iVL/DevLog Sat Oct 11 21:46:00 2008
@@ -1,2 +1,3 @@
-- Fixed stall issue @ user account creation window
+- Fixed milisecond multiplier for LILO conf writer module ( units * 10)
+- Corrected problem with user accounts created without UID value
- Updated binary
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Sat Oct 11 21:46:00 2008
@@ -41,7 +41,7 @@
-'ME.Maximized = TRUE
+ME.Maximized = TRUE
frmInit = MdlCore.frmInit
'MdlCore.LOCK_GUI
'frmInit = FrmLangSel
@@ -75,8 +75,8 @@
.tvPlan.BackColor = Color.transparent
.tlBanner.Height = .PictureBox1.Height
'.tvPlan.Width = MdlCore.iLeftWidth
- .Width = 800
- .Height = 600
+ ' .Width = 800
+ ' .Height = 600
END WITH
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Sat Oct 11 21:46:00 2008
@@ -127,17 +127,18 @@
SHELL "mount -o bind /proc /mnt/target/proc" WAIT
SHELL "mount -o bind /dev /mnt/target/dev" WAIT
PRINT "Deleting old user group"
+
SHELL "chroot /mnt/target /usr/sbin/groupdel " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
'SHELL "chroot /mnt/target /usr/sbin/groupadd -g " & iUID &
Space(1) & ME.tbUsername.Text WAIT
PRINT "Creating new user group"
- SHELL "chroot /mnt/target /usr/sbin/groupadd " &
ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
+ SHELL "chroot /mnt/target /usr/sbin/groupadd " & "-g" & Space(1)
& iUID & Space(1) & ME.tbUsername.Text WAIT '& " &> /dev/null" WAIT
'Message("chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups &
ME.tbUsername.Text)
'SHELL "chroot /mnt/target /usr/sbin/useradd -m -s /bin/bash
-u " & iUID & " -g " & ME.tbUsername.Text & " -G " & sGroups & Space(1) &
ME.tbUsername.Text WAIT
PRINT "Creating new user account"
SHELL "chroot /mnt/target /usr/sbin/useradd -m -c " & "\'" &
ME.tbRealname.text & "\'" & " -g " & ME.tbUsername.text &
- " -p " & ME.tbPasswd1.text & " -G " & "\'" & sGroups & "\' " &
ME.tbUsername.Text WAIT
+ " -p " & ME.tbPasswd1.text & " -u " & iUID & " -G " & "\'" &
sGroups & "\' " & ME.tbUsername.Text WAIT
' sDocmd = "useradd -m -c " & "\'" & sname & "\'" & " -g " &
slogin & " -p " & ME.txtpass1.Text &
'" -G " & "\'" & sgrparse & "\' " & slogin
Modified: branches/iVL/MdlConfLilo.module
==============================================================================
--- branches/iVL/MdlConfLilo.module (original)
+++ branches/iVL/MdlConfLilo.module Sat Oct 11 21:46:00 2008
@@ -39,7 +39,7 @@
END IF
- iTimeout = FrmLilo.sbTimer.Value * 100
+ iTimeout = FrmLilo.sbTimer.Value * 10
sOut = "# LILO Configuration File \n" &
"# Generated by the VectorLinux installer \n" &
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|