Author: M0...@gm...
Date: Thu Dec 4 08:23:33 2008
New Revision: 362
Modified:
branches/iVL/MdlInstallSys.module
Log:
Updated syntax mdlinstallsys
Modified: branches/iVL/MdlInstallSys.module
==============================================================================
--- branches/iVL/MdlInstallSys.module (original)
+++ branches/iVL/MdlInstallSys.module Thu Dec 4 08:23:33 2008
@@ -300,7 +300,7 @@
FOR EACH cb IN MdlPartSel.oSwaps
IF cb.Text = "Swap" THEN
- EXEC ["grep", cb.Tag, "/etc/fstab"] TO sDump
+ SHELL "cat /etc/fstab | grep ^" & cb.Tag TO sDump
sDump = Trim(sDump)
IF Len(sDump) < 1 THEN
SHELL "echo \'" & cb.Tag & " none swap sw 0 0 \' >>
/etc/fstab" WAIT
|