From: <cod...@go...> - 2008-10-02 15:03:33
|
Author: M0...@gm... Date: Thu Oct 2 08:01:40 2008 New Revision: 205 Modified: branches/iVL/FrmEmbUsrAdd.class branches/iVL/FrmRootPass.class Log: Copied useradd.gambas to run it from the resulting install Modified: branches/iVL/FrmEmbUsrAdd.class ============================================================================== --- branches/iVL/FrmEmbUsrAdd.class (original) +++ branches/iVL/FrmEmbUsrAdd.class Thu Oct 2 08:01:40 2008 @@ -41,7 +41,9 @@ DIM iID AS Integer = ME.Embedder1.Id - SHELL "$PWD/adduser.gambas " & iID & Space(1) & ME.ClientWidth & Space(1) & ME.clientHeight + SHELL "cp $PWD/adduser.gambas " & ClsGlobal.sTargetMnt &/ "usr" &/ "bin" WAIT + 'SHELL "$PWD/adduser.gambas " & iID & Space(1) & ME.ClientWidth & Space(1) & ME.clientHeight + SHELL "chroot " & ClsGlobal.sTargetMnt & "; /usr/bin/adduser.gambas " & iID & Space(1) & ME.ClientWidth & Space(1) & ME.ClientH MdlCore.LOCK_GUI() Modified: branches/iVL/FrmRootPass.class ============================================================================== --- branches/iVL/FrmRootPass.class (original) +++ branches/iVL/FrmRootPass.class Thu Oct 2 08:01:40 2008 @@ -21,9 +21,9 @@ END WITH WITH FMain - ' .tvPlan["Conf1"].Picture = MdlCore.sDonePic - ' .tvPlan["Conf2"].picture = MdlCore.sNowPic - ' .tvPlan["Conf2"].Selected = TRUE + .tvPlan["Conf1"].Picture = MdlCore.sDonePic + .tvPlan["Conf2"].picture = MdlCore.sNowPic + .tvPlan["Conf2"].Selected = TRUE END WITH ME.Frame1.text = Space(1) & ("About the root account") & Space(1) END |