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 588226 Details for
Bug 827269
ksflatten ignoring nested includes
[?]
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.
failed flatten
test.ks.1.99-11.1 (text/plain), 4.29 KB, created by
Joey Boggs
on 2012-06-01 01:16:39 UTC
(
hide
)
Description:
failed flatten
Filename:
MIME Type:
Creator:
Joey Boggs
Created:
2012-06-01 01:16:39 UTC
Size:
4.29 KB
patch
obsolete
>#version=DEVEL ># Firewall configuration >firewall --disabled >repo --name="f16" --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=fedora-16&arch=x86_64 >repo --name="f16-updates" --mirrorlist=http://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f16&arch=x86_64 >repo --name="ovirt-stable-repo" --baseurl=http://ovirt.org/releases/stable/fedora/16 ># Keyboard layouts >keyboard usdevice virtio_blk >device virtio_pci >device scsi_wait_scan >device dm-multipath >device dm-round-robin >device dm-emc >device dm-rdac >device dm-hp-sw >device scsi_dh_rdac >device 3w-9xxx >device 3w-sas >device 3w-xxxx >device a100u2w >device aacraid >device aic79xx >device aic94xx >device arcmsr >device atp870u >device be2iscsi >device bfa >device BusLogic >device cciss >device cxgb3i >device dc395x >device fnic >device gdth >device hpsa >device hptiop >device imm >device initio >device ips >device libosd >device libsas >device libsrp >device lpfc >device megaraid >device megaraid_mbox >device megaraid_mm >device megaraid_sas >device mpt2sas >device mvsas >device osd >device osst >device pm8001 >device pmcraid >device qla1280 >device qla2xxx >device qla4xxx >device qlogicfas408 >device stex >device tmscsim >device ums-sddr09 >device ums-realtek >device ums-sddr55 >device ums-isd200 >device ums-alauda >device ums-freecom >device ums-cypress >device ums-jumpshot >device ums-onetouch >device ums-karma >device ums-usbat >device ums-datafab >device ums-eneub6250 ># System authorization information >auth --useshadow --enablemd5 ># System language >lang en_US.UTF-8 ># SELinux configuration >selinux --enforcing ># Installation logging level >logging --level=info > ># System services >services --enabled="auditd,ntpd,ntpdate,iptables,network,rsyslog,multipathd,snmpd,ovirt-early,ovirt,ovirt-post,ovirt-cim,anyterm,collectd,libvirt-qmf,matahari-host,libvirtd,cgconfig" ># System timezone >timezone --isUtc UTC ># System bootloader configuration >bootloader --append="nomodeset check rootflags=ro crashkernel=512M-2G:64M,2G-:128M elevator=deadline install quiet rd_NO_LVM" --location=mbr --timeout=30 ># Disk partitioning information >part / --fstype="ext2" --size=1280 > >%post >%include common-post.ks >%include ovirt16-post.ks >%end > >%post --nochroot >%include common-nochroot.ks > >%end > >%post --interpreter=image-minimizer --nochroot >%include common-minimizer.ks >%include ovirt16-minimizer.ks >%end > >%post >echo "Removing python source files" >find /usr -name '*.py' -exec rm -f {} \; >find /usr -name '*.pyo' -exec rm -f {} \; > >%end > >%post >echo -n "Creating manifest" ># Create post-image processing manifests >rpm -qa --qf '%{name}-%{version}-%{release}.%{arch} (%{SIGPGP:pgpsig})\n' | \ > sort > /manifest-rpm.txt >rpm -qa --qf '%{sourcerpm}\n' | sort -u > /manifest-srpm.txt ># collect all included licenses rhbz#601927 >rpm -qa --qf '%{license}\n' | sort -u > /manifest-license.txt ># dependencies >rpm -qa | xargs -n1 rpm -e --test 2> /manifest-deps.txt >echo -n "." > ># Takes about 4min >#find / -xdev -print -exec rpm -qf {} \; > /manifest-owns.txt ># Alternative takes about 8sec, results are slightly different >{ > # Get all owned files > rpm -qa | while read PKG > do > rpm -ql $PKG | while read FIL > do > [[ -e "$FIL" ]] && echo $FIL > done | sed "s#\$#\t\t\t$PKG#" > done > # Get all files on fs and mark them as not owned > find / -xdev | sed "s#\$#\t\t\tNot owned by any package.#" ># Just keep the first occurence of a file entry ># Unowned files will just occur once, ># owned once twice (just the firts entry is kept) >} | sort -u -k1,1 | sed "s#\t\t\t#\n#" > /manifest-owns.txt > > ># this one is kept in root for ovirt-rpmquery >rpm -qa --qf '%{NAME}\t%{VERSION}\t%{RELEASE}\t%{BUILDTIME}\n' | \ > sort > /rpm-qa.txt >echo -n "." > >du -akx --exclude=/var/cache/yum / > /manifest-file.txt >du -x --exclude=/var/cache/yum / > /manifest-dir.txt >echo -n "." >bzip2 /manifest-deps.txt /manifest-owns.txt /manifest-file.txt /manifest-dir.txt >echo -n "." > >%end > >%post --nochroot ># Move manifests to ISO >mv $INSTALL_ROOT/manifest-* $LIVE_ROOT/isolinux >echo "done" > ># only works on x86, x86_64 >if [ "$(uname -i)" = "i386" -o "$(uname -i)" = "x86_64" ]; then > if [ ! -d $LIVE_ROOT/LiveOS ]; then mkdir -p $LIVE_ROOT/LiveOS ; fi > cp /usr/bin/livecd-iso-to-disk $LIVE_ROOT/LiveOS > cp /usr/bin/livecd-iso-to-pxeboot $LIVE_ROOT/LiveOS >fi >%end > >%packages --excludedocs --nobase >%include common-pkgs.ks >%include ovirt16-pkgs.ks > >%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 827269
: 588226 |
588227
|
591669