-
Notifications
You must be signed in to change notification settings - Fork 70
/
centos4-raid1.cfg
47 lines (43 loc) · 1.36 KB
/
centos4-raid1.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# General Kickstart to test software RAID1 on EL-5
#
# Requires 2 disks to test
#
install
# key --skip ## not needed for CentOS
lang en_US.UTF-8
cmdline
firewall --disabled
timezone --utc UTC
rootpw Xuxu.p3t4lZ
## Ok if the drives are NOT sda/sdb you will need to change.
## there is possibly a way to do this in %pre but man thats magic.
bootloader --location=partition --driveorder=sda,sdb
zerombr yes
clearpart --all
## /boot
part raid.0 --size=500 --ondisk sda --asprimary
part raid.1 --size=500 --ondisk sdb --asprimary
## LVM 1
part raid.2 --size=10000 --ondisk sda --asprimary
part raid.3 --size=10000 --ondisk sdb --asprimary
## LVM 2
part raid.3 --size=10000 --ondisk sda --asprimary --grow
part raid.4 --size=10000 --ondisk sdb --asprimary --grow
##
raid /boot --fstype ext3 --level=RAID1 --device=md0 raid.0 raid.1
raid pv.1 --fstype "physical volume (LVM)" --level=RAID1 --device=md1 raid.2 raid.3
raid pv.2 --fstype "physical volume (LVM)" --level=RAID1 --device=md2 raid.3 raid.4
##
volgroup vg00 --pesize=32768 pv.1
volgroup vg01 --pesize=32768 pv.2
logvol / --fstype ext3 --name=root --vgname=vg00 --size=8192
logvol swap --fstype swap --name=swap0 --vgname=vg00 --size=1024
logvol swap --fstype swap --name=swap1 --vgname=vg01 --size=1024
logvol /srv --fstype ext3 --name=root --vgname=vg01 --size=1024
%packages
@Base
%post
##
## Put things here to test raid1.
##