Tory M Blue wrote: > But you do understand your master install script is not in fact > creating the swap, unless you left it outside of your previous email? > Your setting up the partition but not creating the swap. > > What if you added the section I included (tweaked for your situation) > and attempted another image,
No... never change the master script if it's not strictly necessary... you should always change autoinstallscript.conf and re-run si_mkautoinstallscript. The real problem is that in your autoinstallscript.conf there is the format="no" attribute for the swap partition and this is the reason why it's not created on the clients: <fsinfo line="70" mount_dev="LABEL=SWAP-hda2" mp="swap" fs="swap" options="defaults" dump="0" pass="0" format="no" /> Maybe you have format="no" because in the golden client systemimager is not able to find the correct mapping for SWAP-hda2 and your /dev/hda2 partition. The correct procedure to do so is to use the command: # blkid -t LABEL=swap-hda2 So, what happens if you run this command in your golden client? the correct output should be the following: /dev/hda2: TYPE="swap" LABEL="swap-hda2" AFAIK this is the only way to identify the label mapping on every filesystem... Regards, -Andrea ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ sisuite-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sisuite-users
