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 688297 Details for
Bug 904702
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), 7.34 KB, created by
Larry O'Leary
on 2013-01-27 06:20:18 UTC
(
hide
)
Description:
File: ks.cfg
Filename:
MIME Type:
Creator:
Larry O'Leary
Created:
2013-01-27 06:20:18 UTC
Size:
7.34 KB
patch
obsolete
># Kickstart file ># >install >cdrom >lang en_US.UTF-8 >keyboard us >network --onboot yes --bootproto dhcp --hostname pinky-vm01 >timezone --utc America/Chicago > ># Security >rootpw --iscrypted $6$53or7GUffNbY.PiA$***** >selinux --enforcing >authconfig --enableshadow --passalgo=sha512 --enablefingerprint >firewall --enabled --service=ssh,samba-client,ipp-client,mdns >xconfig --startxonboot >services --enabled=chronyd > ># Fedora Repo >repo --name=fedora --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch >repo --name=updates --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch > > ># RPM Fusion Repo >repo --name=rpmfusion-free --cost=15 --baseurl=http://mirror.us.leaseweb.net/rpmfusion/free/fedora/releases/$releasever/Everything/$basearch/os >repo --name=rpmfusion-free-updates --cost=15 --baseurl=http://mirror.us.leaseweb.net/rpmfusion/free/fedora/updates/$releasever/$basearch >repo --name=rpmfusion-nonfree --cost=15 --baseurl=http://mirror.us.leaseweb.net/rpmfusion/nonfree/fedora/releases/$releasever/Everything/$basearch/os >repo --name=rpmfusion-nonfree-updates --cost=15 --baseurl=http://mirror.us.leaseweb.net/rpmfusion/nonfree/fedora/updates/$releasever/$basearch > ># Adobe Labs Repo >repo --name=adobe-linux --cost=20 --baseurl=http://linuxdownload.adobe.com/linux/$basearch > ># Dropbox Repo >repo --name=Dropbox --cost=20 --baseurl=http://linux.dropbox.com/fedora/$releasever/ > ># Local Repo >repo --name="Local Fedora" --cost=1 --baseurl=http://home01.gateway.2wire.net/isos/Fedora-$releasever-$basearch-DVD >repo --name="Local Home Repository for Fedora" --cost=5 --baseurl=http://home01.gateway.2wire.net/rpms/fedora/$releasever/$basearch > >firstboot --disable > >user --name=user01 --uid=1500 --gecos=... >user --name=user02 --uid=1501 --gecos=... >user --name=user03 --uid=1502 --gecos=... > >%packages >@admin-tools >@base >@base-x >@core >@editors >@firefox >@fonts >@games >@gnome-desktop >@gnome-games >@graphical-internet >@graphics >@hardware-support >@java >@libreoffice >@multimedia >@office >@sound-and-video >@standard >@system-tools >@printing >@smb-server > >-ibus-gnome3 > >VirtualBox >akmod-VirtualBox >adobe-release-x86_64 >autofs >ballbuster >blobby >cabextract >cadaver >calibre >cups-pdf >dconf-editor >dropbox-repo >easytag >eclipse-mylyn-cdt >eclipse-mylyn-pde >eclipse-quickrex >eclipse-shelled >eclipse-subclipse-graph >evolution-rss >evolution-spamassassin >extremetuxracer >ffmpeg >filezilla >flash-plugin >fuse-sshfs >gedit-plugins >gnome-tweak-tool >gok >google-talkplugin >gstreamer-plugins-bad >gstreamer-plugins-bad-free-extras >guake >heimdall >heimdall-frontend >home-local >hplip-gui >iperf3 >keepassx >libreoffice-langpack-en >livna-release >lsof >makemkv >meld >nautilus-actions >nautilus-dropbox >nautilus-image-converter >nautilus-open-terminal >nautilus-search-tool >nautilus-sound-converter >openclipart >openshot >openssh-server >pavucontrol >pdfshuffler >pdftk >rdesktop >rhythmbox-equalizer >rhythmbox-upnp >rpm-build >rpmfusion-nonfree-release >samba-winbind-clients >synergy >testdisk >vlc >wine >wireshark-gnome >xbmc >xguest >yum-plugin-downloadonly >yum-plugin-fastestmirror >yum-plugin-remove-with-leaves >yum-plugin-show-leaves >%end > >%post --log=/root/anaconda-ks-post.log > >enableDNSMasq() { > result=0 > echo "Configuring dnsmasq..." > > echo " Getting device list..." > _ifcfg='' > _iflist='' > for _ifcfg in /etc/sysconfig/network-scripts/ifcfg-*; do > _iflist="${_iflist} ${_ifcfg##*-}" > done > [ -z "${_iflist}" ] \ > && echo " No devices found." \ > || echo " Found devices: ${_iflist}" > > if [ ! -z "${_iflist}" ]; then > echo " Adding dhclient prepend domain-name-servers option to devices..." > _iface='' > for _iface in ${_iflist}; do > if [ "${_iface}" != "lo" ]; then > grep -q '^prepend domain-name-servers[ \t]+.*127.0.0.1;$' /etc/dhclient-${_iface}.conf \ > || echo "prepend domain-name-servers 127.0.0.1;" >> /etc/dhclient-${_iface}.conf > ret=$? && [ $result -eq 0 ] && result=$ret > [ $ret -ne 0 ] \ > && echo ' WARNING: There may have been a problem writing to /etc/dhclient-'"${_iface}"'.conf!' \ > || echo ' dhclient configuration for device '"${_iface}"' done.' > fi > done > fi > > echo ' Updating dnsmasq configuration for local interface only...' > # Make our configuration updates > grep -q '^#*listen-address=.*' /etc/dnsmasq.conf \ > && sed -i 's/^#*listen-address=.*/listen-address=127.0.0.1/g' /etc/dnsmasq.conf \ > || echo "listen-address=127.0.0.1" >> /etc/dnsmasq.conf > ret=$? && [ $result -eq 0 ] && result=$ret > grep -q '^#*bind-interfaces' /etc/dnsmasq.conf \ > && sed -i 's/^#*bind-interfaces/bind-interfaces/g' /etc/dnsmasq.conf \ > || echo "bind-interfaces" >> /etc/dnsmasq.conf > ret=$? && [ $result -eq 0 ] && result=$ret > [ $ret -ne 0 ] && echo ' WARNING: There may have been a problem writing to /etc/dnsmasq.conf!' > > echo ' Enabling dnsmasq service...' > systemctl enable dnsmasq.service > ret=$? && [ $result -eq 0 ] && result=$ret > > [ $result -eq 0 ] && echo "dnsmasq has been enabled." || echo "There was a problem enabling dnsmasq." > return $result >} > >setupUserSkel() { > result=0 > echo "Performing setup on /etc/skel..." > > echo " Creating user places directories..." > mkdir -p /etc/skel/Documents /etc/skel/Downloads /etc/skel/Music \ > /etc/skel/Pictures /etc/skel/Public /etc/skel/Templates /etc/skel/Videos > > echo " Creating Shared Documents symlink..." > ln -sf ../../shared/Documents /etc/skel/Documents/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > ln -sf ../../shared/Download /etc/skel/Downloads/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > ln -sf ../../shared/Music /etc/skel/Music/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > ln -sf ../../shared/Pictures /etc/skel/Pictures/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > ln -sf ../../shared/Public /etc/skel/Public/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > ln -sf ../../shared/Templates /etc/skel/Templates/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > ln -sf ../../shared/Videos /etc/skel/Videos/Shared > ret=$? && [ $result -eq 0 ] && result=$ret > > [ $result -eq 0 ] && echo "Finished with setup of /etc/skel." || echo "There was a problem with one or more actions when setting up /etc/skel." > return $result >} > >function setupAutoFS() { > result=0 > echo "Configuring autofs..." > > echo " Adding home01 shared mount..." > grep -q '^\/-.*\/etc\/auto.direct' /etc/auto.master \ > || echo -e "/-\t/etc/auto.direct" >> /etc/auto.master > ret=$? && [ $result -eq 0 ] && result=$ret > # TODO: This needs to test using regex but regex doesn't seem to work > # grep -q '^\/home\/shared[ \t]+*.*$' /etc/auto.direct > echo -e "/home/shared\t-fstype=nfs4,rw,nodev,nosuid,sync,_netdev,proto=tcp,retry=1,rsize=32768,wsize=32768,hard,intr\thome01.gateway.2wire.net:/home/shared" >> /etc/auto.direct > ret=$? && [ $result -eq 0 ] && result=$ret > [ $ret -ne 0 ] && echo ' WARNING: May have failed to add home01 shared automount!' > > [ $result -eq 0 ] && echo "Finished configuring autofs." || echo 'There was a problem when configuring autofs!' > return $result >} > >result=0 >enableDNSMasq >ret=$? && [ $result -eq 0 ] && result=$ret >setupAutoFS >ret=$? && [ $result -eq 0 ] && result=$ret >setupUserSkel >ret=$? && [ $result -eq 0 ] && result=$ret >exit $result > >%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 904702
:
688293
|
688294
|
688295
|
688296
| 688297 |
688298
|
688299
|
688300
|
688301