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 679120 Details for
Bug 895741
TypeError: not enough arguments for format string
[?]
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), 3.58 KB, created by
Andrew McNabb
on 2013-01-15 22:06:49 UTC
(
hide
)
Description:
File: ks.cfg
Filename:
MIME Type:
Creator:
Andrew McNabb
Created:
2013-01-15 22:06:49 UTC
Size:
3.58 KB
patch
obsolete
># AML Kickstart Script for Fedora > ># Basic settings >install >lang en_US.UTF-8 >keyboard us >timezone --utc America/Denver >network --bootproto=dhcp > >#Root password >rootpw --iscrypted $$$$$ >sshpw --username=root --iscrypted $$$$$ > ># Disable annoying things we don't want. >firstboot --disable >firewall --disabled >selinux --disabled > >#System bootloader configuration >bootloader --location=mbr > ># System authorization information (use LDAP). Note that we specifically ># override these settings in /etc/pam.d/system-auth >auth --enableshadow --enablesssd --enablesssdauth --enablemkhomedir > >############################################################################### ># Repositories > ># Enable these after the official Fedora release >#repo --name=fedora-everything --baseurl=http://mirrors.cs.byu.edu/fedora/releases/$releasever/Everything/$basearch/os >repo --name=fedora-updates --baseurl=http://mirrors.cs.byu.edu/fedora/updates/18/x86_64 > ># Enable this one during the Fedora Alpha/Beta/RC cycle >#repo --name=fedora-updates-testing --baseurl=http://mirrors.cs.byu.edu/fedora/updates/testing/$releasever/$basearch >#repo --name=fedora-updates-testing --baseurl=http://mirrors.cs.byu.edu/fedora/updates/testing/18/x86_64 > >############################################################################### ># Partitioning > ># Include part commands from a file loaded in %pre >%include /tmp/part.include > >############################################################################### ># Reboot vs. Poweroff > ># Include finish commands from a file loaded in %pre (e.g., reboot or poweroff) >%include /tmp/finish.include ># Temporarily do poweroff all of the time instead (see rh bug #667526): >#poweroff > >############################################################################### ># Pre-install script > >%pre --erroronfail ># Fail preinstall if there is no hard drive. >if [[ ! -e /dev/sda && ! -e /dev/vda ]]; then > echo "Neither /dev/sda nor /dev/vda is available." > echo >/dev/tty1 > echo "Neither /dev/sda nor /dev/vda is available." >/dev/tty1 > exit 1 >fi > ># Fail preinstall if there is any USB hard drive. >for path in $(ls /dev/disk/by-path/* |grep usb); do > if blockdev "$path"; then > echo "A USB disk appears to be connected. Aborting." > echo >/dev/tty1 > echo "A USB disk appears to be connected. Aborting." >/dev/tty1 > exit 1 > fi >done > ># Check whether aml-ks-repartition was passed on the kernel command-line. >if grep -q aml-ks-repartition /proc/cmdline; then > partfilename=part.repartition.include >else > partfilename=part.usepartitions.include >fi >wget -O /tmp/part.include http://aml.cs.byu.edu/install/$partfilename >if [[ $? != 0 ]]; then exit 1; fi ># Virtual machines have /dev/vda as their disk instead of /dev/sda. >if [[ ! -e /dev/sda ]]; then > sed -i 's/ondisk=sda/ondisk=vda/' /tmp/part.include > sed -i 's/onpart=sda/onpart=vda/' /tmp/part.include > sed -i 's/drives=sda/drives=vda/' /tmp/part.include >fi > ># After installation completes, the potatoes should poweroff (awaiting a ># wake-on-lan), but other systems should reboot. >if hostname -s |grep -q potato; then > echo "poweroff" >/tmp/finish.include >else > echo "reboot" >/tmp/finish.include >fi > >%end > >#---------------------------------------------------------# ># PACKAGES >#---------------------------------------------------------# >%include http://aml.cs.byu.edu/install/packages > >#---------------------------------------------------------# ># POST-INSTALLATION >#---------------------------------------------------------# >%post >wget -O /tmp/postinstall.sh http://aml.cs.byu.edu/install/postinstall.sh >bash /tmp/postinstall.sh >/root/postinstall-log 2>&1 >%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 895741
:
679116
|
679117
|
679118
|
679119
| 679120 |
679121
|
679122
|
679123
|
679124