/[smeserver]/cdrom.image/install.cfg
ViewVC logotype

Contents of /cdrom.image/install.cfg

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1.1.1 - (show annotations) (download) (vendor branch)
Sat Jul 2 06:33:16 2005 UTC (18 years, 10 months ago) by gordonr
Branch: V7_0_alpha23
CVS Tags: SMEServer
Changes since 1.1: +0 -0 lines
Initial import of cdrom.image directory

1 install
2 text
3 cdrom
4 skipx
5 mouse --device none
6 network --device eth0 --bootproto dhcp
7 rootpw --iscrypted $1$iHhL195i$25OY88oyw2bxgU47MvuZf0
8 firewall --disabled
9 selinux --disabled
10 authconfig --enableshadow --enablemd5
11 bootloader --location=mbr
12 zerombr yes
13 %include /tmp/part-include
14
15 %packages
16 @ Base
17
18 %post
19 /sbin/syslogd &
20 sleep 2
21 /sbin/e-smith/signal-event post-install
22
23 # HACK - fix selinux config
24 perl -p -i -e 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
25
26 %pre
27 #!/bin/sh
28 set -x
29
30 hds=""
31 raidlevel=2
32
33 memsize=`cat /proc/meminfo | grep 'MemTotal:' | sed 's/^.* \([0-9]\+\) kB$/\1/'`
34 swapsize=$(($memsize/512))
35
36 if [ $swapsize -gt 2048 ] ; then
37 swapsize=2048
38 fi
39
40 # let's assume it's a SCSI system
41 hds=`grep 'sd[a-z]$' /proc/partitions | sed 's/.* sd/ sd/'`
42 set $hds
43 numhd=`echo $#`
44 if [ $numhd == "0" ] ; then
45 # No SCSI Drives is must be IDE
46 for file in /proc/ide/hd*
47 do
48 media=`cat $file/media`
49 if [ $media == "disk" ] ; then
50 hds="$hds `basename $file`"
51 fi
52 done
53
54 set $hds
55 numhd=`echo $#`
56 fi
57
58 echo "# Auto configure partitions" > /tmp/part-include
59
60 if [ $numhd -gt "0" ] ; then
61 hdlist=`echo $hds | sed 's/^ \+//;s/ \+$//;s/ \+/ /g;s/ /,/g'`
62 echo "clearpart --all --initlabel --drives=$hdlist" >> /tmp/part-include
63
64 num=1
65 while [ $num -le $numhd ]; do
66 hd=`echo $hds | cut -d' ' -f$num`
67 echo "part raid.0_$num --size=100 --ondisk=$hd --asprimary" >> /tmp/part-include
68 echo "part raid.1_$num --size=1400 --grow --ondisk=$hd --asprimary" >> /tmp/part-include
69
70 md0="$md0 raid.0_$num"
71 md1="$md1 raid.1_$num"
72 let num=num+1
73 done
74
75 if [ $numhd -le "2" ] ; then
76 raidlevel=1
77 elif [ $numhd -ge "6" ]; then
78 raidlevel=6
79 else
80 raidlevel=5
81 fi
82
83 echo "raid /boot --fstype ext3 --level=RAID1 --device=md0 $md0" >> /tmp/part-include
84 echo "raid pv.1 --fstype \"physical volume (LVM)\" --level=RAID$raidlevel --device=md1 $md1" >> /tmp/part-include
85 echo "volgroup vg_primary --pesize=32768 pv.1" >> /tmp/part-include
86 echo "logvol / --fstype ext3 --name=lv_root --vgname=vg_primary --size=1024 --grow" >> /tmp/part-include
87 echo "logvol swap --fstype swap --name=lv_swap --vgname=vg_primary --size=256 --grow --maxsize=$swapsize" >> /tmp/part-include
88 fi

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed