From: <cod...@go...> - 2008-12-15 18:13:20
|
Author: uelsk8s Date: Mon Dec 15 10:05:04 2008 New Revision: 415 Modified: branches/iVL/MdlInstallCustom.module branches/iVL/MdlInstallSys.module Log: first attempt to check for errors on bulks and kernel install Modified: branches/iVL/MdlInstallCustom.module ============================================================================== --- branches/iVL/MdlInstallCustom.module (original) +++ branches/iVL/MdlInstallCustom.module Mon Dec 15 10:05:04 2008 @@ -168,6 +168,10 @@ ELSE RETURN 0 END IF + IF hproc.Value > 0 THEN + Message.Error("Failed to install Kernels") + 'RETURN 1 + END IF END IF END IF 'SHELL "cp " & ClsGlobal.sSourceMnt &/ "isolinux" &/ "kernel" &/ Modified: branches/iVL/MdlInstallSys.module ============================================================================== --- branches/iVL/MdlInstallSys.module (original) +++ branches/iVL/MdlInstallSys.module Mon Dec 15 10:05:04 2008 @@ -496,6 +496,10 @@ UNTIL hproc.State = Process.Stopped 'error check + IF hproc.Value > 0 THEN + Message.Error(sBulkPath & Space(1) & ("Failed to install")) + 'RETURN 1 + END IF END IF END IF FrmInstallSys.pbInstallProg.Value = 1 @@ -882,6 +886,10 @@ UNTIL hproc.State = Process.Stopped 'error check + IF hproc.Value > 0 THEN + Message.Error(sBulkPath & Space(1) & ("Failed to install")) + 'RETURN 1 + END IF END IF END IF FrmInstallSys.pbInstallProg.Value = 1 |