]> scripts.mit.edu Git - xen.git/blob - scripts.ks
Use strings for mac addresses, inactive eth1 kickstart.
[xen.git] / scripts.ks
1 # Kickstart file for scripts.mit.edu
2
3 # Parameters:
4 #   local_mirror    = ${local_mirror}
5 #   official_mirror = ${official_mirror}
6 #   fedora_release  = ${fedora_release}
7 #   arch            = ${arch}
8 #   hostname        = ${hostname}
9 #   ip              = ${ip}
10 #   backend_ip      = ${backend_ip}
11
12 install
13 url --url=${local_mirror}/fedora/linux/releases/${fedora_release}/Fedora/${arch}/os
14 lang en_US.UTF-8
15 keyboard us
16 network --device eth0 --bootproto static --ip ${ip} --netmask 255.255.0.0 --gateway 18.181.0.1 --nameserver 18.71.0.151 --hostname ${hostname}
17 #network --device eth1 --bootproto static --ip ${backend_ip} --netmask 255.255.0.0
18
19 timezone --utc America/New_York
20 selinux --disabled
21 authconfig --enableshadow --passalgo=sha512 --enablefingerprint
22 firewall --disabled
23
24 clearpart --none --drives=xvda,xvde --initlabel
25 ignoredisk --only-use=xvde,xvda
26 part / --fstype=ext3 --grow --asprimary --size=1
27 part swap --grow --size=1
28
29 bootloader --location=mbr --driveorder=xvda,xvde --append="console=hvc0 rhgb quiet"
30 repo --name="Fedora ${fedora_release} - ${arch}"  --baseurl=${official_mirror}/fedora/linux/releases/${fedora_release}/Everything/${arch}/os/
31
32 user --name=scripts-build
33
34 %packages
35 subversion
36 make
37 redhat-lsb
38 autofs
39 vim
40 emacs
41 @core
42 @online-docs
43 %end