From: <cod...@go...> - 2009-01-13 20:30:36
|
Author: uelsk8s Date: Tue Jan 13 10:42:24 2009 New Revision: 459 Modified: branches/iVL/.lang/FMain.pot branches/iVL/.project branches/iVL/FMain.class branches/iVL/FrmNetConf.form branches/iVL/installer.gambas Log: add start wicd checkbox Modified: branches/iVL/.lang/FMain.pot ============================================================================== --- branches/iVL/.lang/FMain.pot (original) +++ branches/iVL/.lang/FMain.pot Tue Jan 13 10:42:24 2009 @@ -106,19 +106,19 @@ msgid "Please specify the domain this computer belongs to" msgstr "" -#: FMain.class:835 +#: FMain.class:837 msgid "Back" msgstr "" -#: FMain.class:846 +#: FMain.class:848 msgid "Exit Installation" msgstr "" -#: FMain.class:857 +#: FMain.class:859 msgid "Next" msgstr "" -#: FMain.class:871 +#: FMain.class:873 msgid "Button1" msgstr "" Modified: branches/iVL/.project ============================================================================== --- branches/iVL/.project (original) +++ branches/iVL/.project Tue Jan 13 10:42:24 2009 @@ -2,7 +2,7 @@ # Compiled with Gambas 2.10.2 Title=VectorLinux Installer Startup=MdlCore -Version=0.1.20 +Version=0.1.21 Library=gb.gtk Library=gb.form Library=gb.debug Modified: branches/iVL/FMain.class ============================================================================== --- branches/iVL/FMain.class (original) +++ branches/iVL/FMain.class Tue Jan 13 10:42:24 2009 @@ -582,8 +582,10 @@ MdlNetConf.SET_DNS_ADDRESSES() MdlNetConf.WRITE_INET() END IF - - + IF FrmNetConf.cbStartWicd.Value = TRUE THEN + SHELL "chroot /mnt/target service -s wicd 2" + SHELL "chroot /mnt/target service -s wicd 4" + END IF frmNext = FrmDone Modified: branches/iVL/FrmNetConf.form ============================================================================== --- branches/iVL/FrmNetConf.form (original) +++ branches/iVL/FrmNetConf.form Tue Jan 13 10:42:24 2009 @@ -47,13 +47,13 @@ Text = ("Manual DNS Server Specification") } } - { CheckBox1 CheckBox - MoveScaled(68,16,19,3) + { cbStartWicd CheckBox + MoveScaled(66,16,19,3) Text = ("Start WICD at boot") Value = CheckBox.True } { Panel2 Panel - MoveScaled(1,16,65,6) + MoveScaled(1,16,86,6) { txtPrimaryDNS TextBox txtManDNSBoxes Name = "txtPrimaryDNS" MoveScaled(26,0,18,3) Modified: branches/iVL/installer.gambas ============================================================================== Binary files. No diff available. |