Author: uelsk8s
Date: Sun Nov 9 10:12:12 2008
New Revision: 272
Modified:
branches/iVL/.project
branches/iVL/FMain.class
branches/iVL/FrmNetConf.class
branches/iVL/FrmUserAdd.class
branches/iVL/MdlNetConf.module
branches/iVL/installer.gambas
Log:
added face browser icon for gdm
Modified: branches/iVL/.project
==============================================================================
--- branches/iVL/.project (original)
+++ branches/iVL/.project Sun Nov 9 10:12:12 2008
@@ -2,7 +2,7 @@
# Compiled with Gambas 2.9.0
Title=VectorLinux Installer
Startup=MdlCore
-Version=0.0.141
+Version=0.0.142
Library=gb.gtk
Library=gb.form
Library=gb.debug
@@ -17,6 +17,7 @@
Language=en_US
ControlPublic=1
ModulePublic=1
+ExecPath=/root/gui-installer/installer.gambas
Maintainer=M0E-lnx
Vendor=VectorLinux
Address=M0...@gm...
Modified: branches/iVL/FMain.class
==============================================================================
--- branches/iVL/FMain.class (original)
+++ branches/iVL/FMain.class Sun Nov 9 10:12:12 2008
@@ -354,6 +354,7 @@
SHELL "cp /mnt/target/etc/modules.conf >/etc/modules.conf" WAIT
SHELL "ifconfig eth0 up" WAIT
+ SHELL "chmod 700 /mnt/target/home/*"
frmNext = FrmNetConf
Modified: branches/iVL/FrmNetConf.class
==============================================================================
--- branches/iVL/FrmNetConf.class (original)
+++ branches/iVL/FrmNetConf.class Sun Nov 9 10:12:12 2008
@@ -21,11 +21,11 @@
DIM sHost AS String
'SHELL "chroot " & ClsGlobal.sTargetMnt & " hostname" TO sRes
- EXEC ["chroot " & ClsGlobal.sTargetMnt, "hostname"] TO sRes
+ 'EXEC ["chroot " & ClsGlobal.sTargetMnt, "hostname"] TO sRes
- IF sRes = "" THEN
+ 'IF sRes = "" THEN
sRes = "Vector.Linux.net"
- END IF
+ ' END IF
sRes = Trim(sRes)
@@ -141,3 +141,4 @@
END IF
END
+
Modified: branches/iVL/FrmUserAdd.class
==============================================================================
--- branches/iVL/FrmUserAdd.class (original)
+++ branches/iVL/FrmUserAdd.class Sun Nov 9 10:12:12 2008
@@ -113,8 +113,10 @@
'SHELL "cd " & sPicdir & " && ln -s root1.png
root.face.icon" ' This needs to go somewhere else
'SHELL "cd " & sPicdir & " ; ln -s default3.png " &
ME.tbUsername.Text & ".face.icon"
-
+ 'this next line is for kdm
SHELL "cd " & sPicdir & "; ln -s " & Replace(tbPicPath.Text,
ClsGlobal.sTargetMnt, "") & Space(1) & tbUsername.Text & ".face.icon" WAIT
+ 'this next line is for gdm
+ SHELL "cd /mnt/target/home/" & tbUsername.Text & "; cp " &
Replace(tbPicPath.Text, ClsGlobal.sTargetMnt, "") & Space(1) & ".face" WAIT
ENDIF
Modified: branches/iVL/MdlNetConf.module
==============================================================================
--- branches/iVL/MdlNetConf.module (original)
+++ branches/iVL/MdlNetConf.module Sun Nov 9 10:12:12 2008
@@ -583,8 +583,8 @@
IF Exist(ClsGlobal.sTargetMnt &/ "etc" &/ "hosts") THEN MOVE
ClsGlobal.sTargetMnt &/ "etc" &/ "hosts" TO ClsGlobal.sTargetMnt &/ "etc"
&/ "hosts.bak"
IF Exist(ClsGlobal.sTargetMnt &/ "etc" &/ "hosts") THEN KILL
ClsGlobal.sTargetMnt &/ "etc" &/ "hosts"
- Message.Info(sFileIn)
- RETURN
+ 'Message.Info(sFileIn)
+ 'RETURN
TRY File.Save(ClsGlobal.sTargetMnt &/ "etc" &/ "hosts",
SConv(sFileIn))
CATCH
Message.Error(Error.where & gb.NewLine & Error.text)
Modified: branches/iVL/installer.gambas
==============================================================================
Binary files. No diff available.
|