Is it possible for autoyast to create EVMS containers and logical
volumes within?
I've found some doco on lists how to create LVM physical and logical
volumes but no mention of EVMS.
If anyone has achieved this please let me know..
Thanks
--Maurice--
This is a quick method that I usually use to figure out how to set
something up with autoYaST - it's much quicker than combing through the
docs.
C--
Once you create the script, you can use code such as that below to add
it to your AutoYast XML file (the code below is what I use to set up my
IDE disks for speedier installation...) This would go inside of a
<configure></configure> block in your XML code...
<scripts>
<pre-scripts config:type="list">
<script>
<source>
<![CDATA[
for DISK in `fdisk -l|grep ^Disk|cut -c 6-|cut -f1 -d:`; do
hdparm -c1 -d1 -m16 ${DISK} 2> /dev/null
done
exit 0]]>
</source>
</script>
</pre-scripts>
</scripts>
--
Chander Ganesan
Open Technology Group, Inc.
One Copley Parkway, Suite 210
Morrisville, NC 27560
Phone: 877-258-8987/919-463-0999
Fax: 919-386-0158