Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 624548 Details for
Bug 864764
KickstartValueError: The following problem occurred on line 80 of the kickstart file: Tried to use undefined partition raid.21 in RAID specification
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
File: ks.cfg
ks.cfg (text/plain), 4.80 KB, created by
Madison Kelly
on 2012-10-10 04:33:53 UTC
(
hide
)
Description:
File: ks.cfg
Filename:
MIME Type:
Creator:
Madison Kelly
Created:
2012-10-10 04:33:53 UTC
Size:
4.80 KB
patch
obsolete
># Kickstart file created by Digimer ># Email: digimer@alteeve.ca ># Updated: Oct. 08, 2012 ># Based on: Fedora 18 > > >### Setup values. ># Doing a full install. >install > ># This is the web server with the installation image. For more information on ># setting up a PXE and web server, see: ># - https://alteeve.ca/w/Setting_Up_a_PXE_Server_in_Fedora >url --url=http://10.255.255.254/f18/x86_64/img/ > ># Set the language and keyboard to en_US, UTF-8. Adjust as needed. >lang en_US.UTF-8 >keyboard us > ># Set the timezone to Eastern Standard/Daylight Time. To get your preferred ># time zone, run 'tzselect'. When finished, looks for the line like: ># - Therefore TZ='America/Toronto' will be used. ># Take the value in "TZ='...'" and use it below. >timezone --utc America/Toronto > ># This sets the (first) ethernet device. There is currently no way to map ># device names to physical interfaces. For this reason, I use DHCP for install ># and configure the network manually post-install. >network --device p2p2 --bootproto dhcp --noipv6 --onboot yes --hostname an-c04n01.alteeve.ca > ># Default root password is 'initial'. Change it post install >rootpw --iscrypted $6$EyRSE4b41vSXFkBQ$DuQxfpr4a9WN8uqg4VdxWTG8clCvuueEW6OyBtmQgUqSgSaLWcBXYaDlu0nF815jE5ozPWHPAoNfA4J2oqsa60 >authconfig --enableshadow --passalgo=sha512 > ># In a production system, you will likely want to enable a firewall and ># SELinux. Given that this script is likely to be used while learning though, ># I turn them both off to reduce potential problems. Please be sure to build a ># firewall (Shorewall is good) and to re-enable SELinux as final steps before ># going into production. This way you will be able to focus on resolving issues ># specific to firewalling and SELinux without wondering if problems are caused ># by the general configuration. >#firewall --service=ssh >#selinux --enforcing >firewall --disabled >selinux --disabled > ># Given how often I rebuild machines, I like to pre-define the initial user and ># thus skip 'firstboot' to save time. >#firstboot --disable > ># This is a generic, backup login account with the same password as root. >user --name=alteeve --iscrypted --password=$6$EyRSE4b41vSXFkBQ$DuQxfpr4a9WN8uqg4VdxWTG8clCvuueEW6OyBtmQgUqSgSaLWcBXYaDlu0nF815jE5ozPWHPAoNfA4J2oqsa60 > ># Reboot after the install completes rather than waiting for the user to ># manually reboot. >#reboot > ># This runs a script (below) that generates the partitioning information ># depending on a rudamentary test for available storage devices. >zerombr >clearpart --initlabel --drives=sda,sdb --all >#ignoredisk --only-use=sda,sdb >#bootloader --location=mbr --driveorder=sda,sdb --append="" > ># Needed since F16 >part biosboot --fstype=biosboot --size=1 > ># /boot >#part raid.11 --ondisk=sda --asprimary --size=512 >#part raid.12 --ondisk=sdb --asprimary --size=512 ># <swap> >part raid.21 --size=4096 >part raid.22 --size=4096 ># / >part raid.31 --size=40960 >part raid.32 --size=40960 > ># Format /boot and /. >#raid /boot --fstype=ext4 --level=1 --device=md1 raid.11 raid.12 >raid swap --fstype=swap --level=1 --device=md2 raid.21 raid.22 >raid / --fstype=ext4 --level=1 --device=md3 raid.31 raid.32 > ># These options allow me to disable and enable services. Given that we're ># building servers, I particularly like to replace 'NetworkManager' with the ># simpler, and more static, 'network' service. If you want to add additional ># services, seperate the service names with commans. (ie: foo,bar,baz). >#services --disabled NetworkManager,iptables,iptables,ip6tables >#services --enabled network > ># This enables the graphical desktop, Gnome specifically, and includes some ># tools to make working on clustering easier. As with the firewall and SELinux, ># you will want to alter this and strip out as much as you can before going ># into production. >%packages >@core >vim >wget >rsync >openssh-clients >perl >screen >telnet >bridge-utils >dmidecode >mlocate >bridge-utils >gpm >#pacemaker >#corosync >#fence-agents >#resource-agents >%end > >%post ># As per: https://bugzilla.redhat.com/show_bug.cgi?id=472776, this removes ># the graphical boot as it sometimes produces difficult to read boot screens. >sed -i 's/ rhgb//g' /etc/default/grub >sed -i 's/ quiet//g' /etc/default/grub >#sed -i 's/rd.dm=0/rd.dm=0 biosdevname=0/g' /etc/default/grub >grub2-mkconfig -o /etc/grub2.cfg >plymouth-set-default-theme details -R >sed -i 's/keepcache=0/keepcache=1/g' /etc/yum.conf >#sed -i 's/id:5:initdefault/id:3:initdefault/g' /etc/inittab >#yum -y install resource-agents ricci corosynclib-devel openaislib-devel fence-agents resource-agents modcluster ricci >yum -y install syslinux >yum -y update > ># Download the backup files and load them. >cd ~ >#wget http://10.255.255.254/f18/x86_64/files/base_an-c04n01.tar >#cp base_an-c04n01.tar /mnt/sysimage/root/ >#/etc/init.d/network stop >#tar -xvf base_an-c04n01.tar -C / >#rm -f /etc/udev/rules.d/70-persistent-net.rules >#start_udev >#/etc/init.d/network start >%end >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 864764
:
624537
|
624538
|
624539
|
624540
|
624541
|
624542
|
624543
|
624544
|
624545
|
624546
|
624547
| 624548 |
624549
|
624550
|
696996
|
696998