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 585038 Details for
Bug 821966
Anaconda ignores "selinux --disabled" and "firewall --disabled" kickstart options
[?]
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.
kickstart script
f17.ks (text/plain), 3.94 KB, created by
Andrew McNabb
on 2012-05-16 18:47:28 UTC
(
hide
)
Description:
kickstart script
Filename:
MIME Type:
Creator:
Andrew McNabb
Created:
2012-05-16 18:47:28 UTC
Size:
3.94 KB
patch
obsolete
># AML Kickstart Script for Fedora > ># Basic settings >install >url --url=http://mirrors.cs.byu.edu/fedora/releases/test/17-Beta/Fedora/x86_64/os/ >lang en_US.UTF-8 >keyboard us >timezone --utc America/Denver >network --bootproto=dhcp > >#Root password >rootpw --iscrypted REDACTED >sshpw --username=root --iscrypted REDACTED > ># 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 > ># Third Party Repositories >repo --name=fedora-chromium --baseurl=http://repos.fedorapeople.org/repos/spot/chromium/fedora-$releasever/$basearch >repo --name=texlive --baseurl=http://jnovy.fedorapeople.org/texlive/2012/packages.fc$releasever >#repo --name=rpmfusion-free --baseurl=http://mirrors.cs.byu.edu/rpmfusion/free/fedora/releases/$releasever/Everything/$basearch/os >#repo --name=rpmfusion-nonfree --baseurl=http://mirrors.cs.byu.edu/rpmfusion/nonfree/fedora/releases/$releasever/Everything/$basearch/os >#repo --name=rpmfusion-free-updates --baseurl=http://mirrors.cs.byu.edu/rpmfusion/free/fedora/updates/$releasever/$basearch >#repo --name=rpmfusion-nonfree-updates --baseurl=http://mirrors.cs.byu.edu/rpmfusion/nonfree/fedora/updates/$releasever/$basearch > ># Third Party Repositories: development version (remove at release time) >#repo --name=rpmfusion-free --baseurl=http://mirrors.cs.byu.edu/rpmfusion/free/fedora/development/$basearch/os >#repo --name=rpmfusion-nonfree --baseurl=http://mirrors.cs.byu.edu/rpmfusion/nonfree/fedora/development/$basearch/os > ># Include part commands from a file loaded in %pre >%include /tmp/part.include > ># 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-INSTALLATION >#---------------------------------------------------------# >%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 821966
:
585031
|
585032
|
585033
|
585034
|
585035
|
585036
|
585037
| 585038 |
585039