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 865721 Details for
Bug 1067707
TypeError: %d format: a number is required, not NoneType
[?]
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: anaconda-tb
anaconda-tb (text/plain), 208.91 KB, created by
Orion Poplawski
on 2014-02-20 22:20:04 UTC
(
hide
)
Description:
File: anaconda-tb
Filename:
MIME Type:
Creator:
Orion Poplawski
Created:
2014-02-20 22:20:04 UTC
Size:
208.91 KB
patch
obsolete
>anaconda 21.23-1 exception report >Traceback (most recent call first): > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 942, in execute > size = Size(spec="%d MiB" % self.size) > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 929, in execute > p.execute(storage, ksdata, instClass) > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 1816, in doKickstartStorage > ksdata.partition.execute(storage, ksdata, instClass) > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/tui/spokes/storage.py", line 313, in execute > doKickstartStorage(self.storage, self.data, self.instclass) > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/tui/hubs/summary.py", line 55, in setup > spoke.execute() > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/tui/__init__.py", line 166, in setup > should_schedule = obj.setup(self.ENVIRONMENT) > File "/sbin/anaconda", line 1128, in <module> > anaconda._intf.setup(ksdata) >TypeError: %d format: a number is required, not NoneType > >Local variables in innermost frame: >instClass: <pyanaconda.installclass.DefaultInstall object at 0x7f05d0875b90> >devicetree: <blivet.devicetree.DeviceTree object at 0x7f05d0875250> >self: part swap --recommended > >storage: <blivet.Blivet object at 0x7f05d0760790> >ksdata: #version=DEVEL ># System authorization information >auth --enablemd5 --enableshadow --enableldap --enableldapauth --ldapserver=ldap.cora.nwra.com,ldap2.cora.nwra.com --ldapbasedn=dc=nwra,dc=com --enableldaptls --ldaploadcacert=http://www.cora.nwra.com/cgi-bin/getca.pl ># Install OS instead of upgrade >install >repo --name="rpmfusion-nonfree-development-rawhide-x86_64" --baseurl=http://rpmfusion.cora.nwra.com/nonfree/fedora/development/rawhide/x86_64/os >repo --name="rpmfusion-free-development-rawhide-x86_64" --baseurl=http://rpmfusion.cora.nwra.com/free/fedora/development/rawhide/x86_64/os >repo --name="cora-fdev-x86_64" --baseurl=http://corpms.cora.nwra.com/fedora/development/x86_64 >repo --name="adobe-linux-x86_64" --baseurl=http://adobe.cora.nwra.com/linux/x86_64/ >repo --name="adobe-linux-i386" --baseurl=http://adobe.cora.nwra.com/linux/i386/ ># Reboot after installation >reboot ># Use network installation >url --url="http://fedora.cora.nwra.com/development/rawhide/x86_64/os/" ># Use text mode install >text ># Do not configure the X Window System >skipx ># Firewall configuration >firewall --enabled --service=ssh >firstboot --disable >ignoredisk --only-use=sda ># Keyboard layouts ># old format: keyboard us ># new format: >keyboard --vckeymap=us --xlayouts='us' ># System language >lang en_US.UTF-8 > ># Network information >network --bootproto=dhcp --device=ens3 >network --hostname=vmrawhide.cora.nwra.com ># Root password >rootpw --iscrypted $1$9DQYCOkm$mX1ytTm6CBkdZGAfy4hmj. ># SELinux configuration >selinux --enforcing ># System timezone >timezone America/Denver --isUtc ># System bootloader configuration >bootloader --location=mbr --boot-drive=sda ># Clear the Master Boot Record >zerombr ># Partition clearing information >clearpart --all --initlabel ># Disk partitioning information >part / --grow --size=3000 >part swap --recommended > >%pre >set -x -v >exec 1>/tmp/ks-pre.log 2>&1 > ># Once root's homedir is there, copy over the log. >while : ; do > sleep 10 > if [ -d /mnt/sysimage/root ]; then > cp /tmp/ks-pre.log /mnt/sysimage/root/ > logger "Copied %pre section log to system" > break > fi >done & > > >wget "http://cobbler.cora.nwra.com/cblr/svc/op/trig/mode/pre/system/vmrawhide" -O /dev/null ># Start pre_install_network_config generated code ># generic functions to be used later for discovering NICs >mac_exists() { > if which ip 2>/dev/null >/dev/null; then > ip -o link | grep -i "$1" 2>/dev/null >/dev/null > return $? > elif which esxcfg-nics 2>/dev/null >/dev/null; then > esxcfg-nics -l | grep -i "$1" 2>/dev/null >/dev/null > return $? > else > ifconfig -a | grep -i "$1" 2>/dev/null >/dev/null > return $? > fi >} >get_ifname() { > if which ip 2>/dev/null >/dev/null; then > IFNAME=$(ip -o link | grep -i "$1" | sed -e 's/^[0-9]*: //' -e 's/:.*//') > elif which esxcfg-nics 2>/dev/null >/dev/null; then > IFNAME=$(esxcfg-nics -l | grep -i "$1" | cut -d " " -f 1) > else > IFNAME=$(ifconfig -a | grep -i "$1" | cut -d " " -f 1) > if [ -z $IFNAME ]; then > IFNAME=$(ifconfig -a | grep -i -B 2 "$1" | sed -n '/flags/s/:.*$//p') > fi > fi >} > ># Start of code to match cobbler system interfaces to physical interfaces by their mac addresses ># Start eth0 ># Configuring eth0 (00:16:3e:47:dd:f8) >if mac_exists 00:16:3e:47:dd:f8 >then > get_ifname 00:16:3e:47:dd:f8 > echo "network --device=$IFNAME --bootproto=dhcp" >> /tmp/pre_install_network_config >fi ># End pre_install_network_config generated code > ># Enable installation monitoring >wget -O /tmp/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon" >python /tmp/anamon --name "vmrawhide" --server "cobbler.cora.nwra.com" --port "80" > >#%base ># More space for yum downloads >mount -o remount,size=100% /tmp > ># Setup login.defs ># Once the /etc directory is there, setup login.defs >while : >do > sleep 10 > if [ -d /mnt/sysimage/etc ] > then > cat > /mnt/sysimage/etc/login.defs <<EOF ># ># Please note that the parameters in this configuration file control the ># behavior of the tools from the shadow-utils component. None of these ># tools uses the PAM mechanism, and the utilities that use PAM (such as the ># passwd command) should therefore be configured elsewhere. Refer to ># /etc/pam.d/system-auth for more information. ># > ># *REQUIRED* ># Directory where mailboxes reside, _or_ name of file, relative to the ># home directory. If you _do_ define both, MAIL_DIR takes precedence. ># QMAIL_DIR is for Qmail ># >#QMAIL_DIR Maildir >MAIL_DIR /var/spool/mail >#MAIL_FILE .mail > ># Password aging controls: ># ># PASS_MAX_DAYS Maximum number of days a password may be used. ># PASS_MIN_DAYS Minimum number of days allowed between password changes. ># PASS_MIN_LEN Minimum acceptable password length. ># PASS_WARN_AGE Number of days warning given before a password expires. ># >PASS_MAX_DAYS 365 >PASS_MIN_DAYS 5 >PASS_MIN_LEN 10 >PASS_WARN_AGE 14 > ># ># Min/max values for automatic uid selection in useradd ># >UID_MIN 500 >UID_MAX 60000 ># System accounts >SYS_UID_MIN 201 >SYS_UID_MAX 999 > ># ># Min/max values for automatic gid selection in groupadd ># >GID_MIN 500 >GID_MAX 60000 ># System accounts >SYS_GID_MIN 201 >SYS_GID_MAX 999 > ># ># If defined, this command is run when removing a user. ># It should remove any at/cron/print jobs etc. owned by ># the user to be removed (passed as the first argument). ># >#USERDEL_CMD /usr/sbin/userdel_local > ># ># If useradd should create home directories for users by default ># On RH systems, we do. This option is overridden with the -m flag on ># useradd command line. ># >CREATE_HOME yes > ># The permission mask is initialized to this value. If not specified, ># the permission mask will be initialized to 022. >UMASK 027 > ># This enables userdel to remove user groups if no members exist. ># >USERGROUPS_ENAB yes > ># Use SHA512 to encrypt password. >ENCRYPT_METHOD MD5 > >MD5_CRYPT_ENAB yes >EOF > logger "Setup /etc/login.defs" > break > fi >done & > ># Load nfs kernel module for nfs4 (needed for EL6) >modprobe nfs > ># F20? >modprobe nfsv4 > ># Debug idmapping ># sed -i -e 's/nfsidmap/nfsidmap -vvvv/' /etc/request-key.d/id_resolver.conf ># Remove the installer's request-key config, preempts rpc.idmapd in %post >rm /etc/request-key.d/id_resolver.conf > > >%end > >%post >set -x -v >exec 1>/root/ks-post.log 2>&1 > >ls -l /etc/systemd/system/default.target ># Cobbler standard > > > ># Start post_install_network_config generated code > ># create a working directory for interface scripts >mkdir /etc/sysconfig/network-scripts/cobbler >cp /etc/sysconfig/network-scripts/ifcfg-lo /etc/sysconfig/network-scripts/cobbler/ > ># Start configuration for eth0 >echo "DEVICE=eth0" > /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "ONBOOT=yes" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "HWADDR=00:16:3E:47:DD:F8" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >IFNAME=$(ip -o link | grep -i '00:16:3E:47:DD:F8' | sed -e 's/^[0-9]*: //' -e 's/:.*//') >if [ -f "/etc/modprobe.conf" ] && [ $IFNAME ]; then > grep $IFNAME /etc/modprobe.conf | sed "s/$IFNAME/eth0/" >> /etc/modprobe.conf.cobbler > grep -v $IFNAME /etc/modprobe.conf >> /etc/modprobe.conf.new > rm -f /etc/modprobe.conf > mv /etc/modprobe.conf.new /etc/modprobe.conf >fi >echo "TYPE=Ethernet" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "BOOTPROTO=dhcp" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 ># End configuration for eth0 > >sed -i 's/ONBOOT=yes/ONBOOT=no/g' /etc/sysconfig/network-scripts/ifcfg-eth* > >rm -f /etc/sysconfig/network-scripts/ifcfg-eth0 >mv /etc/sysconfig/network-scripts/cobbler/* /etc/sysconfig/network-scripts/ >rm -r /etc/sysconfig/network-scripts/cobbler >if [ -f "/etc/modprobe.conf" ]; then >cat /etc/modprobe.conf.cobbler >> /etc/modprobe.conf >rm -f /etc/modprobe.conf.cobbler >fi ># End post_install_network_config generated code > > > > ># Start download cobbler managed config files (if applicable) ># End download cobbler managed config files (if applicable) > ># Start koan environment setup >echo "export COBBLER_SERVER=cobbler.cora.nwra.com" > /etc/profile.d/cobbler.sh >echo "setenv COBBLER_SERVER cobbler.cora.nwra.com" > /etc/profile.d/cobbler.csh ># End koan environment setup > ># begin Red Hat management server registration ># not configured to register to any Red Hat management server (ok) ># end Red Hat management server registration > ># Begin cobbler registration ># skipping for system-based installation ># End cobbler registration > ># CoRA post >echo hosttype=server >> /etc/system_facts > >#%base ># Time >ntpdate earth > >ln -s /nfs/local /opt/local > ># Cleanup /etc/hosts >cat /etc/hosts >sed -i -e '/^192\.168/d' /etc/hosts >sed -i -e '/^10\.10/d' /etc/hosts ># sed -i -e "s/ *vmrawhide//" /etc/hosts > ># Check names >uname -n >hostname > >/sbin/chkconfig --del btseed >/sbin/chkconfig --del bttrack >/sbin/chkconfig --del pcscd > ># Memtest >if [ -x /usr/sbin/memtest-setup ] >then > sh -x /usr/sbin/memtest-setup >fi > ># Backup over ssh >ssh-keygen -N '' -f /root/.ssh/backup_rsa > ># NetDRMS >ln -s /data/cora/SUMS /SUM0 > >#IB only >lspci | grep -q InfiniBand && chkconfig rdma on > >#%server ># Faster boot >ed /boot/grub/grub.conf <<'EOF' >/timeout=/s/=.*/=0/ >wq >EOF > ># No rhgb >sed -i -e 's/ rhgb//' /boot/grub/grub.conf > ># grub2 >sed -i -e s/TIMEOUT=.*/TIMEOUT=0/ -e 's/ rhgb//' /etc/default/grub >grub2-mkconfig -o /boot/grub2/grub.cfg >sed -i -e 's/^set default=.*/set default=0/' /boot/grub2/grub.cfg > ># Use old style networking >chkconfig network on > > ># Samba sharing >semanage fcontext -a -t samba_share_t '/export(/.*)' > ># Dell OMSA >if [ `facter manufacturer` = Dell ] >then > wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash > yum -y install firmware-tools firmware-addon-dell > yum -y install $(bootstrap_firmware) >fi > >#%install ># Bug https://bugzilla.redhat.com/show_bug.cgi?id=874806 workaround >/usr/sbin/authconfig --update --nostart --ldaploadcacert=http://www.cora.nwra.com/cgi-bin/getca.pl > ># Make sure the rpc_pipefs filesystem is available for rpc.idmapd >/bin/mount -t rpc_pipefs sunrpc /var/lib/nfs/rpc_pipefs ># Start rpc.idmapd for nfs4 >rpc.idmapd -v ># Start sssd for username lookup >sssd ># Someday maybe with kerberos? ># rpc.gssd -v ># Mount with nfs4 >nfsopts="-t nfs4" > ># Make /tmp a tmpfs filesystem >echo "tmpfs /tmp tmpfs defaults 0 0" >> /etc/fstab > ># Forward login info to earth >if [ -f /etc/syslog.conf ] >then > echo -e "\n#Forward login info to earth\nauthpriv.*\t\t\t\t@loghost" >> /etc/syslog.conf >else > cat >> /etc/rsyslog.d/forward.conf <<'EOF' > ># sysklogd template for forwarding to sysklogd server >$template sysklogd,"<%PRI%>%TIMESTAMP% %syslogtag%%msg%" > ># Forward login info to earth >authpriv.* @loghost;sysklogd >EOF >fi > ># Root key >mkdir /root/.ssh >cat > /root/.ssh/authorized_keys <<EOF >ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxygs+sZRxQY7c4VnwP3/rTdNQNAn8pIY8eOhvE+z0gKs/175v1A2G0fBAwpRFdZeqDQVzrUAkNA0bK5sqQkJAkwHSDQh7Il1kMdqnPgxeQjTYrAR+W0WA3q9eLEu1eWn4Dp8g1Os59dJrahxORFDgcAMK0pM4TCgxcy0WlBmCWMjzci286AJo5LUIH8WuZ5B/O8r7azR8MplPO+zQeevbmG7APIKigu/m7zlA5eoQmB0u9ErrBywzVhv4si5fDw61V/quDfEvZITGUDIcXRaWK8H2jVSR4ANT+jf9aIOUpXf83mtcNyI0G1cz37bJGvcp0pbTq+GKlGI9ogpMzK1rw== >EOF >/sbin/restorecon -r -v /root/.ssh > ># Updates >/sbin/chkconfig yum-cron on > ># Puppet >/sbin/chkconfig puppet on >systemctl enable puppetagent.service > ># Setup NTP >/sbin/chkconfig ntpdate on >/sbin/chkconfig ntpd on > ># Kerberized NFSv4 >#/sbin/chkconfig rpcgssd on >#/bin/systemctl enable nfs-secure.service > ># Autofs >/sbin/chkconfig autofs on > ># lm_sensors >/usr/sbin/sensors-detect < /dev/null > ># Autofs krb5 NFSv4, NFS homedirs, silence vbetool >time setsebool -P allow_gssd_read_tmp=1 use_nfs_home_dirs=1 vbetool_mmap_zero_ignore=1 > ># Restore from backup >cat /etc/resolv.conf >mkdir -p /data/backup /nfs/local >if [ vmrawhide != saga ] >then > mount -v $nfsopts saga:/backup /data/backup > mount -v $nfsopts saga:/local /nfs/local >else > mount -v $nfsopts earth:/export/backup /data/backup > mount -v $nfsopts earth:/export/backup/saga/export/local /nfs/local >fi > > ># Restore unique state from backup >if [ ! -d /export/home ] >then > sysonly="-s" >fi >sh -x /nfs/local/sbin/restore $sysonly > ># Unmount NFS mounts >umount -l /nfs/local /data/backup >rm -rf --one-file-system /data > ># Debug >ls -l /etc/mtab > ># Make link if needed >if [ -d /export/local ] >then > rmdir /nfs/local > ln -s /export/local /nfs/local >fi > ># Cleanup old yum repos >rm -r /var/cache/yum/* > ># Firewalld issue in Fedora 18+ >systemctl disable firewalld.service > ># Turn on printer browsing F19+ >systemctl enable cups-browsed.service > >#%host specific > ># Setup RAID1 grub boot ># This determines if /boot is on a raid1 device, and if so installs grub on the second device. ># Get the device of the /boot filesystem, if any >bootdev=`mount | awk '$3 == "/boot" { print $1 }'` ># Check that it is an md device >if [ "${bootdev/[0123456789]/}" = /dev/md ] >then > # Get the md name - used in /proc/mdstat > md=`basename $bootdev` > > # Get the second device in the array, assuming 0,1 order and first in all set > dev=`awk -v md=$md '$1 == md { gsub("\\\[[01]\\\]","",$6); print $6 }' /proc/mdstat` > > # Get the partition number, grub partition number is 1 less > grubpart=$((${dev/sd[a-z]/} - 1)) > > # Get the grub disk name from the device.map > grubdisk=`awk -v disk=${dev/[0-9]/} '$2 ~ disk { print $1 }' /boot/grub/device.map` > > # Insert the grub partition number into the disk name to get the grub root name > grubroot=${grubdisk/)/,$grubpart)} > > # Run grub to install onto the second device > /sbin/grub --device-map=/boot/grub/device.map <<EOF >root $grubroot >setup $grubdisk >EOF >fi > ># Enable post-install boot notification > >wget -O /usr/local/sbin/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon" >wget -O /etc/rc.d/init.d/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon.init" > >chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon >test -d /selinux && restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon > >chkconfig --add anamon > >cat << __EOT__ > /etc/sysconfig/anamon >COBBLER_SERVER="cobbler.cora.nwra.com" >COBBLER_PORT="80" >COBBLER_NAME="vmrawhide" >LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg" >__EOT__ > > ># Temp fix for F16 Alpha ># Start final steps > >wget "http://cobbler.cora.nwra.com/cblr/svc/op/ks/system/vmrawhide" -O /root/cobbler.ks >wget "http://cobbler.cora.nwra.com/cblr/svc/op/trig/mode/post/system/vmrawhide" -O /dev/null >wget "http://cobbler.cora.nwra.com/cblr/svc/op/nopxe/system/vmrawhide" -O /dev/null ># End final steps >ls -l /etc/systemd/system/default.target >%end > >%packages >@standard >CoRA >CoRA-release >abrt >apcupsd >autofs >bash-completion >chrony >freeipmi >glibc.i686 >kexec-tools >krb5-workstation >libgcc.i686 >libsss_autofs >logwatch >ntpdate >pigz >policycoreutils-python >puppet >python-ethtool >ruby-libs >selinux-policy-targeted >sendmail >sendmail-cf >strace >sysstat >vim-enhanced >yum-cron >zabbix-agent >-NetworkManager >-PackageKit-yum-plugin >-alsa-utils >-b43-fwcutter >-b43-openfwwf >-bluez >-bluez-utils >-ccid >-coolkey >-dosfstools >-dump >-eject >-exim >-fbset >-finger >-firstboot-tui >-fprintd-pam >-gnome-packagekit >-gnu-efi >-gpm >-hotplug >-hunspell >-hunspell-en >-idl >-idl-common >-initial-setup >-iprutils >-irda-utils >-isdn4k-utils >-kpackagekit >-lftp >-lrzsz >-lvm2 >-man-pages >-minicom >-mlocate >-nano >-parted >-pcmciautils >-pcsc-lite >-pinfo >-postfix >-ppp >-prelink >-rdate >-redhat-lsb >-rfkill >-rp-pppoe >-rpmfusion-free-release >-rpmfusion-nonfree-release >-rsh >-setuptool >-sl-release-notes >-smartmontools >-sox >-specspo >-ssmtp >-statserial >-stunnel >-system-config-boot >-system-config-firewall-tui >-system-config-keyboard >-system-config-mouse >-system-config-network-tui >-talk >-telnet >-wireless-tools >-words >-wvdial >-ypbind >-yum-presto >-yum-updatesd > >%end > > >kwargs: {} > > >Anaconda instance, containing members: >_instClass: DefaultInstall instance, containing members: >_intf: TextUserInterface instance, containing members: > _intf.instclass: Already dumped (DefaultInstall instance) > _intf.productTitle: Anaconda > _intf._meh_interface: TextIntf instance, containing members: > _intf._meh_interface._io: IOHandler instance, containing members: > _intf._meh_interface._io.out_func: <built-in function print> > _intf._meh_interface._io.in_func: <bound method App.raw_input of <pyanaconda.ui.tui.simpleline.base.App object at 0x7f05cd379a50>> > _intf._meh_interface.screen: None > _intf.isFinal: True > _intf.storage: Blivet instance, containing members: > _intf.storage.clearPartChoice: None > _intf.storage.eddDict: {'sda': 128} > _intf.storage.dasd: DASD instance, containing members: > _intf.storage.dasd.dasdfmt: /sbin/dasdfmt > _intf.storage.dasd.commonArgv: [-y, -d, cdl, -b, 4096] > _intf.storage.dasd.started: True > _intf.storage.dasd.totalCylinders: 0 > _intf.storage.dasd._maxFormatJobs: 0 > _intf.storage.dasd._devices: [] > _intf.storage.dasd._completedCylinders: 0.0 > _intf.storage.dasd._dasdlist: [] > _intf.storage.roots: [Root instance, containing members: > mounts: {'/': existing 8.99 GiB partition sda3 (17) >} > swaps: [existing 1 GiB partition sda2 (11) >] > name: Fedora Linux 20 for x86_64 >] > _intf.storage.zfcp: ZFCP instance, containing members: > _intf.storage.zfcp.down: False > _intf.storage.zfcp.hasReadConfig: True > _intf.storage.zfcp.intf: None > _intf.storage.zfcp.fcpdevs: set([]) > _intf.storage._defaultFSType: ext4 > _intf.storage.autoPartEscrowCert: None > _intf.storage.iscsi: iscsi instance, containing members: > _intf.storage.iscsi.initiatorSet: False > _intf.storage.iscsi.ifaces: {} > _intf.storage.iscsi.started: False > _intf.storage.iscsi._initiator: Skipped > _intf.storage.iscsi.discovered_targets: {} > _intf.storage.iscsi.ibftNodes: [] > _intf.storage.escrowCertificates: {} > _intf.storage.fsset: FSSet instance, containing members: > _intf.storage.fsset.origFStab: None > _intf.storage.fsset._fstab_swaps: set([]) > _intf.storage.fsset._usb: None > _intf.storage.fsset.devicetree: DeviceTree instance, containing members: > _intf.storage.fsset.devicetree.dasd: Already dumped (DASD instance) > _intf.storage.fsset.devicetree.populated: True > _intf.storage.fsset.devicetree.exclusiveDisks: [] > _intf.storage.fsset.devicetree._actions: [ActionDestroyFormat instance, containing members: > device: Already dumped (PartitionDevice instance) > origFormat: Ext4FS instance, containing members: > origFormat._label: None > origFormat.errors: False > origFormat.uuid: b5898e82-f7d8-4ec2-a093-7dc6b9f21644 > origFormat.exists: True > origFormat._mountpoint: None > origFormat._majorminor: 008003 > origFormat._minInstanceSize: 1.37 GiB > origFormat._mountType: ext4 > origFormat.fsprofile: None > origFormat._targetSize: 8.99 GiB > origFormat.dirty: False > origFormat._size: Already dumped (Size instance) > origFormat.mountopts: None > origFormat.mountpoint: None > origFormat.id: 21 > origFormat._device: /dev/sda3 > id: 62 >, ActionDestroyDevice instance, containing members: > device: Already dumped (PartitionDevice instance) > id: 64 >, ActionDestroyFormat instance, containing members: > device: Already dumped (PartitionDevice instance) > origFormat: existing swap > id: 65 >, ActionDestroyDevice instance, containing members: > device: Already dumped (PartitionDevice instance) > id: 67 >, ActionDestroyDevice instance, containing members: > device: existing 1 MiB partition sda1 (6) > id: 68 >, ActionDestroyFormat instance, containing members: > device: existing 10 GiB disk sda (1) with non-existent msdos disklabel > origFormat: existing msdos disklabel > id: 69 >, ActionDestroyFormat instance, containing members: > device: Already dumped (DiskDevice instance) > origFormat: existing None > id: 71 >, ActionCreateFormat instance, containing members: > device: Already dumped (DiskDevice instance) > origFormat: existing None > id: 74 >, ActionCreateDevice instance, containing members: > device: non-existent 2.92 GiB partition req0 (76) with non-existent ext4 filesystem mounted at / > id: 78 >, ActionCreateFormat instance, containing members: > device: Already dumped (PartitionDevice instance) > origFormat: non-existent None > id: 79 >] > _intf.storage.fsset.devicetree.iscsi: Already dumped (iscsi instance) > _intf.storage.fsset.devicetree._cleanup: False > _intf.storage.fsset.devicetree._devices: [Already dumped (DiskDevice instance) >, FileDevice instance, containing members: > major: 0 > _partedDevice: None > exists: True > _size: 0 > id: 23 > controllable: False > uuid: None > _format: existing None > parents: [] > deviceLinks: [] > minor: 0 > fstabComment: Skipped > bus: Skipped > sysfsPath: Skipped > _targetSize: 0 > _model: Skipped > kids: 1 > _vendor: Skipped > _name: /tmp/curl_fetch_url1/squashfs.img (deleted) > protected: False > originalFormat: existing None > _serial: None >, LoopDevice instance, containing members: > major: 0 > _partedDevice: None > exists: True > _size: 0 > id: 26 > controllable: False > uuid: None > _format: existing None > parents: [Already dumped (FileDevice instance) >] > deviceLinks: [] > minor: 0 > fstabComment: Skipped > bus: Skipped > sysfsPath: Skipped > _targetSize: 0 > _model: Skipped > kids: 0 > _vendor: Skipped > _name: loop0 > protected: False > originalFormat: existing None > _serial: None >, FileDevice instance, containing members: > major: 0 > _partedDevice: None > exists: True > _size: 0 > id: 32 > controllable: False > uuid: None > _format: existing None > parents: [] > deviceLinks: [] > minor: 0 > fstabComment: Skipped > bus: Skipped > sysfsPath: Skipped > _targetSize: 0 > _model: Skipped > kids: 1 > _vendor: Skipped > _name: /LiveOS/rootfs.img > protected: False > originalFormat: existing None > _serial: None >, LoopDevice instance, containing members: > major: 0 > _partedDevice: None > exists: True > _size: 0 > id: 35 > controllable: False > uuid: None > _format: Ext4FS instance, containing members: > _format._label: Anaconda > _format.errors: False > _format.uuid: cecb21ba-a5f4-4085-802e-07f8b6968caf > _format.exists: True > _format._mountpoint: None > _format._majorminor: None > _format._minInstanceSize: 0 B > _format._mountType: ext4 > _format.fsprofile: None > _format._targetSize: 2 GiB > _format.dirty: False > _format._size: Already dumped (Size instance) > _format.mountopts: None > _format.mountpoint: None > _format.id: 39 > _format._device: /dev/loop1 > parents: [Already dumped (FileDevice instance) >] > deviceLinks: [/dev/disk/by-label/Anaconda, /dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf] > minor: 0 > fstabComment: Skipped > bus: Skipped > sysfsPath: Skipped > _targetSize: 0 > _model: Skipped > kids: 1 > _vendor: Skipped > _name: loop1 > protected: False > originalFormat: Ext4FS instance, containing members: > originalFormat._label: Anaconda > originalFormat.exists: True > originalFormat._mountpoint: None > originalFormat.mountpoint: None > originalFormat._majorminor: None > originalFormat._targetSize: Already dumped (Size instance) > originalFormat._minInstanceSize: Already dumped (Size instance) > originalFormat.mountopts: None > originalFormat._size: Already dumped (Size instance) > originalFormat.id: 39 > originalFormat._device: /dev/loop1 > originalFormat.errors: False > originalFormat.uuid: cecb21ba-a5f4-4085-802e-07f8b6968caf > originalFormat._mountType: ext4 > originalFormat.fsprofile: None > originalFormat.dirty: False > _serial: None >, FileDevice instance, containing members: > major: 0 > _partedDevice: None > exists: True > _size: 0 > id: 41 > controllable: False > uuid: None > _format: existing None > parents: [] > deviceLinks: [] > minor: 0 > fstabComment: Skipped > bus: Skipped > sysfsPath: Skipped > _targetSize: 0 > _model: Skipped > kids: 1 > _vendor: Skipped > _name: /overlay (deleted) > protected: False > originalFormat: existing None > _serial: None >, LoopDevice instance, containing members: > major: 0 > _partedDevice: None > exists: True > _size: 0 > id: 44 > controllable: False > uuid: None > _format: existing None > parents: [Already dumped (FileDevice instance) >] > deviceLinks: [] > minor: 0 > fstabComment: Skipped > bus: Skipped > sysfsPath: Skipped > _targetSize: 0 > _model: Skipped > kids: 1 > _vendor: Skipped > _name: loop2 > protected: False > originalFormat: existing None > _serial: None >, existing 2 GiB dm live-rw (50) with existing ext4 filesystem >, existing 2 GiB dm live-base (56) with existing ext4 filesystem >, Already dumped (PartitionDevice instance) >] > _intf.storage.fsset.devicetree.ignoredDisks: [] > _intf.storage.fsset.devicetree._completed_actions: [] > _intf.storage.fsset.devicetree.names: [sda, loop0, /tmp/curl_fetch_url1/squashfs.img (deleted), loop1, /LiveOS/rootfs.img, loop2, /overlay (deleted), live-rw, live-base] > _intf.storage.fsset.devicetree.liveBackingDevice: None > _intf.storage.fsset.devicetree.protectedDevNames: [] > _intf.storage.fsset.devicetree.unusedRaidMembers: [] > _intf.storage.fsset.devicetree.diskImages: {} > _intf.storage.fsset.devicetree._hidden: [] > _intf.storage.fsset.devicetree.protectedDevSpecs: [] > _intf.storage.fsset.preserveLines: [] > _intf.storage.fsset._run: None > _intf.storage.fsset._devshm: None > _intf.storage.fsset._dev: None > _intf.storage.fsset.blkidTab: None > _intf.storage.fsset._proc: None > _intf.storage.fsset.active: False > _intf.storage.fsset.cryptTab: None > _intf.storage.fsset._devpts: None > _intf.storage.fsset._sysfs: None > _intf.storage.fsset._selinux: None > _intf.storage.config: StorageDiscoveryConfig instance, containing members: > _intf.storage.config.clearPartType: 1 > _intf.storage.config.clearNonExistent: False > _intf.storage.config.ignoredDisks: [] > _intf.storage.config.protectedDevSpecs: [] > _intf.storage.config.ignoreDiskInteractive: False > _intf.storage.config.exclusiveDisks: [] > _intf.storage.config.clearPartDevices: [] > _intf.storage.config.zeroMbr: True > _intf.storage.config.diskImages: {} > _intf.storage.config.clearPartDisks: [] > _intf.storage.config.initializeDisks: True > _intf.storage.size_sets: [] > _intf.storage.autoPartType: 2 > _intf.storage._bootloader: GRUB2 instance, containing members: > _intf.storage._bootloader._disk_order: [] > _intf.storage._bootloader.console_options: Skipped > _intf.storage._bootloader.console: Skipped > _intf.storage._bootloader.skip_bootloader: False > _intf.storage._bootloader.warnings: [] > _intf.storage._bootloader.chain_images: [] > _intf.storage._bootloader.stage2_is_preferred_stage1: False > _intf.storage._bootloader.disks: [Already dumped (DiskDevice instance) >] > _intf.storage._bootloader.problems: [] > _intf.storage._bootloader._update_only: False > _intf.storage._bootloader._default_image: None > _intf.storage._bootloader.stage2_device: None > _intf.storage._bootloader.encrypted_password: Skipped > _intf.storage._bootloader.errors: [] > _intf.storage._bootloader.stage1_device: None > _intf.storage._bootloader._timeout: None > _intf.storage._bootloader.stage1_disk: Already dumped (DiskDevice instance) > _intf.storage._bootloader.password: None > _intf.storage._bootloader.dracut_args: > _intf.storage._bootloader.boot_args: $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) > _intf.storage._bootloader.linux_images: [] > _intf.storage.devicetree: Already dumped (DeviceTree instance) > _intf.storage._dumpFile: /tmp/storage.state > _intf.storage.ksdata: #version=DEVEL ># System authorization information >auth --enablemd5 --enableshadow --enableldap --enableldapauth --ldapserver=ldap.cora.nwra.com,ldap2.cora.nwra.com --ldapbasedn=dc=nwra,dc=com --enableldaptls --ldaploadcacert=http://www.cora.nwra.com/cgi-bin/getca.pl ># Install OS instead of upgrade >install >repo --name="rpmfusion-nonfree-development-rawhide-x86_64" --baseurl=http://rpmfusion.cora.nwra.com/nonfree/fedora/development/rawhide/x86_64/os >repo --name="rpmfusion-free-development-rawhide-x86_64" --baseurl=http://rpmfusion.cora.nwra.com/free/fedora/development/rawhide/x86_64/os >repo --name="cora-fdev-x86_64" --baseurl=http://corpms.cora.nwra.com/fedora/development/x86_64 >repo --name="adobe-linux-x86_64" --baseurl=http://adobe.cora.nwra.com/linux/x86_64/ >repo --name="adobe-linux-i386" --baseurl=http://adobe.cora.nwra.com/linux/i386/ ># Reboot after installation >reboot ># Use network installation >url --url="http://fedora.cora.nwra.com/development/rawhide/x86_64/os/" ># Use text mode install >text ># Do not configure the X Window System >skipx ># Firewall configuration >firewall --enabled --service=ssh >firstboot --disable >ignoredisk --only-use=sda ># Keyboard layouts ># old format: keyboard us ># new format: >keyboard --vckeymap=us --xlayouts='us' ># System language >lang en_US.UTF-8 > ># Network information >network --bootproto=dhcp --device=ens3 >network --hostname=vmrawhide.cora.nwra.com ># Root password >rootpw --iscrypted $1$9DQYCOkm$mX1ytTm6CBkdZGAfy4hmj. ># SELinux configuration >selinux --enforcing ># System timezone >timezone America/Denver --isUtc ># System bootloader configuration >bootloader --location=mbr --boot-drive=sda ># Clear the Master Boot Record >zerombr ># Partition clearing information >clearpart --all --initlabel ># Disk partitioning information >part / --grow --size=3000 >part swap --recommended > >%pre >set -x -v >exec 1>/tmp/ks-pre.log 2>&1 > ># Once root's homedir is there, copy over the log. >while : ; do > sleep 10 > if [ -d /mnt/sysimage/root ]; then > cp /tmp/ks-pre.log /mnt/sysimage/root/ > logger "Copied %pre section log to system" > break > fi >done & > > >wget "http://cobbler.cora.nwra.com/cblr/svc/op/trig/mode/pre/system/vmrawhide" -O /dev/null ># Start pre_install_network_config generated code ># generic functions to be used later for discovering NICs >mac_exists() { > if which ip 2>/dev/null >/dev/null; then > ip -o link | grep -i "$1" 2>/dev/null >/dev/null > return $? > elif which esxcfg-nics 2>/dev/null >/dev/null; then > esxcfg-nics -l | grep -i "$1" 2>/dev/null >/dev/null > return $? > else > ifconfig -a | grep -i "$1" 2>/dev/null >/dev/null > return $? > fi >} >get_ifname() { > if which ip 2>/dev/null >/dev/null; then > IFNAME=$(ip -o link | grep -i "$1" | sed -e 's/^[0-9]*: //' -e 's/:.*//') > elif which esxcfg-nics 2>/dev/null >/dev/null; then > IFNAME=$(esxcfg-nics -l | grep -i "$1" | cut -d " " -f 1) > else > IFNAME=$(ifconfig -a | grep -i "$1" | cut -d " " -f 1) > if [ -z $IFNAME ]; then > IFNAME=$(ifconfig -a | grep -i -B 2 "$1" | sed -n '/flags/s/:.*$//p') > fi > fi >} > ># Start of code to match cobbler system interfaces to physical interfaces by their mac addresses ># Start eth0 ># Configuring eth0 (00:16:3e:47:dd:f8) >if mac_exists 00:16:3e:47:dd:f8 >then > get_ifname 00:16:3e:47:dd:f8 > echo "network --device=$IFNAME --bootproto=dhcp" >> /tmp/pre_install_network_config >fi ># End pre_install_network_config generated code > ># Enable installation monitoring >wget -O /tmp/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon" >python /tmp/anamon --name "vmrawhide" --server "cobbler.cora.nwra.com" --port "80" > >#%base ># More space for yum downloads >mount -o remount,size=100% /tmp > ># Setup login.defs ># Once the /etc directory is there, setup login.defs >while : >do > sleep 10 > if [ -d /mnt/sysimage/etc ] > then > cat > /mnt/sysimage/etc/login.defs <<EOF ># ># Please note that the parameters in this configuration file control the ># behavior of the tools from the shadow-utils component. None of these ># tools uses the PAM mechanism, and the utilities that use PAM (such as the ># passwd command) should therefore be configured elsewhere. Refer to ># /etc/pam.d/system-auth for more information. ># > ># *REQUIRED* ># Directory where mailboxes reside, _or_ name of file, relative to the ># home directory. If you _do_ define both, MAIL_DIR takes precedence. ># QMAIL_DIR is for Qmail ># >#QMAIL_DIR Maildir >MAIL_DIR /var/spool/mail >#MAIL_FILE .mail > ># Password aging controls: ># ># PASS_MAX_DAYS Maximum number of days a password may be used. ># PASS_MIN_DAYS Minimum number of days allowed between password changes. ># PASS_MIN_LEN Minimum acceptable password length. ># PASS_WARN_AGE Number of days warning given before a password expires. ># >PASS_MAX_DAYS 365 >PASS_MIN_DAYS 5 >PASS_MIN_LEN 10 >PASS_WARN_AGE 14 > ># ># Min/max values for automatic uid selection in useradd ># >UID_MIN 500 >UID_MAX 60000 ># System accounts >SYS_UID_MIN 201 >SYS_UID_MAX 999 > ># ># Min/max values for automatic gid selection in groupadd ># >GID_MIN 500 >GID_MAX 60000 ># System accounts >SYS_GID_MIN 201 >SYS_GID_MAX 999 > ># ># If defined, this command is run when removing a user. ># It should remove any at/cron/print jobs etc. owned by ># the user to be removed (passed as the first argument). ># >#USERDEL_CMD /usr/sbin/userdel_local > ># ># If useradd should create home directories for users by default ># On RH systems, we do. This option is overridden with the -m flag on ># useradd command line. ># >CREATE_HOME yes > ># The permission mask is initialized to this value. If not specified, ># the permission mask will be initialized to 022. >UMASK 027 > ># This enables userdel to remove user groups if no members exist. ># >USERGROUPS_ENAB yes > ># Use SHA512 to encrypt password. >ENCRYPT_METHOD MD5 > >MD5_CRYPT_ENAB yes >EOF > logger "Setup /etc/login.defs" > break > fi >done & > ># Load nfs kernel module for nfs4 (needed for EL6) >modprobe nfs > ># F20? >modprobe nfsv4 > ># Debug idmapping ># sed -i -e 's/nfsidmap/nfsidmap -vvvv/' /etc/request-key.d/id_resolver.conf ># Remove the installer's request-key config, preempts rpc.idmapd in %post >rm /etc/request-key.d/id_resolver.conf > > >%end > >%post >set -x -v >exec 1>/root/ks-post.log 2>&1 > >ls -l /etc/systemd/system/default.target ># Cobbler standard > > > ># Start post_install_network_config generated code > ># create a working directory for interface scripts >mkdir /etc/sysconfig/network-scripts/cobbler >cp /etc/sysconfig/network-scripts/ifcfg-lo /etc/sysconfig/network-scripts/cobbler/ > ># Start configuration for eth0 >echo "DEVICE=eth0" > /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "ONBOOT=yes" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "HWADDR=00:16:3E:47:DD:F8" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >IFNAME=$(ip -o link | grep -i '00:16:3E:47:DD:F8' | sed -e 's/^[0-9]*: //' -e 's/:.*//') >if [ -f "/etc/modprobe.conf" ] && [ $IFNAME ]; then > grep $IFNAME /etc/modprobe.conf | sed "s/$IFNAME/eth0/" >> /etc/modprobe.conf.cobbler > grep -v $IFNAME /etc/modprobe.conf >> /etc/modprobe.conf.new > rm -f /etc/modprobe.conf > mv /etc/modprobe.conf.new /etc/modprobe.conf >fi >echo "TYPE=Ethernet" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "BOOTPROTO=dhcp" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 ># End configuration for eth0 > >sed -i 's/ONBOOT=yes/ONBOOT=no/g' /etc/sysconfig/network-scripts/ifcfg-eth* > >rm -f /etc/sysconfig/network-scripts/ifcfg-eth0 >mv /etc/sysconfig/network-scripts/cobbler/* /etc/sysconfig/network-scripts/ >rm -r /etc/sysconfig/network-scripts/cobbler >if [ -f "/etc/modprobe.conf" ]; then >cat /etc/modprobe.conf.cobbler >> /etc/modprobe.conf >rm -f /etc/modprobe.conf.cobbler >fi ># End post_install_network_config generated code > > > > ># Start download cobbler managed config files (if applicable) ># End download cobbler managed config files (if applicable) > ># Start koan environment setup >echo "export COBBLER_SERVER=cobbler.cora.nwra.com" > /etc/profile.d/cobbler.sh >echo "setenv COBBLER_SERVER cobbler.cora.nwra.com" > /etc/profile.d/cobbler.csh ># End koan environment setup > ># begin Red Hat management server registration ># not configured to register to any Red Hat management server (ok) ># end Red Hat management server registration > ># Begin cobbler registration ># skipping for system-based installation ># End cobbler registration > ># CoRA post >echo hosttype=server >> /etc/system_facts > >#%base ># Time >ntpdate earth > >ln -s /nfs/local /opt/local > ># Cleanup /etc/hosts >cat /etc/hosts >sed -i -e '/^192\.168/d' /etc/hosts >sed -i -e '/^10\.10/d' /etc/hosts ># sed -i -e "s/ *vmrawhide//" /etc/hosts > ># Check names >uname -n >hostname > >/sbin/chkconfig --del btseed >/sbin/chkconfig --del bttrack >/sbin/chkconfig --del pcscd > ># Memtest >if [ -x /usr/sbin/memtest-setup ] >then > sh -x /usr/sbin/memtest-setup >fi > ># Backup over ssh >ssh-keygen -N '' -f /root/.ssh/backup_rsa > ># NetDRMS >ln -s /data/cora/SUMS /SUM0 > >#IB only >lspci | grep -q InfiniBand && chkconfig rdma on > >#%server ># Faster boot >ed /boot/grub/grub.conf <<'EOF' >/timeout=/s/=.*/=0/ >wq >EOF > ># No rhgb >sed -i -e 's/ rhgb//' /boot/grub/grub.conf > ># grub2 >sed -i -e s/TIMEOUT=.*/TIMEOUT=0/ -e 's/ rhgb//' /etc/default/grub >grub2-mkconfig -o /boot/grub2/grub.cfg >sed -i -e 's/^set default=.*/set default=0/' /boot/grub2/grub.cfg > ># Use old style networking >chkconfig network on > > ># Samba sharing >semanage fcontext -a -t samba_share_t '/export(/.*)' > ># Dell OMSA >if [ `facter manufacturer` = Dell ] >then > wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash > yum -y install firmware-tools firmware-addon-dell > yum -y install $(bootstrap_firmware) >fi > >#%install ># Bug https://bugzilla.redhat.com/show_bug.cgi?id=874806 workaround >/usr/sbin/authconfig --update --nostart --ldaploadcacert=http://www.cora.nwra.com/cgi-bin/getca.pl > ># Make sure the rpc_pipefs filesystem is available for rpc.idmapd >/bin/mount -t rpc_pipefs sunrpc /var/lib/nfs/rpc_pipefs ># Start rpc.idmapd for nfs4 >rpc.idmapd -v ># Start sssd for username lookup >sssd ># Someday maybe with kerberos? ># rpc.gssd -v ># Mount with nfs4 >nfsopts="-t nfs4" > ># Make /tmp a tmpfs filesystem >echo "tmpfs /tmp tmpfs defaults 0 0" >> /etc/fstab > ># Forward login info to earth >if [ -f /etc/syslog.conf ] >then > echo -e "\n#Forward login info to earth\nauthpriv.*\t\t\t\t@loghost" >> /etc/syslog.conf >else > cat >> /etc/rsyslog.d/forward.conf <<'EOF' > ># sysklogd template for forwarding to sysklogd server >$template sysklogd,"<%PRI%>%TIMESTAMP% %syslogtag%%msg%" > ># Forward login info to earth >authpriv.* @loghost;sysklogd >EOF >fi > ># Root key >mkdir /root/.ssh >cat > /root/.ssh/authorized_keys <<EOF >ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxygs+sZRxQY7c4VnwP3/rTdNQNAn8pIY8eOhvE+z0gKs/175v1A2G0fBAwpRFdZeqDQVzrUAkNA0bK5sqQkJAkwHSDQh7Il1kMdqnPgxeQjTYrAR+W0WA3q9eLEu1eWn4Dp8g1Os59dJrahxORFDgcAMK0pM4TCgxcy0WlBmCWMjzci286AJo5LUIH8WuZ5B/O8r7azR8MplPO+zQeevbmG7APIKigu/m7zlA5eoQmB0u9ErrBywzVhv4si5fDw61V/quDfEvZITGUDIcXRaWK8H2jVSR4ANT+jf9aIOUpXf83mtcNyI0G1cz37bJGvcp0pbTq+GKlGI9ogpMzK1rw== >EOF >/sbin/restorecon -r -v /root/.ssh > ># Updates >/sbin/chkconfig yum-cron on > ># Puppet >/sbin/chkconfig puppet on >systemctl enable puppetagent.service > ># Setup NTP >/sbin/chkconfig ntpdate on >/sbin/chkconfig ntpd on > ># Kerberized NFSv4 >#/sbin/chkconfig rpcgssd on >#/bin/systemctl enable nfs-secure.service > ># Autofs >/sbin/chkconfig autofs on > ># lm_sensors >/usr/sbin/sensors-detect < /dev/null > ># Autofs krb5 NFSv4, NFS homedirs, silence vbetool >time setsebool -P allow_gssd_read_tmp=1 use_nfs_home_dirs=1 vbetool_mmap_zero_ignore=1 > ># Restore from backup >cat /etc/resolv.conf >mkdir -p /data/backup /nfs/local >if [ vmrawhide != saga ] >then > mount -v $nfsopts saga:/backup /data/backup > mount -v $nfsopts saga:/local /nfs/local >else > mount -v $nfsopts earth:/export/backup /data/backup > mount -v $nfsopts earth:/export/backup/saga/export/local /nfs/local >fi > > ># Restore unique state from backup >if [ ! -d /export/home ] >then > sysonly="-s" >fi >sh -x /nfs/local/sbin/restore $sysonly > ># Unmount NFS mounts >umount -l /nfs/local /data/backup >rm -rf --one-file-system /data > ># Debug >ls -l /etc/mtab > ># Make link if needed >if [ -d /export/local ] >then > rmdir /nfs/local > ln -s /export/local /nfs/local >fi > ># Cleanup old yum repos >rm -r /var/cache/yum/* > ># Firewalld issue in Fedora 18+ >systemctl disable firewalld.service > ># Turn on printer browsing F19+ >systemctl enable cups-browsed.service > >#%host specific > ># Setup RAID1 grub boot ># This determines if /boot is on a raid1 device, and if so installs grub on the second device. ># Get the device of the /boot filesystem, if any >bootdev=`mount | awk '$3 == "/boot" { print $1 }'` ># Check that it is an md device >if [ "${bootdev/[0123456789]/}" = /dev/md ] >then > # Get the md name - used in /proc/mdstat > md=`basename $bootdev` > > # Get the second device in the array, assuming 0,1 order and first in all set > dev=`awk -v md=$md '$1 == md { gsub("\\\[[01]\\\]","",$6); print $6 }' /proc/mdstat` > > # Get the partition number, grub partition number is 1 less > grubpart=$((${dev/sd[a-z]/} - 1)) > > # Get the grub disk name from the device.map > grubdisk=`awk -v disk=${dev/[0-9]/} '$2 ~ disk { print $1 }' /boot/grub/device.map` > > # Insert the grub partition number into the disk name to get the grub root name > grubroot=${grubdisk/)/,$grubpart)} > > # Run grub to install onto the second device > /sbin/grub --device-map=/boot/grub/device.map <<EOF >root $grubroot >setup $grubdisk >EOF >fi > ># Enable post-install boot notification > >wget -O /usr/local/sbin/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon" >wget -O /etc/rc.d/init.d/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon.init" > >chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon >test -d /selinux && restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon > >chkconfig --add anamon > >cat << __EOT__ > /etc/sysconfig/anamon >COBBLER_SERVER="cobbler.cora.nwra.com" >COBBLER_PORT="80" >COBBLER_NAME="vmrawhide" >LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg" >__EOT__ > > ># Temp fix for F16 Alpha ># Start final steps > >wget "http://cobbler.cora.nwra.com/cblr/svc/op/ks/system/vmrawhide" -O /root/cobbler.ks >wget "http://cobbler.cora.nwra.com/cblr/svc/op/trig/mode/post/system/vmrawhide" -O /dev/null >wget "http://cobbler.cora.nwra.com/cblr/svc/op/nopxe/system/vmrawhide" -O /dev/null ># End final steps >ls -l /etc/systemd/system/default.target >%end > >%packages >@standard >CoRA >CoRA-release >abrt >apcupsd >autofs >bash-completion >chrony >freeipmi >glibc.i686 >kexec-tools >krb5-workstation >libgcc.i686 >libsss_autofs >logwatch >ntpdate >pigz >policycoreutils-python >puppet >python-ethtool >ruby-libs >selinux-policy-targeted >sendmail >sendmail-cf >strace >sysstat >vim-enhanced >yum-cron >zabbix-agent >-NetworkManager >-PackageKit-yum-plugin >-alsa-utils >-b43-fwcutter >-b43-openfwwf >-bluez >-bluez-utils >-ccid >-coolkey >-dosfstools >-dump >-eject >-exim >-fbset >-finger >-firstboot-tui >-fprintd-pam >-gnome-packagekit >-gnu-efi >-gpm >-hotplug >-hunspell >-hunspell-en >-idl >-idl-common >-initial-setup >-iprutils >-irda-utils >-isdn4k-utils >-kpackagekit >-lftp >-lrzsz >-lvm2 >-man-pages >-minicom >-mlocate >-nano >-parted >-pcmciautils >-pcsc-lite >-pinfo >-postfix >-ppp >-prelink >-rdate >-redhat-lsb >-rfkill >-rp-pppoe >-rpmfusion-free-release >-rpmfusion-nonfree-release >-rsh >-setuptool >-sl-release-notes >-smartmontools >-sox >-specspo >-ssmtp >-statserial >-stunnel >-system-config-boot >-system-config-firewall-tui >-system-config-keyboard >-system-config-mouse >-system-config-network-tui >-talk >-telnet >-wireless-tools >-words >-wvdial >-ypbind >-yum-presto >-yum-updatesd > >%end > > > _intf.storage.services: set([]) > _intf.storage.encryptionPassphrase: None > _intf.storage.encryptionCipher: None > _intf.storage.doAutoPart: False > _intf.storage._nextID: 1 > _intf.storage.fcoe: fcoe instance, containing members: > _intf.storage.fcoe.started: True > _intf.storage.fcoe.nics: [] > _intf.storage.fcoe.lldpadStarted: False > _intf.storage.fcoe.added_nics: [] > _intf.storage.autoPartitionRequests: [PartSpec instance (0x7f05d08ca210) -- > mountpoint = / lv = True singlePV = False thin = True btrfs = True > weight = 0 fstype = ext4 encrypted = True > size = 1 GiB maxSize = 50 GiB grow = True > >, PartSpec instance (0x7f05d08ca1d0) -- > mountpoint = /home lv = True singlePV = False thin = True btrfs = True > weight = 0 fstype = ext4 encrypted = True > size = 500 MiB maxSize = None grow = True > >, PartSpec instance (0x7f05d08ca290) -- > mountpoint = /boot lv = False singlePV = False thin = False btrfs = False > weight = 2000 fstype = ext4 encrypted = False > size = 500 MiB maxSize = None grow = False > >, PartSpec instance (0x7f05d08ca2d0) -- > mountpoint = None lv = False singlePV = False thin = False btrfs = False > weight = 5000 fstype = biosboot encrypted = False > size = 1 MiB maxSize = None grow = False > >, PartSpec instance (0x7f05d08ca3d0) -- > mountpoint = None lv = True singlePV = False thin = False btrfs = False > weight = 0 fstype = swap encrypted = True > size = 0.0 maxSize = None grow = False > >] > _intf.storage.autoPartAddBackupPassphrase: False > _intf.storage.encryptedAutoPart: False > _intf.quitMessage: None > _intf._app: App instance, containing members: > _intf._app.quit_message: Do you really want to quit? > _intf._app._screens: [] > _intf._app._handlers: {4: [(<function exception_msg_handler at 0x7f05d29cc7d0>, None)], 5: [(<bound method TextUserInterface._handle_show_message of <pyanaconda.ui.tui.TextUserInterface object at 0x7f05d08ca110>>, None)]} > _intf._app._redraw: True > _intf._app._width: 80 > _intf._app._header: Anaconda > _intf._app.queue: Queue instance, containing members: > _intf._app.queue.unfinished_tasks: 0 > _intf._app.queue.queue: deque([]) > _intf._app.queue.maxsize: 0 > _intf._app.queue.all_tasks_done: <Condition(<thread.lock object at 0x7f05d2bef810>, 0)> > _intf._app.queue.mutex: <thread.lock object at 0x7f05d2bef810> > _intf._app.queue.not_full: <Condition(<thread.lock object at 0x7f05d2bef810>, 0)> > _intf._app.queue.not_empty: <Condition(<thread.lock object at 0x7f05d2bef810>, 0)> > _intf._app._spacer: ================================================================================ >================================================================================ > _intf._app.quit_question: <class 'pyanaconda.ui.tui.tuiobject.YesNoDialog'> > _intf.payload: YumPayload instance, containing members: > _intf.payload._groups: None > _intf.payload._yum: Skipped > _intf.payload.install_device: None > _intf.payload._root_dir: /tmp/yum.root > _intf.payload._repos_dir: /etc/yum.repos.d,/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anaconda.repos.d > _intf.payload._setup: True > _intf.payload._requiredPackages: [] > _intf.payload._requiredGroups: [] > _intf.payload.storage: Already dumped (Blivet instance) > _intf.payload._base_repo: None > _intf.payload.txID: None > _intf.payload.default_repos: [fedora, rawhide] > _intf.payload._createdInitrds: False > _intf.payload._packages: [] > _intf.payload._space_required: 2.79 GiB > _intf.payload._base_repo_lock: <_RLock owner=None count=0> > _intf.payload.data: Already dumped (AnacondaKSHandler instance) > _intf.payload._kernelVersionList: [] >updateSrc: None >rootParts: None >id: None >rescue: False >mediaDevice: None >methodstr: http://fedora.cora.nwra.com/development/rawhide/x86_64/os/ >proxyPassword: None >desktop: Desktop instance, containing members: > desktop._runlevel: 3 > desktop.desktop: None >canReIPL: False >xdriver: None >stage2: None >rescue_mount: True >_bootloader: GRUB2 instance, containing members: > _bootloader._disk_order: [] > _bootloader.console_options: Skipped > _bootloader.console: Skipped > _bootloader.skip_bootloader: False > _bootloader.warnings: [] > _bootloader.chain_images: [] > _bootloader.stage2_is_preferred_stage1: False > _bootloader.disks: [] > _bootloader.problems: [] > _bootloader._update_only: False > _bootloader._default_image: None > _bootloader.stage2_device: None > _bootloader.encrypted_password: Skipped > _bootloader.errors: [] > _bootloader.stage1_device: None > _bootloader._timeout: None > _bootloader.stage1_disk: None > _bootloader.password: None > _bootloader.dracut_args: > _bootloader.boot_args: $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) > _bootloader.linux_images: [] >_payload: Already dumped (YumPayload instance) >displayMode: t >ksdata: Already dumped (AnacondaKSHandler instance) >proxyUsername: None >extraModules: [] >mehConfig: Config instance, containing members: > mehConfig.programArch: x86_64 > mehConfig.callbackDict: {'lsblk_output': (<function lsblk_callback at 0x7f05d08eacf8>, True), 'type': (<function <lambda> at 0x7f05d08eaf50>, True), 'addons': (<function list_addons_callback at 0x7f05d08eae60>, False), 'nmcli_dev_list': (<function nmcli_dev_list_callback at 0x7f05d08ead70>, True)} > mehConfig.attrSkipList: [_intf._actions, _intf._currentAction._xklwrapper, _intf._currentAction._spokes["KeyboardSpoke"]._xkl_wrapper, _intf._currentAction.language.translations, _intf._currentAction.language.locales, _intf._currentAction._spokes["PasswordSpoke"]._oldweak, _intf._currentAction._spokes["PasswordSpoke"]._password, _intf._currentAction._spokes["UserSpoke"]._password, _intf._currentAction._spokes["UserSpoke"]._oldweak, _intf.storage.bootloader.password, _intf.storage.data, _intf.storage.encryptionPassphrase, _bootloader.encrypted_password, _bootloader.password, payload._groups, payload._yum] > mehConfig.programVersion: 21.23-1 > mehConfig.localSkipList: [passphrase, password, _oldweak, _password] > mehConfig.programName: anaconda > mehConfig.fileList: [/tmp/anaconda.log, /tmp/packaging.log, /tmp/program.log, /tmp/storage.log, /tmp/ifcfg.log, /tmp/yum.log, /mnt/sysimage/root/install.log, /proc/cmdline, /tmp/syslog, /run/install/ks.cfg] >isHeadless: False >reIPLMessage: None >_storage: Already dumped (Blivet instance) >dir: None >opts: {'noipv6': False, 'noipv4': False, 'updateSrc': None, 'selinux': True, 'module': [], 'syslog': None, 'leavebootorder': False, 'images': [], 'dmraid': True, 'armPlatform': None, 'dnf': False, 'memcheck': True, 'iscsi': False, 'ksfile': '/run/install/ks.cfg', 'dirinstall': False, 'kbdtype': None, 'runres': None, 'xdriver': None, 'display_mode': 't', 'stage2': None, 'method': 'http://fedora.cora.nwra.com/development/rawhide/x86_64/os/', 'vncpassword': '', 'vnc': False, 'rescue': False, 'noverifyssl': False, 'autostep': False, 'geoloc': None, 'proxy': None, 'dlabel': False, 'vncconnect': None, 'mpathfriendlynames': True, 'lang': '', 'askmethod': False, 'liveinst': False, 'loglevel': None, 'isHeadless': False, 'eject': True, 'rescue_nomount': False, 'keymap': None, 'mpath': True, 'ibft': True, 'debug': False, 'extlinux': False, 'multiLib': False, 'nofb': None, 'targetArch': None} >proxy: None > >Registered callbacks: > > >/tmp/anaconda.log: >22:17:45,945 INFO anaconda: /sbin/anaconda 21.23-1 >22:17:46,442 INFO anaconda: 2097152 kB (2048 MB) are available >22:17:46,443 INFO anaconda: check_memory(): total:2048, needed:512, graphical:512 >22:17:46,467 INFO anaconda: anaconda called with cmdline = ['/sbin/anaconda'] >22:17:46,468 INFO anaconda: Default encoding = utf-8 >22:17:46,553 INFO anaconda: Running kickstart %%pre script(s) >22:17:46,554 INFO anaconda.stdout: Running pre-installation scripts >22:17:47,355 INFO anaconda: All kickstart %%pre script(s) have been run >22:17:48,285 WARN anaconda.stdout: Not asking for VNC because of an automated install >22:17:48,286 WARN anaconda.stdout: Not asking for VNC because text mode was explicitly asked for in kickstart >22:17:48,307 INFO anaconda: Display mode = t >22:17:48,308 INFO anaconda: 2097152 kB (2048 MB) are available >22:17:48,309 INFO anaconda: check_memory(): total:2048, needed:512, graphical:512 >22:17:48,383 WARN anaconda: module import of __init__ failed: <type 'exceptions.AttributeError'> >22:17:48,385 WARN anaconda: module import of __init__ failed: <type 'exceptions.AttributeError'> >22:17:48,385 INFO anaconda: using only installclass _Fedora >22:17:49,163 INFO anaconda: bootloader GRUB2 on X86 platform >22:17:49,197 INFO anaconda: bootloader GRUB2 on X86 platform >22:17:49,242 DEBUG anaconda: network: devices found ['ens3'] >22:17:49,404 DEBUG anaconda: network: pre kickstart - updating settings of device ens3 >22:17:49,503 DEBUG anaconda: network: kickstart pre section applied for devices ['ens3'] >22:17:49,780 DEBUG anaconda: network: setting real kickstart ONBOOT value for devices ['ens3'] >22:17:49,917 DEBUG anaconda: updating hostname vmrawhide.cora.nwra.com >22:17:49,934 INFO anaconda: Running Thread: AnaStorageThread (139662880519936) >22:17:49,937 INFO anaconda: Running Thread: AnaTimeInitThread (139662872127232) >22:17:49,952 INFO anaconda: Running Thread: AnaWaitForConnectingNMThread (139662863734528) >22:17:49,965 INFO anaconda: Running Thread: AnaPayloadThread (139662854289152) >22:17:50,057 INFO anaconda: got 0 NTP servers from DHCP >22:17:50,058 INFO anaconda: Thread Done: AnaWaitForConnectingNMThread (139662863734528) >22:17:50,097 INFO anaconda: Running Thread: AnaGeolocationRefreshThread (139662863734528) >22:17:50,102 INFO anaconda: Starting geolocation lookup >22:17:50,103 INFO anaconda: Geolocation provider: Fedora GeoIP >22:17:50,450 INFO anaconda: Geolocation lookup finished in 0.3 seconds >22:17:50,450 INFO anaconda: got results from geolocation >22:17:50,451 INFO anaconda: Thread Done: AnaGeolocationRefreshThread (139662863734528) >22:17:50,493 INFO anaconda: Running Thread: AnaSourceWatcher (139662863734528) >22:17:50,495 INFO anaconda: Running Thread: AnaSoftwareWatcher (139662845896448) >22:17:50,507 INFO anaconda: Running Thread: AnaStorageWatcher (139662837503744) >22:17:51,005 INFO anaconda: Thread Done: AnaTimeInitThread (139662872127232) >22:17:55,081 INFO anaconda: Thread Done: AnaStorageThread (139662880519936) >22:17:55,100 INFO anaconda: Thread Done: AnaStorageWatcher (139662837503744) >22:18:01,070 INFO anaconda: Thread Done: AnaPayloadThread (139662854289152) >22:18:01,072 INFO anaconda: Thread Done: AnaSourceWatcher (139662863734528) >22:18:01,082 INFO anaconda: Thread Done: AnaSoftwareWatcher (139662845896448) >22:18:01,694 DEBUG anaconda: new disk order: [] >22:18:01,717 DEBUG anaconda: running handleException >22:18:01,717 DEBUG anaconda: Traceback (most recent call last): > > File "/sbin/anaconda", line 1128, in <module> > anaconda._intf.setup(ksdata) > > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/tui/__init__.py", line 166, in setup > should_schedule = obj.setup(self.ENVIRONMENT) > > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/tui/hubs/summary.py", line 55, in setup > spoke.execute() > > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/tui/spokes/storage.py", line 313, in execute > doKickstartStorage(self.storage, self.data, self.instclass) > > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 1816, in doKickstartStorage > ksdata.partition.execute(storage, ksdata, instClass) > > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 929, in execute > p.execute(storage, ksdata, instClass) > > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 942, in execute > size = Size(spec="%d MiB" % self.size) > >TypeError: %d format: a number is required, not NoneType > >22:18:02,666 DEBUG anaconda: Gtk cannot be initialized >22:18:02,667 DEBUG anaconda: In the main thread, running exception handler > > >/tmp/packaging.log: >22:17:55,084 INFO packaging: configuring base repo >22:17:55,221 INFO_2 yum.verbose.YumPlugins: Loaded plugins: fastestmirror, langpacks >22:17:55,221 INFO_2 yum.verbose.YumPlugins: No plugin match for: fastestmirror >22:17:55,222 INFO_2 yum.verbose.YumPlugins: No plugin match for: langpacks >22:17:55,222 DEBUG yum.verbose.plugin: Adding en_US to language list >22:17:55,226 DEBUG yum.verbose.YumBase: Config time: 0.040 >22:17:55,308 INFO_2 yum.verbose.YumPlugins: Loaded plugins: fastestmirror, langpacks >22:17:55,308 INFO_2 yum.verbose.YumPlugins: No plugin match for: fastestmirror >22:17:55,309 INFO_2 yum.verbose.YumPlugins: No plugin match for: langpacks >22:17:55,309 DEBUG yum.verbose.plugin: Adding en_US to language list >22:17:55,312 DEBUG yum.verbose.YumBase: Config time: 0.010 >22:17:56,800 INFO packaging: Error downloading treeinfo: [Errno 14] HTTP Error 404 - Not Found >22:17:57,795 INFO packaging: Error downloading treeinfo: [Errno 14] HTTP Error 404 - Not Found >22:17:57,841 INFO packaging: Error downloading treeinfo: [Errno 14] HTTP Error 404 - Not Found >22:17:58,407 INFO packaging: Error downloading treeinfo: [Errno 14] HTTP Error 404 - Not Found >22:17:58,702 INFO packaging: Error downloading treeinfo: [Errno 14] HTTP Error 404 - Not Found >22:17:58,795 INFO packaging: gathering repo metadata >22:17:58,944 ERR packaging: failed to get groups for repo adobe-linux-x86_64 >22:17:59,946 ERR packaging: failed to get groups for repo adobe-linux-i386 >22:18:01,062 INFO packaging: metadata retrieval complete > > >/tmp/program.log: >22:17:46,556 INFO program: Running... /bin/sh /tmp/ks-script-bPGS8u >22:17:47,353 INFO program: exec 1>/tmp/ks-pre.log 2>&1 >22:17:47,354 INFO program: + exec >22:17:47,355 DEBUG program: Return code: 0 >22:17:47,384 INFO program: Running... udevadm trigger --action=change --subsystem-match=block >22:17:47,425 DEBUG program: Return code: 0 >22:17:47,427 INFO program: Running... udevadm settle --timeout=300 >22:17:47,684 DEBUG program: Return code: 0 >22:17:47,689 INFO program: Running... modprobe fcoe >22:17:47,792 DEBUG program: Return code: 0 >22:17:47,794 INFO program: Running... /usr/libexec/fcoe/fcoe_edd.sh -i >22:17:47,881 INFO program: No FCoE boot disk information is found in EDD! >22:17:47,882 DEBUG program: Return code: 1 >22:17:47,915 INFO program: Running... loadkeys us >22:17:48,068 DEBUG program: Return code: 0 >22:17:48,069 INFO program: Running... loadkeys us >22:17:48,173 DEBUG program: Return code: 0 >22:17:49,937 INFO program: Running... mpathconf --user_friendly_names y --with_multipathd y >22:17:50,151 DEBUG program: Return code: 0 >22:17:50,152 INFO program: Running... udevadm settle --timeout=300 >22:17:50,193 DEBUG program: Return code: 0 >22:17:50,196 INFO program: Running... systemctl start chronyd.service >22:17:50,365 DEBUG program: Return code: 0 >22:17:50,366 INFO program: Running... hwclock --hctosys --utc >22:17:51,004 DEBUG program: Return code: 0 >22:17:51,005 INFO program: Running... multipath -c /dev/sda >22:17:51,068 INFO program: /dev/sda is not a valid multipath device path >22:17:51,069 DEBUG program: Return code: 1 >22:17:52,128 INFO program: Running... dumpe2fs -h /dev/sda3 >22:17:52,230 INFO program: dumpe2fs 1.42.9 (28-Dec-2013) >22:17:52,231 INFO program: Filesystem volume name: <none> >22:17:52,232 INFO program: Last mounted on: / >22:17:52,232 INFO program: Filesystem UUID: b5898e82-f7d8-4ec2-a093-7dc6b9f21644 >22:17:52,233 INFO program: Filesystem magic number: 0xEF53 >22:17:52,233 INFO program: Filesystem revision #: 1 (dynamic) >22:17:52,234 INFO program: Filesystem features: has_journal ext_attr resize_inode dir_index filetype extent flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize >22:17:52,234 INFO program: Filesystem flags: signed_directory_hash >22:17:52,235 INFO program: Default mount options: user_xattr acl >22:17:52,235 INFO program: Filesystem state: clean >22:17:52,236 INFO program: Errors behavior: Continue >22:17:52,236 INFO program: Filesystem OS type: Linux >22:17:52,237 INFO program: Inode count: 589824 >22:17:52,237 INFO program: Block count: 2358784 >22:17:52,238 INFO program: Reserved block count: 117939 >22:17:52,238 INFO program: Free blocks: 1973998 >22:17:52,239 INFO program: Free inodes: 551544 >22:17:52,239 INFO program: First block: 0 >22:17:52,240 INFO program: Block size: 4096 >22:17:52,240 INFO program: Fragment size: 4096 >22:17:52,241 INFO program: Reserved GDT blocks: 575 >22:17:52,241 INFO program: Blocks per group: 32768 >22:17:52,242 INFO program: Fragments per group: 32768 >22:17:52,242 INFO program: Inodes per group: 8192 >22:17:52,243 INFO program: Inode blocks per group: 512 >22:17:52,243 INFO program: Flex block group size: 16 >22:17:52,244 INFO program: Filesystem created: Mon Jan 27 15:49:38 2014 >22:17:52,244 INFO program: Last mount time: Mon Jan 27 16:27:14 2014 >22:17:52,245 INFO program: Last write time: Mon Jan 27 16:27:14 2014 >22:17:52,246 INFO program: Mount count: 2 >22:17:52,246 INFO program: Maximum mount count: -1 >22:17:52,247 INFO program: Last checked: Mon Jan 27 15:49:38 2014 >22:17:52,247 INFO program: Check interval: 0 (<none>) >22:17:52,248 INFO program: Lifetime writes: 2047 MB >22:17:52,248 INFO program: Reserved blocks uid: 0 (user root) >22:17:52,249 INFO program: Reserved blocks gid: 0 (group root) >22:17:52,249 INFO program: First inode: 11 >22:17:52,250 INFO program: Inode size: 256 >22:17:52,250 INFO program: Required extra isize: 28 >22:17:52,251 INFO program: Desired extra isize: 28 >22:17:52,251 INFO program: Journal inode: 8 >22:17:52,252 INFO program: Default directory hash: half_md4 >22:17:52,252 INFO program: Directory Hash Seed: d486dac6-8385-4b16-b0cc-e265973b55e4 >22:17:52,253 INFO program: Journal backup: inode blocks >22:17:52,253 INFO program: Journal features: journal_incompat_revoke >22:17:52,254 INFO program: Journal size: 128M >22:17:52,254 INFO program: Journal length: 32768 >22:17:52,255 INFO program: Journal sequence: 0x00002db3 >22:17:52,255 INFO program: Journal start: 0 >22:17:52,256 INFO program: >22:17:52,256 DEBUG program: Return code: 0 >22:17:52,257 INFO program: Running... resize2fs -P /dev/sda3 >22:17:52,310 INFO program: resize2fs 1.42.9 (28-Dec-2013) >22:17:52,312 INFO program: Estimated minimum size of the filesystem: 361335 >22:17:52,312 DEBUG program: Return code: 0 >22:17:52,530 INFO program: Running... dumpe2fs -h /dev/loop1 >22:17:52,561 INFO program: dumpe2fs 1.42.9 (28-Dec-2013) >22:17:52,562 INFO program: Filesystem volume name: Anaconda >22:17:52,562 INFO program: Last mounted on: / >22:17:52,563 INFO program: Filesystem UUID: cecb21ba-a5f4-4085-802e-07f8b6968caf >22:17:52,563 INFO program: Filesystem magic number: 0xEF53 >22:17:52,564 INFO program: Filesystem revision #: 1 (dynamic) >22:17:52,564 INFO program: Filesystem features: has_journal ext_attr resize_inode dir_index filetype extent flex_bg sparse_super huge_file uninit_bg dir_nlink extra_isize >22:17:52,565 INFO program: Filesystem flags: signed_directory_hash >22:17:52,566 INFO program: Default mount options: user_xattr acl >22:17:52,566 INFO program: Filesystem state: clean >22:17:52,567 INFO program: Errors behavior: Continue >22:17:52,567 INFO program: Filesystem OS type: Linux >22:17:52,568 INFO program: Inode count: 131072 >22:17:52,568 INFO program: Block count: 2097152 >22:17:52,569 INFO program: Reserved block count: 0 >22:17:52,569 INFO program: Free blocks: 1177592 >22:17:52,570 INFO program: Free inodes: 102303 >22:17:52,570 INFO program: First block: 1 >22:17:52,571 INFO program: Block size: 1024 >22:17:52,571 INFO program: Fragment size: 1024 >22:17:52,572 INFO program: Reserved GDT blocks: 256 >22:17:52,572 INFO program: Blocks per group: 8192 >22:17:52,573 INFO program: Fragments per group: 8192 >22:17:52,581 INFO program: Inodes per group: 512 >22:17:52,583 INFO program: Inode blocks per group: 128 >22:17:52,584 INFO program: Flex block group size: 16 >22:17:52,584 INFO program: Filesystem created: Thu Feb 20 19:13:26 2014 >22:17:52,585 INFO program: Last mount time: Thu Feb 20 19:14:08 2014 >22:17:52,586 INFO program: Last write time: Thu Feb 20 19:14:19 2014 >22:17:52,587 INFO program: Mount count: 2 >22:17:52,588 INFO program: Maximum mount count: -1 >22:17:52,589 INFO program: Last checked: Thu Feb 20 19:13:26 2014 >22:17:52,590 INFO program: Check interval: 0 (<none>) >22:17:52,590 INFO program: Lifetime writes: 32 MB >22:17:52,591 INFO program: Reserved blocks uid: 0 (user root) >22:17:52,592 INFO program: Reserved blocks gid: 0 (group root) >22:17:52,593 INFO program: First inode: 11 >22:17:52,594 INFO program: Inode size: 256 >22:17:52,595 INFO program: Required extra isize: 28 >22:17:52,596 INFO program: Desired extra isize: 28 >22:17:52,596 INFO program: Journal inode: 8 >22:17:52,597 INFO program: Default directory hash: half_md4 >22:17:52,597 INFO program: Directory Hash Seed: 5be4706a-2249-4919-b604-c4df46004307 >22:17:52,598 INFO program: Journal backup: inode blocks >22:17:52,598 INFO program: Journal features: (none) >22:17:52,599 INFO program: Journal size: 32M >22:17:52,599 INFO program: Journal length: 32768 >22:17:52,600 INFO program: Journal sequence: 0x0000000e >22:17:52,600 INFO program: Journal start: 0 >22:17:52,601 INFO program: >22:17:52,601 DEBUG program: Return code: 0 >22:17:52,602 INFO program: Running... resize2fs -P /dev/loop1 >22:17:52,637 INFO program: resize2fs 1.42.9 (28-Dec-2013) >22:17:52,639 INFO program: resize2fs: Device or resource busy while trying to open /dev/loop1 >22:17:52,640 INFO program: Couldn't find valid filesystem superblock. >22:17:52,641 DEBUG program: Return code: 1 >22:17:52,753 INFO program: Running... dumpe2fs -h /dev/mapper/live-rw >22:17:52,784 INFO program: dumpe2fs 1.42.9 (28-Dec-2013) >22:17:52,786 INFO program: Filesystem volume name: Anaconda >22:17:52,786 INFO program: Last mounted on: / >22:17:52,787 INFO program: Filesystem UUID: cecb21ba-a5f4-4085-802e-07f8b6968caf >22:17:52,787 INFO program: Filesystem magic number: 0xEF53 >22:17:52,788 INFO program: Filesystem revision #: 1 (dynamic) >22:17:52,788 INFO program: Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery extent flex_bg sparse_super huge_file uninit_bg dir_nlink extra_isize >22:17:52,789 INFO program: Filesystem flags: signed_directory_hash >22:17:52,789 INFO program: Default mount options: user_xattr acl >22:17:52,790 INFO program: Filesystem state: clean >22:17:52,790 INFO program: Errors behavior: Continue >22:17:52,791 INFO program: Filesystem OS type: Linux >22:17:52,791 INFO program: Inode count: 131072 >22:17:52,792 INFO program: Block count: 2097152 >22:17:52,792 INFO program: Reserved block count: 0 >22:17:52,793 INFO program: Free blocks: 1177592 >22:17:52,793 INFO program: Free inodes: 102303 >22:17:52,794 INFO program: First block: 1 >22:17:52,794 INFO program: Block size: 1024 >22:17:52,795 INFO program: Fragment size: 1024 >22:17:52,795 INFO program: Reserved GDT blocks: 256 >22:17:52,796 INFO program: Blocks per group: 8192 >22:17:52,796 INFO program: Fragments per group: 8192 >22:17:52,797 INFO program: Inodes per group: 512 >22:17:52,797 INFO program: Inode blocks per group: 128 >22:17:52,798 INFO program: Flex block group size: 16 >22:17:52,798 INFO program: Filesystem created: Thu Feb 20 19:13:26 2014 >22:17:52,799 INFO program: Last mount time: Thu Feb 20 22:17:14 2014 >22:17:52,800 INFO program: Last write time: Thu Feb 20 22:17:14 2014 >22:17:52,800 INFO program: Mount count: 3 >22:17:52,801 INFO program: Maximum mount count: -1 >22:17:52,801 INFO program: Last checked: Thu Feb 20 19:13:26 2014 >22:17:52,802 INFO program: Check interval: 0 (<none>) >22:17:52,802 INFO program: Lifetime writes: 32 MB >22:17:52,803 INFO program: Reserved blocks uid: 0 (user root) >22:17:52,803 INFO program: Reserved blocks gid: 0 (group root) >22:17:52,804 INFO program: First inode: 11 >22:17:52,804 INFO program: Inode size: 256 >22:17:52,805 INFO program: Required extra isize: 28 >22:17:52,805 INFO program: Desired extra isize: 28 >22:17:52,806 INFO program: Journal inode: 8 >22:17:52,806 INFO program: Default directory hash: half_md4 >22:17:52,807 INFO program: Directory Hash Seed: 5be4706a-2249-4919-b604-c4df46004307 >22:17:52,807 INFO program: Journal backup: inode blocks >22:17:52,808 INFO program: Journal features: (none) >22:17:52,808 INFO program: Journal size: 32M >22:17:52,809 INFO program: Journal length: 32768 >22:17:52,809 INFO program: Journal sequence: 0x0000000f >22:17:52,810 INFO program: Journal start: 1 >22:17:52,810 INFO program: >22:17:52,811 DEBUG program: Return code: 0 >22:17:52,812 INFO program: Running... resize2fs -P /dev/mapper/live-rw >22:17:52,846 INFO program: resize2fs 1.42.9 (28-Dec-2013) >22:17:52,849 INFO program: Estimated minimum size of the filesystem: 903724 >22:17:52,850 DEBUG program: Return code: 0 >22:17:53,271 INFO program: Running... dumpe2fs -h /dev/mapper/live-base >22:17:53,303 INFO program: dumpe2fs 1.42.9 (28-Dec-2013) >22:17:53,305 INFO program: Filesystem volume name: Anaconda >22:17:53,305 INFO program: Last mounted on: / >22:17:53,306 INFO program: Filesystem UUID: cecb21ba-a5f4-4085-802e-07f8b6968caf >22:17:53,306 INFO program: Filesystem magic number: 0xEF53 >22:17:53,307 INFO program: Filesystem revision #: 1 (dynamic) >22:17:53,307 INFO program: Filesystem features: has_journal ext_attr resize_inode dir_index filetype extent flex_bg sparse_super huge_file uninit_bg dir_nlink extra_isize >22:17:53,308 INFO program: Filesystem flags: signed_directory_hash >22:17:53,308 INFO program: Default mount options: user_xattr acl >22:17:53,309 INFO program: Filesystem state: clean >22:17:53,309 INFO program: Errors behavior: Continue >22:17:53,310 INFO program: Filesystem OS type: Linux >22:17:53,310 INFO program: Inode count: 131072 >22:17:53,311 INFO program: Block count: 2097152 >22:17:53,312 INFO program: Reserved block count: 0 >22:17:53,312 INFO program: Free blocks: 1177592 >22:17:53,313 INFO program: Free inodes: 102303 >22:17:53,313 INFO program: First block: 1 >22:17:53,314 INFO program: Block size: 1024 >22:17:53,314 INFO program: Fragment size: 1024 >22:17:53,315 INFO program: Reserved GDT blocks: 256 >22:17:53,315 INFO program: Blocks per group: 8192 >22:17:53,316 INFO program: Fragments per group: 8192 >22:17:53,316 INFO program: Inodes per group: 512 >22:17:53,317 INFO program: Inode blocks per group: 128 >22:17:53,317 INFO program: Flex block group size: 16 >22:17:53,318 INFO program: Filesystem created: Thu Feb 20 19:13:26 2014 >22:17:53,318 INFO program: Last mount time: Thu Feb 20 19:14:08 2014 >22:17:53,319 INFO program: Last write time: Thu Feb 20 19:14:19 2014 >22:17:53,319 INFO program: Mount count: 2 >22:17:53,320 INFO program: Maximum mount count: -1 >22:17:53,320 INFO program: Last checked: Thu Feb 20 19:13:26 2014 >22:17:53,321 INFO program: Check interval: 0 (<none>) >22:17:53,321 INFO program: Lifetime writes: 32 MB >22:17:53,322 INFO program: Reserved blocks uid: 0 (user root) >22:17:53,323 INFO program: Reserved blocks gid: 0 (group root) >22:17:53,323 INFO program: First inode: 11 >22:17:53,324 INFO program: Inode size: 256 >22:17:53,324 INFO program: Required extra isize: 28 >22:17:53,325 INFO program: Desired extra isize: 28 >22:17:53,325 INFO program: Journal inode: 8 >22:17:53,326 INFO program: Default directory hash: half_md4 >22:17:53,326 INFO program: Directory Hash Seed: 5be4706a-2249-4919-b604-c4df46004307 >22:17:53,327 INFO program: Journal backup: inode blocks >22:17:53,327 INFO program: Journal features: (none) >22:17:53,328 INFO program: Journal size: 32M >22:17:53,328 INFO program: Journal length: 32768 >22:17:53,329 INFO program: Journal sequence: 0x0000000e >22:17:53,329 INFO program: Journal start: 0 >22:17:53,330 INFO program: >22:17:53,330 DEBUG program: Return code: 0 >22:17:53,331 INFO program: Running... resize2fs -P /dev/mapper/live-base >22:17:53,367 INFO program: resize2fs 1.42.9 (28-Dec-2013) >22:17:53,370 INFO program: resize2fs: Operation not permitted while trying to open /dev/mapper/live-base >22:17:53,371 INFO program: Couldn't find valid filesystem superblock. >22:17:53,372 DEBUG program: Return code: 1 >22:17:53,439 INFO program: Running... udevadm settle --timeout=300 >22:17:53,499 DEBUG program: Return code: 0 >22:17:53,517 INFO program: Running... udevadm settle --timeout=300 >22:17:53,558 DEBUG program: Return code: 0 >22:17:53,568 INFO program: Running... udevadm settle --timeout=300 >22:17:53,608 DEBUG program: Return code: 0 >22:17:53,620 INFO program: Running... udevadm settle --timeout=300 >22:17:53,662 DEBUG program: Return code: 0 >22:17:53,673 INFO program: Running... udevadm settle --timeout=300 >22:17:53,714 DEBUG program: Return code: 0 >22:17:53,719 INFO program: Running... udevadm settle --timeout=300 >22:17:53,760 DEBUG program: Return code: 0 >22:17:53,771 INFO program: Running... udevadm settle --timeout=300 >22:17:53,813 DEBUG program: Return code: 0 >22:17:53,826 INFO program: Running... mount -t ext4 -o defaults,ro /dev/sda3 /mnt/sysimage >22:17:53,995 DEBUG program: Return code: 0 >22:17:54,049 INFO program: Running... arch >22:17:54,671 INFO program: x86_64 >22:17:54,673 DEBUG program: Return code: 0 >22:17:54,730 INFO program: Running... udevadm settle --timeout=300 >22:17:54,771 DEBUG program: Return code: 0 >22:17:54,773 INFO program: Running... umount /mnt/sysimage >22:17:54,814 DEBUG program: Return code: 0 >22:17:54,816 INFO program: Running... udevadm settle --timeout=300 >22:17:54,857 DEBUG program: Return code: 0 >22:18:01,513 INFO program: Running... udevadm settle --timeout=300 >22:18:01,550 DEBUG program: Return code: 0 >22:18:01,574 INFO program: Running... udevadm settle --timeout=300 >22:18:01,609 DEBUG program: Return code: 0 >22:18:01,625 INFO program: Running... udevadm settle --timeout=300 >22:18:01,660 DEBUG program: Return code: 0 > > >/tmp/storage.log: >22:17:47,687 INFO blivet: ISCSID is /sbin/iscsid >22:17:47,688 INFO blivet: no initiator set >22:17:47,883 INFO blivet: No FCoE EDD info found: No FCoE boot disk information is found in EDD! >22:17:47,884 INFO blivet: no /etc/zfcp.conf; not configuring zfcp >22:17:48,310 DEBUG blivet: trying to set new default fstype to 'ext4' >22:17:48,373 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:48,374 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 0 >22:17:48,375 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:49,165 INFO blivet: Detected 2.00 GiB of memory >22:17:49,195 INFO blivet: Suggested swap size (2.00 GiB) exceeds 10 % of disk space, using 10 % of disk space (0.0) instead. >22:17:49,196 INFO blivet: Swap attempt of 0.0 >22:17:49,935 INFO blivet: resetting Blivet (version 0.42) instance <blivet.Blivet object at 0x7f05d0760790> >22:17:49,935 INFO blivet: no initiator set >22:17:49,936 INFO blivet: not going to create backup copy of non-existent /etc/mdadm.conf >22:17:49,936 INFO blivet: DeviceTree.populate: ignoredDisks is [] ; exclusiveDisks is [] >22:17:50,239 INFO blivet: devices to scan: ['sda', 'sda1', 'sda2', 'sda3', 'loop0', 'loop1', 'loop2', 'dm-0', 'dm-1'] >22:17:50,319 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001', > 'DEVNAME': 'sda', > 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda', > 'DEVTYPE': 'disk', > 'DM_MULTIPATH_TIMESTAMP': '1392934656', > 'ID_ATA': '1', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_BUS': 'ata', > 'ID_MODEL': 'QEMU_HARDDISK', > 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_PART_TABLE_UUID': '0000b938', > 'ID_REVISION': '0.12.1', > 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', > 'ID_SERIAL_SHORT': 'QM00001', > 'ID_TYPE': 'disk', > 'MAJOR': '8', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '8991477', > 'name': 'sda', > 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001'], > 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda'} ; name: sda ; >22:17:50,336 INFO blivet: scanning sda (/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda)... >22:17:50,344 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >22:17:50,347 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:50,353 DEBUG blivet: DeviceTree.addUdevDiskDevice: name: sda ; >22:17:50,434 INFO blivet: sda is a disk >22:17:50,435 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 2 >22:17:50,444 DEBUG blivet: DiskDevice._setFormat: sda ; current: None ; type: None ; >22:17:51,070 INFO blivet: added disk sda (id 1) to device tree >22:17:51,071 DEBUG blivet: looking up parted Device: /dev/sda >22:17:51,174 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda ; >22:17:51,179 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda ; label_type: dos ; >22:17:51,183 DEBUG blivet: DiskDevice.setup: sda ; status: True ; controllable: True ; orig: False ; >22:17:51,184 DEBUG blivet: required disklabel type for sda (1) is None >22:17:51,185 DEBUG blivet: default disklabel type for sda is msdos >22:17:51,185 DEBUG blivet: selecting msdos disklabel for sda based on size >22:17:51,188 DEBUG blivet: DiskLabel.__init__: device: /dev/sda ; labelType: msdos ; exists: True ; >22:17:51,462 DEBUG blivet: Did not change pmbr_boot on parted.Disk instance -- > type: msdos primaryPartitionCount: 3 > lastPartitionNumber: 3 maxPrimaryPartitionCount: 4 > partitions: [<parted.partition.Partition object at 0x7f05d095b150>, <parted.partition.Partition object at 0x7f05d095b450>, <parted.partition.Partition object at 0x7f05d095b690>] > device: <parted.device.Device object at 0x7f05d094ef50> > PedDisk: <_ped.Disk object at 0x7f05cd36fea8> >22:17:51,464 DEBUG blivet: getFormat('disklabel') returning DiskLabel instance with object id 4 >22:17:51,467 DEBUG blivet: DiskDevice._setFormat: sda ; current: None ; type: disklabel ; >22:17:51,482 INFO blivet: got device: DiskDevice instance (0x7f05cd2ec990) -- > name = sda status = True kids = 0 id = 1 > parents = [] > uuid = None size = 10 GiB > format = existing msdos disklabel > major = 8 minor = 0 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda partedDevice = parted.Device instance -- > model: ATA QEMU HARDDISK path: /dev/sda type: 1 > sectorSize: 512 physicalSectorSize: 512 > length: 20971520 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 1 did: 0 busy: False > hardwareGeometry: (1305, 255, 63) biosGeometry: (1305, 255, 63) > PedDevice: <_ped.Device object at 0x22f6c20> > target size = 0 path = /dev/sda > format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x7f05cd379290> >22:17:51,489 INFO blivet: got format: DiskLabel instance (0x7f05cd379350) object id 4-- > type = disklabel name = partition table (MSDOS) status = False > device = /dev/sda uuid = None exists = True > options = None supported = False formattable = True resizable = False > type = msdos partition count = 3 sectorSize = 512 > align_offset = 0 align_grain = 2048 > partedDisk = parted.Disk instance -- > type: msdos primaryPartitionCount: 3 > lastPartitionNumber: 3 maxPrimaryPartitionCount: 4 > partitions: [<parted.partition.Partition object at 0x7f05d095b150>, <parted.partition.Partition object at 0x7f05d095b450>, <parted.partition.Partition object at 0x7f05d095b690>] > device: <parted.device.Device object at 0x7f05d094ef50> > PedDisk: <_ped.Disk object at 0x7f05cd36fea8> > origPartedDisk = <parted.disk.Disk object at 0x7f05d095b850> > partedDevice = parted.Device instance -- > model: ATA QEMU HARDDISK path: /dev/sda type: 1 > sectorSize: 512 physicalSectorSize: 512 > length: 20971520 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 1 did: 0 busy: False > hardwareGeometry: (1305, 255, 63) biosGeometry: (1305, 255, 63) > PedDevice: <_ped.Device object at 0x7f05d092e710> > >22:17:51,500 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1', > 'DEVNAME': 'sda1', > 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1', > 'DEVTYPE': 'partition', > 'ID_ATA': '1', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_BUS': 'ata', > 'ID_MODEL': 'QEMU_HARDDISK', > 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', > 'ID_PART_ENTRY_DISK': '8:0', > 'ID_PART_ENTRY_NUMBER': '1', > 'ID_PART_ENTRY_OFFSET': '2048', > 'ID_PART_ENTRY_SCHEME': 'dos', > 'ID_PART_ENTRY_SIZE': '2048', > 'ID_PART_ENTRY_TYPE': '0x83', > 'ID_PART_ENTRY_UUID': '0000b938-01', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_PART_TABLE_UUID': '0000b938', > 'ID_REVISION': '0.12.1', > 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', > 'ID_SERIAL_SHORT': 'QM00001', > 'ID_TYPE': 'disk', > 'MAJOR': '8', > 'MINOR': '1', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '8991499', > 'name': 'sda1', > 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1'], > 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1'} ; name: sda1 ; >22:17:51,504 INFO blivet: scanning sda1 (/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1)... >22:17:51,509 DEBUG blivet: DeviceTree.getDeviceByName: name: sda1 ; >22:17:51,516 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:51,520 INFO blivet: sda1 is a partition >22:17:51,523 DEBUG blivet: DeviceTree.addUdevPartitionDevice: name: sda1 ; >22:17:51,530 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >22:17:51,543 DEBUG blivet: DeviceTree.getDeviceByName returned existing 10 GiB disk sda (1) with existing msdos disklabel >22:17:51,546 DEBUG blivet: DiskDevice.addChild: kids: 0 ; name: sda ; >22:17:51,548 DEBUG blivet: PartitionDevice._setFormat: sda1 ; >22:17:51,549 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 7 >22:17:51,551 DEBUG blivet: PartitionDevice._setFormat: sda1 ; current: None ; type: None ; >22:17:51,552 DEBUG blivet: looking up parted Partition: /dev/sda1 >22:17:51,553 DEBUG blivet: PartitionDevice.probe: sda1 ; exists: True ; >22:17:51,556 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 1 ; >22:17:51,557 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 10 ; >22:17:51,559 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 12 ; >22:17:51,560 INFO blivet: added partition sda1 (id 6) to device tree >22:17:51,562 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda1 ; >22:17:51,564 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda1 ; label_type: dos ; >22:17:51,566 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >22:17:51,568 DEBUG blivet: DiskLabel.__init__: device: /dev/sda1 ; labelType: dos ; exists: True ; >22:17:51,611 WARN blivet: disklabel detected but not usable on sda1 >22:17:51,612 DEBUG blivet: no type or existing type for sda1, bailing >22:17:51,619 DEBUG blivet: looking up parted Device: /dev/sda1 >22:17:51,639 INFO blivet: got device: PartitionDevice instance (0x7f05d09277d0) -- > name = sda1 status = True kids = 0 id = 6 > parents = ['existing 10 GiB disk sda (1) with existing msdos disklabel'] > uuid = None size = 1 MiB > format = existing None > major = 8 minor = 1 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1 partedDevice = parted.Device instance -- > model: Unknown path: /dev/sda1 type: 0 > sectorSize: 512 physicalSectorSize: 512 > length: 2048 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (0, 255, 63) biosGeometry: (0, 255, 63) > PedDevice: <_ped.Device object at 0x7f05d092e9e0> > target size = 0 path = /dev/sda1 > format args = [] originalFormat = None grow = None max size = 0 bootable = None > part type = 0 primary = None start sector = None end sector = None > partedPartition = parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7f05d095b050> fileSystem: None > number: 1 path: /dev/sda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7f05d095b210> PedPartition: <_ped.Partition object at 0x7f05d09596b0> > disk = existing 10 GiB disk sda (1) with existing msdos disklabel > start = 2048 end = 4095 length = 2048 > flags = >22:17:51,646 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part2 /dev/disk/by-uuid/5fbb2081-a04a-4e1b-a06a-a23fce68eb03', > 'DEVNAME': 'sda2', > 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2', > 'DEVTYPE': 'partition', > 'ID_ATA': '1', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_BUS': 'ata', > 'ID_FS_TYPE': 'swap', > 'ID_FS_USAGE': 'other', > 'ID_FS_UUID': '5fbb2081-a04a-4e1b-a06a-a23fce68eb03', > 'ID_FS_UUID_ENC': '5fbb2081-a04a-4e1b-a06a-a23fce68eb03', > 'ID_FS_VERSION': '1', > 'ID_MODEL': 'QEMU_HARDDISK', > 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', > 'ID_PART_ENTRY_DISK': '8:0', > 'ID_PART_ENTRY_NUMBER': '2', > 'ID_PART_ENTRY_OFFSET': '4096', > 'ID_PART_ENTRY_SCHEME': 'dos', > 'ID_PART_ENTRY_SIZE': '2097152', > 'ID_PART_ENTRY_TYPE': '0x82', > 'ID_PART_ENTRY_UUID': '0000b938-02', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_PART_TABLE_UUID': '0000b938', > 'ID_REVISION': '0.12.1', > 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', > 'ID_SERIAL_SHORT': 'QM00001', > 'ID_TYPE': 'disk', > 'MAJOR': '8', > 'MINOR': '2', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '8991520', > 'name': 'sda2', > 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part2', > '/dev/disk/by-uuid/5fbb2081-a04a-4e1b-a06a-a23fce68eb03'], > 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2'} ; name: sda2 ; >22:17:51,648 INFO blivet: scanning sda2 (/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2)... >22:17:51,650 DEBUG blivet: DeviceTree.getDeviceByName: name: sda2 ; >22:17:51,652 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:51,653 INFO blivet: sda2 is a partition >22:17:51,654 DEBUG blivet: DeviceTree.addUdevPartitionDevice: name: sda2 ; >22:17:51,656 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >22:17:51,665 DEBUG blivet: DeviceTree.getDeviceByName returned existing 10 GiB disk sda (1) with existing msdos disklabel >22:17:51,667 DEBUG blivet: DiskDevice.addChild: kids: 1 ; name: sda ; >22:17:51,669 DEBUG blivet: PartitionDevice._setFormat: sda2 ; >22:17:51,669 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 12 >22:17:51,672 DEBUG blivet: PartitionDevice._setFormat: sda2 ; current: None ; type: None ; >22:17:51,672 DEBUG blivet: looking up parted Partition: /dev/sda2 >22:17:51,674 DEBUG blivet: PartitionDevice.probe: sda2 ; exists: True ; >22:17:51,676 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda2 ; flag: 1 ; >22:17:51,678 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda2 ; flag: 10 ; >22:17:51,680 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda2 ; flag: 12 ; >22:17:51,681 INFO blivet: added partition sda2 (id 11) to device tree >22:17:51,682 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda2 ; >22:17:51,684 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda2 ; label_type: dos ; >22:17:51,686 DEBUG blivet: PartitionDevice.setup: sda2 ; status: True ; controllable: True ; orig: False ; >22:17:51,688 DEBUG blivet: DiskLabel.__init__: device: /dev/sda2 ; labelType: dos ; exists: True ; >22:17:51,768 WARN blivet: disklabel detected but not usable on sda2 >22:17:51,769 INFO blivet: type detected on 'sda2' is 'swap' >22:17:51,772 DEBUG blivet: SwapSpace.__init__: device: /dev/sda2 ; serial: QM00001 ; uuid: 5fbb2081-a04a-4e1b-a06a-a23fce68eb03 ; exists: True ; label: None ; >22:17:51,772 DEBUG blivet: getFormat('swap') returning SwapSpace instance with object id 15 >22:17:51,774 DEBUG blivet: PartitionDevice._setFormat: sda2 ; >22:17:51,776 DEBUG blivet: PartitionDevice._setFormat: sda2 ; current: None ; type: swap ; >22:17:51,789 DEBUG blivet: looking up parted Device: /dev/sda2 >22:17:51,806 INFO blivet: got device: PartitionDevice instance (0x7f05d0927810) -- > name = sda2 status = True kids = 0 id = 11 > parents = ['existing 10 GiB disk sda (1) with existing msdos disklabel'] > uuid = None size = 1 GiB > format = existing swap > major = 8 minor = 2 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2 partedDevice = parted.Device instance -- > model: Unknown path: /dev/sda2 type: 0 > sectorSize: 512 physicalSectorSize: 512 > length: 2097152 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) > PedDevice: <_ped.Device object at 0x7f05d092e680> > target size = 0 path = /dev/sda2 > format args = [] originalFormat = None grow = None max size = 0 bootable = None > part type = 0 primary = None start sector = None end sector = None > partedPartition = parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7f05d095b050> fileSystem: <parted.filesystem.FileSystem object at 0x7f05d095b590> > number: 2 path: /dev/sda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7f05d095b510> PedPartition: <_ped.Partition object at 0x7f05d0959710> > disk = existing 10 GiB disk sda (1) with existing msdos disklabel > start = 4096 end = 2101247 length = 2097152 > flags = >22:17:51,816 INFO blivet: got format: SwapSpace instance (0x7f05d08f2a50) object id 15-- > type = swap name = swap status = False > device = /dev/sda2 uuid = 5fbb2081-a04a-4e1b-a06a-a23fce68eb03 exists = True > options = supported = True formattable = True resizable = False > priority = None label = None >22:17:51,822 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part3 /dev/disk/by-uuid/b5898e82-f7d8-4ec2-a093-7dc6b9f21644', > 'DEVNAME': 'sda3', > 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3', > 'DEVTYPE': 'partition', > 'ID_ATA': '1', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_BUS': 'ata', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': 'b5898e82-f7d8-4ec2-a093-7dc6b9f21644', > 'ID_FS_UUID_ENC': 'b5898e82-f7d8-4ec2-a093-7dc6b9f21644', > 'ID_FS_VERSION': '1.0', > 'ID_MODEL': 'QEMU_HARDDISK', > 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', > 'ID_PART_ENTRY_DISK': '8:0', > 'ID_PART_ENTRY_FLAGS': '0x80', > 'ID_PART_ENTRY_NUMBER': '3', > 'ID_PART_ENTRY_OFFSET': '2101248', > 'ID_PART_ENTRY_SCHEME': 'dos', > 'ID_PART_ENTRY_SIZE': '18870272', > 'ID_PART_ENTRY_TYPE': '0x83', > 'ID_PART_ENTRY_UUID': '0000b938-03', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_PART_TABLE_UUID': '0000b938', > 'ID_REVISION': '0.12.1', > 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', > 'ID_SERIAL_SHORT': 'QM00001', > 'ID_TYPE': 'disk', > 'MAJOR': '8', > 'MINOR': '3', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '8991542', > 'name': 'sda3', > 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part3', > '/dev/disk/by-uuid/b5898e82-f7d8-4ec2-a093-7dc6b9f21644'], > 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3'} ; name: sda3 ; >22:17:51,826 INFO blivet: scanning sda3 (/devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3)... >22:17:51,828 DEBUG blivet: DeviceTree.getDeviceByName: name: sda3 ; >22:17:51,829 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:51,830 INFO blivet: sda3 is a partition >22:17:51,832 DEBUG blivet: DeviceTree.addUdevPartitionDevice: name: sda3 ; >22:17:51,834 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >22:17:51,842 DEBUG blivet: DeviceTree.getDeviceByName returned existing 10 GiB disk sda (1) with existing msdos disklabel >22:17:51,844 DEBUG blivet: DiskDevice.addChild: kids: 2 ; name: sda ; >22:17:51,846 DEBUG blivet: PartitionDevice._setFormat: sda3 ; >22:17:51,851 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 18 >22:17:51,857 DEBUG blivet: PartitionDevice._setFormat: sda3 ; current: None ; type: None ; >22:17:51,858 DEBUG blivet: looking up parted Partition: /dev/sda3 >22:17:51,864 DEBUG blivet: PartitionDevice.probe: sda3 ; exists: True ; >22:17:51,871 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda3 ; flag: 1 ; >22:17:51,873 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda3 ; flag: 10 ; >22:17:51,875 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda3 ; flag: 12 ; >22:17:51,876 INFO blivet: added partition sda3 (id 17) to device tree >22:17:51,881 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda3 ; >22:17:51,890 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda3 ; label_type: dos ; >22:17:51,892 DEBUG blivet: PartitionDevice.setup: sda3 ; status: True ; controllable: True ; orig: False ; >22:17:51,897 DEBUG blivet: DiskLabel.__init__: device: /dev/sda3 ; labelType: dos ; exists: True ; >22:17:52,121 WARN blivet: disklabel detected but not usable on sda3 >22:17:52,124 INFO blivet: type detected on 'sda3' is 'ext4' >22:17:52,348 DEBUG blivet: size=1.37 GiB, current=8.99 GiB >22:17:52,352 DEBUG blivet: padding min size from 1480028160 up to 1480028660 >22:17:52,355 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,357 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 21 >22:17:52,359 DEBUG blivet: PartitionDevice._setFormat: sda3 ; >22:17:52,362 DEBUG blivet: PartitionDevice._setFormat: sda3 ; current: None ; type: ext4 ; >22:17:52,371 DEBUG blivet: looking up parted Device: /dev/sda3 >22:17:52,389 INFO blivet: got device: PartitionDevice instance (0x7f05d095bc10) -- > name = sda3 status = True kids = 0 id = 17 > parents = ['existing 10 GiB disk sda (1) with existing msdos disklabel'] > uuid = None size = 8.99 GiB > format = existing ext4 filesystem > major = 8 minor = 3 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:01.1/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3 partedDevice = parted.Device instance -- > model: Unknown path: /dev/sda3 type: 0 > sectorSize: 512 physicalSectorSize: 512 > length: 18870272 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (1174, 255, 63) biosGeometry: (1174, 255, 63) > PedDevice: <_ped.Device object at 0x7f05d092ec20> > target size = 0 path = /dev/sda3 > format args = [] originalFormat = None grow = None max size = 0 bootable = True > part type = 0 primary = None start sector = None end sector = None > partedPartition = parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7f05d095b050> fileSystem: <parted.filesystem.FileSystem object at 0x7f05d095b750> > number: 3 path: /dev/sda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7f05d095b6d0> PedPartition: <_ped.Partition object at 0x7f05d0959770> > disk = existing 10 GiB disk sda (1) with existing msdos disklabel > start = 2101248 end = 20971519 length = 18870272 > flags = boot >22:17:52,393 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,415 INFO blivet: got format: Ext4FS instance (0x7f05d096c610) object id 21-- > type = ext4 name = ext4 status = False > device = /dev/sda3 uuid = b5898e82-f7d8-4ec2-a093-7dc6b9f21644 exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = None size = 8.99 GiB targetSize = 8.99 GiB > >22:17:52,421 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop0', > 'DEVPATH': '/devices/virtual/block/loop0', > 'DEVTYPE': 'disk', > 'DM_MULTIPATH_TIMESTAMP': '1392934656', > 'ID_FS_TYPE': 'squashfs', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_VERSION': '1024.0', > 'MAJOR': '7', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '283664', > 'name': 'loop0', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop0'} ; name: loop0 ; >22:17:52,424 INFO blivet: scanning loop0 (/devices/virtual/block/loop0)... >22:17:52,427 DEBUG blivet: DeviceTree.getDeviceByName: name: loop0 ; >22:17:52,430 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,431 INFO blivet: loop0 is a loop device >22:17:52,434 DEBUG blivet: DeviceTree.addUdevLoopDevice: name: loop0 ; >22:17:52,437 DEBUG blivet: DeviceTree.getDeviceByName: name: /tmp/curl_fetch_url1/squashfs.img (deleted) ; >22:17:52,441 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,442 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 24 >22:17:52,446 DEBUG blivet: FileDevice._setFormat: /tmp/curl_fetch_url1/squashfs.img (deleted) ; current: None ; type: None ; >22:17:52,446 INFO blivet: added file /tmp/curl_fetch_url1/squashfs.img (deleted) (id 23) to device tree >22:17:52,451 DEBUG blivet: FileDevice.addChild: kids: 0 ; name: /tmp/curl_fetch_url1/squashfs.img (deleted) ; >22:17:52,451 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 27 >22:17:52,457 DEBUG blivet: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >22:17:52,457 INFO blivet: added loop loop0 (id 26) to device tree >22:17:52,461 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: loop0 ; >22:17:52,464 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: loop0 ; label_type: None ; >22:17:52,465 DEBUG blivet: getFormat('squashfs') returning DeviceFormat instance with object id 29 >22:17:52,468 DEBUG blivet: LoopDevice.setup: loop0 ; status: False ; controllable: False ; orig: False ; >22:17:52,469 DEBUG blivet: setup of loop0 failed: specified file (/tmp/curl_fetch_url1/squashfs.img (deleted)) does not exist >22:17:52,470 WARN blivet: aborting disklabel handler for loop0 >22:17:52,471 INFO blivet: type detected on 'loop0' is 'squashfs' >22:17:52,472 DEBUG blivet: getFormat('squashfs') returning DeviceFormat instance with object id 30 >22:17:52,475 DEBUG blivet: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >22:17:52,477 INFO blivet: got device: LoopDevice instance (0x7f05d096c9d0) -- > name = loop0 status = False kids = 0 id = 26 > parents = ['existing 0 file /tmp/curl_fetch_url1/squashfs.img (deleted) (23)'] > uuid = None size = 0 > format = existing None > major = 0 minor = 0 exists = True protected = False > sysfs path = partedDevice = None > target size = 0 path = /dev/loop0 > format args = [] originalFormat = None >22:17:52,485 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-label/Anaconda /dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'DEVNAME': 'loop1', > 'DEVPATH': '/devices/virtual/block/loop1', > 'DEVTYPE': 'disk', > 'DM_MULTIPATH_TIMESTAMP': '1392934656', > 'ID_FS_LABEL': 'Anaconda', > 'ID_FS_LABEL_ENC': 'Anaconda', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': 'cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'ID_FS_UUID_ENC': 'cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '7', > 'MINOR': '1', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '283702', > 'name': 'loop1', > 'symlinks': ['/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf'], > 'sysfs_path': '/devices/virtual/block/loop1'} ; name: loop1 ; >22:17:52,487 INFO blivet: scanning loop1 (/devices/virtual/block/loop1)... >22:17:52,490 DEBUG blivet: DeviceTree.getDeviceByName: name: loop1 ; >22:17:52,493 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,494 INFO blivet: loop1 is a loop device >22:17:52,497 DEBUG blivet: DeviceTree.addUdevLoopDevice: name: loop1 ; >22:17:52,500 DEBUG blivet: DeviceTree.getDeviceByName: name: /LiveOS/rootfs.img ; >22:17:52,503 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,504 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 33 >22:17:52,508 DEBUG blivet: FileDevice._setFormat: /LiveOS/rootfs.img ; current: None ; type: None ; >22:17:52,509 INFO blivet: added file /LiveOS/rootfs.img (id 32) to device tree >22:17:52,513 DEBUG blivet: FileDevice.addChild: kids: 0 ; name: /LiveOS/rootfs.img ; >22:17:52,513 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 36 >22:17:52,517 DEBUG blivet: LoopDevice._setFormat: loop1 ; current: None ; type: None ; >22:17:52,518 INFO blivet: added loop loop1 (id 35) to device tree >22:17:52,521 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: loop1 ; >22:17:52,525 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: loop1 ; label_type: None ; >22:17:52,527 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,528 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 38 >22:17:52,529 DEBUG blivet: device loop1 does not contain a disklabel >22:17:52,529 INFO blivet: type detected on 'loop1' is 'ext4' >22:17:52,654 DEBUG blivet: size=0 B, current=2 GiB >22:17:52,659 DEBUG blivet: using current size 0 as min size >22:17:52,662 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,663 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 39 >22:17:52,664 DEBUG blivet: LoopDevice._setFormat: loop1 ; current: None ; type: ext4 ; >22:17:52,666 INFO blivet: got device: LoopDevice instance (0x7f05d096c8d0) -- > name = loop1 status = False kids = 0 id = 35 > parents = ['existing 0 file /LiveOS/rootfs.img (32)'] > uuid = None size = 0 > format = existing ext4 filesystem > major = 0 minor = 0 exists = True protected = False > sysfs path = partedDevice = None > target size = 0 path = /dev/loop1 > format args = [] originalFormat = None >22:17:52,668 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,682 INFO blivet: got format: Ext4FS instance (0x7f05d096c4d0) object id 39-- > type = ext4 name = ext4 status = False > device = /dev/loop1 uuid = cecb21ba-a5f4-4085-802e-07f8b6968caf exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 2 GiB targetSize = 2 GiB > >22:17:52,685 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop2', > 'DEVPATH': '/devices/virtual/block/loop2', > 'DEVTYPE': 'disk', > 'DM_MULTIPATH_TIMESTAMP': '1392934656', > 'ID_FS_TYPE': 'DM_snapshot_cow', > 'ID_FS_USAGE': 'other', > 'MAJOR': '7', > 'MINOR': '2', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '283739', > 'name': 'loop2', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop2'} ; name: loop2 ; >22:17:52,686 INFO blivet: scanning loop2 (/devices/virtual/block/loop2)... >22:17:52,688 DEBUG blivet: DeviceTree.getDeviceByName: name: loop2 ; >22:17:52,689 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,690 INFO blivet: loop2 is a loop device >22:17:52,692 DEBUG blivet: DeviceTree.addUdevLoopDevice: name: loop2 ; >22:17:52,694 DEBUG blivet: DeviceTree.getDeviceByName: name: /overlay (deleted) ; >22:17:52,695 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,696 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 42 >22:17:52,698 DEBUG blivet: FileDevice._setFormat: /overlay (deleted) ; current: None ; type: None ; >22:17:52,699 INFO blivet: added file /overlay (deleted) (id 41) to device tree >22:17:52,701 DEBUG blivet: FileDevice.addChild: kids: 0 ; name: /overlay (deleted) ; >22:17:52,701 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 45 >22:17:52,703 DEBUG blivet: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >22:17:52,704 INFO blivet: added loop loop2 (id 44) to device tree >22:17:52,706 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: loop2 ; >22:17:52,707 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: loop2 ; label_type: None ; >22:17:52,708 DEBUG blivet: getFormat('DM_snapshot_cow') returning DeviceFormat instance with object id 47 >22:17:52,710 DEBUG blivet: LoopDevice.setup: loop2 ; status: False ; controllable: False ; orig: False ; >22:17:52,710 DEBUG blivet: setup of loop2 failed: specified file (/overlay (deleted)) does not exist >22:17:52,711 WARN blivet: aborting disklabel handler for loop2 >22:17:52,712 INFO blivet: type detected on 'loop2' is 'DM_snapshot_cow' >22:17:52,712 DEBUG blivet: getFormat('DM_snapshot_cow') returning DeviceFormat instance with object id 48 >22:17:52,714 DEBUG blivet: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >22:17:52,715 INFO blivet: got device: LoopDevice instance (0x7f05d096c410) -- > name = loop2 status = False kids = 0 id = 44 > parents = ['existing 0 file /overlay (deleted) (41)'] > uuid = None size = 0 > format = existing None > major = 0 minor = 0 exists = True protected = False > sysfs path = partedDevice = None > target size = 0 path = /dev/loop2 > format args = [] originalFormat = None >22:17:52,720 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/dm-name-live-rw /dev/disk/by-label/Anaconda /dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf /dev/mapper/live-rw', > 'DEVNAME': 'dm-0', > 'DEVPATH': '/devices/virtual/block/dm-0', > 'DEVTYPE': 'disk', > 'DM_MULTIPATH_TIMESTAMP': '1392934656', > 'DM_NAME': 'live-rw', > 'DM_SUSPENDED': '0', > 'DM_UDEV_DISABLE_LIBRARY_FALLBACK_FLAG': '1', > 'DM_UDEV_PRIMARY_SOURCE_FLAG': '1', > 'DM_UDEV_RULES_VSN': '2', > 'ID_FS_LABEL': 'Anaconda', > 'ID_FS_LABEL_ENC': 'Anaconda', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': 'cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'ID_FS_UUID_ENC': 'cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '253', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '401184', > 'name': 'dm-0', > 'symlinks': ['/dev/disk/by-id/dm-name-live-rw', > '/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf', > '/dev/mapper/live-rw'], > 'sysfs_path': '/devices/virtual/block/dm-0'} ; name: live-rw ; >22:17:52,721 INFO blivet: scanning live-rw (/devices/virtual/block/dm-0)... >22:17:52,722 DEBUG blivet: DeviceTree.getDeviceByName: name: live-rw ; >22:17:52,724 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,724 INFO blivet: live-rw is a device-mapper device >22:17:52,726 DEBUG blivet: DeviceTree.addUdevDMDevice: name: live-rw ; >22:17:52,728 DEBUG blivet: DeviceTree.getDeviceByName: name: loop1 ; >22:17:52,731 DEBUG blivet: DeviceTree.getDeviceByName returned existing 0 loop loop1 (35) with existing ext4 filesystem >22:17:52,734 DEBUG blivet: DeviceTree.getDeviceByName: name: loop2 ; >22:17:52,735 DEBUG blivet: DeviceTree.getDeviceByName returned existing 0 loop loop2 (44) >22:17:52,738 DEBUG blivet: DeviceTree.getDeviceByName: name: live-rw ; >22:17:52,740 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:52,742 DEBUG blivet: LoopDevice.addChild: kids: 0 ; name: loop2 ; >22:17:52,743 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 51 >22:17:52,744 DEBUG blivet: DMDevice._setFormat: live-rw ; current: None ; type: None ; >22:17:52,745 INFO blivet: added dm live-rw (id 50) to device tree >22:17:52,747 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: live-rw ; >22:17:52,748 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: live-rw ; label_type: None ; >22:17:52,751 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,751 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 53 >22:17:52,752 DEBUG blivet: device live-rw does not contain a disklabel >22:17:52,752 INFO blivet: type detected on 'live-rw' is 'ext4' >22:17:52,871 DEBUG blivet: size=882.54 MiB, current=2 GiB >22:17:52,872 DEBUG blivet: padding min size from 925413376 up to 925413876 >22:17:52,874 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:52,875 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 54 >22:17:52,877 DEBUG blivet: DMDevice._setFormat: live-rw ; current: None ; type: ext4 ; >22:17:52,878 DEBUG blivet: looking up parted Device: /dev/mapper/live-rw >22:17:53,207 INFO blivet: got device: DMDevice instance (0x7f05cd1dfb90) -- > name = live-rw status = True kids = 0 id = 50 > parents = ['existing 0 loop loop2 (44)'] > uuid = None size = 2 GiB > format = existing ext4 filesystem > major = 0 minor = 0 exists = True protected = True > sysfs path = /devices/virtual/block/dm-0 partedDevice = parted.Device instance -- > model: Linux device-mapper (snapshot) path: /dev/mapper/live-rw type: 12 > sectorSize: 512 physicalSectorSize: 512 > length: 4194304 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: True > hardwareGeometry: (261, 255, 63) biosGeometry: (261, 255, 63) > PedDevice: <_ped.Device object at 0x7f05d092eb00> > target size = 0 path = /dev/mapper/live-rw > format args = [] originalFormat = None target = None dmUuid = None >22:17:53,217 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:53,236 INFO blivet: got format: Ext4FS instance (0x7f05d096c5d0) object id 54-- > type = ext4 name = ext4 status = False > device = /dev/mapper/live-rw uuid = cecb21ba-a5f4-4085-802e-07f8b6968caf exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 2 GiB targetSize = 2 GiB > >22:17:53,241 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/dm-name-live-base /dev/disk/by-label/Anaconda /dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf /dev/mapper/live-base', > 'DEVNAME': 'dm-1', > 'DEVPATH': '/devices/virtual/block/dm-1', > 'DEVTYPE': 'disk', > 'DM_MULTIPATH_TIMESTAMP': '1392934656', > 'DM_NAME': 'live-base', > 'DM_SUSPENDED': '0', > 'DM_UDEV_DISABLE_LIBRARY_FALLBACK_FLAG': '1', > 'DM_UDEV_PRIMARY_SOURCE_FLAG': '1', > 'DM_UDEV_RULES_VSN': '2', > 'ID_FS_LABEL': 'Anaconda', > 'ID_FS_LABEL_ENC': 'Anaconda', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': 'cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'ID_FS_UUID_ENC': 'cecb21ba-a5f4-4085-802e-07f8b6968caf', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '253', > 'MINOR': '1', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '459734', > 'name': 'dm-1', > 'symlinks': ['/dev/disk/by-id/dm-name-live-base', > '/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/cecb21ba-a5f4-4085-802e-07f8b6968caf', > '/dev/mapper/live-base'], > 'sysfs_path': '/devices/virtual/block/dm-1'} ; name: live-base ; >22:17:53,242 INFO blivet: scanning live-base (/devices/virtual/block/dm-1)... >22:17:53,244 DEBUG blivet: DeviceTree.getDeviceByName: name: live-base ; >22:17:53,245 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:53,246 INFO blivet: live-base is a device-mapper device >22:17:53,248 DEBUG blivet: DeviceTree.addUdevDMDevice: name: live-base ; >22:17:53,249 DEBUG blivet: DMDevice.getDMNode: live-rw ; status: True ; >22:17:53,252 DEBUG blivet: DeviceTree.getDeviceByName: name: loop1 ; >22:17:53,253 DEBUG blivet: DeviceTree.getDeviceByName returned existing 0 loop loop1 (35) with existing ext4 filesystem >22:17:53,256 DEBUG blivet: DeviceTree.getDeviceByName: name: live-base ; >22:17:53,258 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:53,260 DEBUG blivet: LoopDevice.addChild: kids: 0 ; name: loop1 ; >22:17:53,261 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 57 >22:17:53,263 DEBUG blivet: DMDevice._setFormat: live-base ; current: None ; type: None ; >22:17:53,263 INFO blivet: added dm live-base (id 56) to device tree >22:17:53,265 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: live-base ; >22:17:53,267 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: live-base ; label_type: None ; >22:17:53,269 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:53,269 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 59 >22:17:53,270 DEBUG blivet: device live-base does not contain a disklabel >22:17:53,271 INFO blivet: type detected on 'live-base' is 'ext4' >22:17:53,388 DEBUG blivet: size=0 B, current=2 GiB >22:17:53,389 DEBUG blivet: using current size 0 as min size >22:17:53,392 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:53,393 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 60 >22:17:53,395 DEBUG blivet: DMDevice._setFormat: live-base ; current: None ; type: ext4 ; >22:17:53,396 DEBUG blivet: looking up parted Device: /dev/mapper/live-base >22:17:53,419 INFO blivet: got device: DMDevice instance (0x7f05d096cb50) -- > name = live-base status = True kids = 0 id = 56 > parents = ['existing 0 loop loop1 (35) with existing ext4 filesystem'] > uuid = None size = 2 GiB > format = existing ext4 filesystem > major = 0 minor = 0 exists = True protected = True > sysfs path = /devices/virtual/block/dm-1 partedDevice = parted.Device instance -- > model: Linux device-mapper (linear) path: /dev/mapper/live-base type: 12 > sectorSize: 512 physicalSectorSize: 512 > length: 4194304 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (261, 255, 63) biosGeometry: (261, 255, 63) > PedDevice: <_ped.Device object at 0x7f05d092ecb0> > target size = 0 path = /dev/mapper/live-base > format args = [] originalFormat = None target = None dmUuid = None >22:17:53,425 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:53,438 INFO blivet: got format: Ext4FS instance (0x7f05d096ce90) object id 60-- > type = ext4 name = ext4 status = False > device = /dev/mapper/live-base uuid = cecb21ba-a5f4-4085-802e-07f8b6968caf exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 2 GiB targetSize = 2 GiB > >22:17:53,512 DEBUG blivet: PartitionDevice.teardown: sda1 ; status: True ; controllable: True ; >22:17:53,514 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda1 ; status: False ; type: None ; >22:17:53,517 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda1 ; status: False ; type: None ; >22:17:53,561 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >22:17:53,564 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:17:53,567 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:17:53,612 DEBUG blivet: PartitionDevice.teardown: sda2 ; status: True ; controllable: True ; >22:17:53,614 DEBUG blivet: SwapSpace.teardown: device: /dev/sda2 ; status: False ; type: swap ; >22:17:53,619 DEBUG blivet: SwapSpace.teardown: device: /dev/sda2 ; status: False ; type: swap ; >22:17:53,665 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >22:17:53,668 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:17:53,672 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:17:53,717 DEBUG blivet: PartitionDevice.teardown: sda3 ; status: True ; controllable: True ; >22:17:53,764 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >22:17:53,766 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:17:53,770 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:17:53,816 DEBUG blivet: LoopDevice.teardown: loop0 ; status: False ; controllable: False ; >22:17:53,817 INFO blivet: not going to restore from backup of non-existent /etc/mdadm.conf >22:17:53,819 INFO blivet: edd: collected mbr signatures: {'sda': '0x0000b938'} >22:17:53,820 DEBUG blivet: edd: data extracted from 0x80: > type: ATA, ata_device: 0 > channel: 0, mbr_signature: 0x0000b938 > pci_dev: 00:01.1, scsi_id: None > scsi_lun: None, sectors: 20971520 >22:17:53,821 WARN blivet: edd: directory does not exist: /sys/devices/pci0000:00/0000:00:01.1/host0/target0:0:0/0:0:0:0/block >22:17:53,822 INFO blivet: edd: matched 0x80 to sda using MBR sig >22:17:53,825 DEBUG blivet: PartitionDevice.setup: sda3 ; status: True ; controllable: True ; orig: False ; >22:17:54,683 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >22:17:54,684 INFO blivet: error parsing blkid.tab: [Errno 2] No such file or directory: '/mnt/sysimage/etc/blkid/blkid.tab' >22:17:54,684 DEBUG blivet: parsing /mnt/sysimage/etc/crypttab >22:17:54,685 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >22:17:54,686 DEBUG blivet: crypttab maps: [] >22:17:54,686 DEBUG blivet: parsing /mnt/sysimage/etc/fstab >22:17:54,714 DEBUG blivet: resolved 'UUID=b5898e82-f7d8-4ec2-a093-7dc6b9f21644' to 'sda3' (partition) >22:17:54,715 DEBUG blivet: resolved 'UUID=5fbb2081-a04a-4e1b-a06a-a23fce68eb03' to 'sda2' (partition) >22:17:54,719 DEBUG blivet: DeviceTree.getDeviceByName: name: tmpfs ; >22:17:54,721 DEBUG blivet: DeviceTree.getDeviceByName returned None >22:17:54,724 DEBUG blivet: DeviceTree.getDeviceByPath: path: /dev/tmpfs ; >22:17:54,726 DEBUG blivet: DeviceTree.getDeviceByPath returned None >22:17:54,726 DEBUG blivet: failed to resolve '/dev/tmpfs' >22:17:54,728 DEBUG blivet: PartitionDevice.teardown: sda3 ; status: True ; controllable: True ; >22:17:55,005 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:55,009 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:55,012 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:55,018 DEBUG blivet: Ext4FS.supported: supported: True ; >22:17:55,080 DEBUG blivet: onlyuse is now: sda >22:18:01,500 DEBUG blivet: clearpart: looking at sda3 >22:18:01,501 DEBUG blivet: removing sda3 >22:18:01,504 DEBUG blivet: PartitionDevice._setFormat: sda3 ; >22:18:01,505 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 63 >22:18:01,507 DEBUG blivet: PartitionDevice._setFormat: sda3 ; current: ext4 ; type: None ; >22:18:01,507 INFO blivet: registered action: [62] Destroy Format ext4 filesystem on partition sda3 (id 17) >22:18:01,509 DEBUG blivet: PartitionDevice.teardown: sda3 ; status: True ; controllable: True ; >22:18:01,513 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda3 ; status: False ; type: None ; >22:18:01,552 INFO blivet: removed partition sda3 (id 17) from device tree >22:18:01,554 DEBUG blivet: DiskDevice.removeChild: kids: 3 ; name: sda ; >22:18:01,555 INFO blivet: registered action: [64] Destroy Device partition sda3 (id 17) >22:18:01,557 DEBUG blivet: partitions: ['sda1', 'sda2'] >22:18:01,557 DEBUG blivet: clearpart: looking at sda2 >22:18:01,558 DEBUG blivet: removing sda2 >22:18:01,560 DEBUG blivet: SwapSpace.teardown: device: /dev/sda2 ; status: False ; type: swap ; >22:18:01,562 DEBUG blivet: PartitionDevice._setFormat: sda2 ; >22:18:01,563 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 66 >22:18:01,565 DEBUG blivet: PartitionDevice._setFormat: sda2 ; current: swap ; type: None ; >22:18:01,565 INFO blivet: registered action: [65] Destroy Format swap on partition sda2 (id 11) >22:18:01,568 DEBUG blivet: PartitionDevice.teardown: sda2 ; status: True ; controllable: True ; >22:18:01,570 DEBUG blivet: SwapSpace.teardown: device: /dev/sda2 ; status: False ; type: swap ; >22:18:01,573 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda2 ; status: False ; type: None ; >22:18:01,611 INFO blivet: removed partition sda2 (id 11) from device tree >22:18:01,614 DEBUG blivet: DiskDevice.removeChild: kids: 2 ; name: sda ; >22:18:01,614 INFO blivet: registered action: [67] Destroy Device partition sda2 (id 11) >22:18:01,616 DEBUG blivet: partitions: ['sda1'] >22:18:01,616 DEBUG blivet: clearpart: looking at sda1 >22:18:01,617 DEBUG blivet: removing sda1 >22:18:01,619 DEBUG blivet: PartitionDevice.teardown: sda1 ; status: True ; controllable: True ; >22:18:01,621 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda1 ; status: False ; type: None ; >22:18:01,625 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda1 ; status: False ; type: None ; >22:18:01,662 INFO blivet: removed partition sda1 (id 6) from device tree >22:18:01,664 DEBUG blivet: DiskDevice.removeChild: kids: 1 ; name: sda ; >22:18:01,665 INFO blivet: registered action: [68] Destroy Device partition sda1 (id 6) >22:18:01,666 DEBUG blivet: partitions: [] >22:18:01,667 DEBUG blivet: checking whether disk sda has an empty extended >22:18:01,667 DEBUG blivet: extended is None ; logicals is [] >22:18:01,668 DEBUG blivet: clearpart: initializing sda >22:18:01,668 DEBUG blivet: removing sda >22:18:01,670 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >22:18:01,671 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 70 >22:18:01,673 DEBUG blivet: DiskDevice._setFormat: sda ; current: disklabel ; type: None ; >22:18:01,673 INFO blivet: registered action: [69] Destroy Format msdos disklabel on disk sda (id 1) >22:18:01,675 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda ; status: False ; type: None ; >22:18:01,676 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 72 >22:18:01,678 DEBUG blivet: DiskDevice._setFormat: sda ; current: None ; type: None ; >22:18:01,678 INFO blivet: registered action: [71] Destroy Format None on disk sda (id 1) >22:18:01,679 DEBUG blivet: required disklabel type for sda (1) is None >22:18:01,679 DEBUG blivet: default disklabel type for sda is msdos >22:18:01,680 DEBUG blivet: selecting msdos disklabel for sda based on size >22:18:01,682 DEBUG blivet: DiskLabel.__init__: device: /dev/sda ; labelType: msdos ; >22:18:01,687 DEBUG blivet: DiskLabel.freshPartedDisk: device: /dev/sda ; labelType: msdos ; >22:18:01,688 DEBUG blivet: Did not change pmbr_boot on parted.Disk instance -- > type: msdos primaryPartitionCount: 0 > lastPartitionNumber: -1 maxPrimaryPartitionCount: 4 > partitions: [] > device: <parted.device.Device object at 0x7f05cd266750> > PedDisk: <_ped.Disk object at 0x7f05cd3e0f38> >22:18:01,689 DEBUG blivet: getFormat('disklabel') returning DiskLabel instance with object id 73 >22:18:01,691 DEBUG blivet: DeviceFormat.teardown: device: /dev/sda ; status: False ; type: None ; >22:18:01,693 DEBUG blivet: DiskDevice._setFormat: sda ; current: None ; type: disklabel ; >22:18:01,693 INFO blivet: registered action: [74] Create Format msdos disklabel on disk sda (id 1) >22:18:01,697 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >22:18:01,705 DEBUG blivet: DeviceTree.getDeviceByName returned existing 10 GiB disk sda (1) with non-existent msdos disklabel >22:18:01,705 DEBUG blivet: resolved 'sda' to 'sda' (disk) >22:18:01,708 DEBUG blivet: Ext4FS.supported: supported: True ; >22:18:01,709 DEBUG blivet: getFormat('ext4') returning Ext4FS instance with object id 75 >22:18:01,711 DEBUG blivet: PartitionDevice._setFormat: req0 ; >22:18:01,713 DEBUG blivet: PartitionDevice._setFormat: req0 ; current: None ; type: ext4 ; >22:18:01,714 INFO blivet: added partition req0 (id 76) to device tree >22:18:01,714 INFO blivet: registered action: [78] Create Device partition req0 (id 76) >22:18:01,715 DEBUG blivet: getFormat('None') returning DeviceFormat instance with object id 80 >22:18:01,716 INFO blivet: registered action: [79] Create Format ext4 filesystem mounted at / on partition req0 (id 76) > > >/tmp/ifcfg.log: >22:17:49,243 DEBUG ifcfg: content of files (network initialization): >22:17:49,244 DEBUG ifcfg: /etc/sysconfig/network-scripts/ifcfg-ens3: >22:17:49,244 DEBUG ifcfg: # Generated by dracut initrd >22:17:49,244 DEBUG ifcfg: DEVICE="ens3" >22:17:49,245 DEBUG ifcfg: ONBOOT=yes >22:17:49,245 DEBUG ifcfg: NETBOOT=yes >22:17:49,246 DEBUG ifcfg: UUID="22116f20-1070-4359-b130-c872a063b547" >22:17:49,246 DEBUG ifcfg: BOOTPROTO=dhcp >22:17:49,247 DEBUG ifcfg: HWADDR="00:16:3e:47:dd:f8" >22:17:49,247 DEBUG ifcfg: TYPE=Ethernet >22:17:49,247 DEBUG ifcfg: NAME="ens3" >22:17:49,273 DEBUG ifcfg: all settings: [{'802-3-ethernet': {'s390-options': {}, 'mac-address': [0, 22, 62, 71, 221, 248]}, 'connection': {'interface-name': 'ens3', 'type': '802-3-ethernet', 'id': 'ens3', 'uuid': '22116f20-1070-4359-b130-c872a063b547'}, 'ipv4': {'routes': [], 'addresses': [], 'dns': [], 'method': 'auto'}, 'ipv6': {'routes': [], 'addresses': [], 'dns': [], 'method': 'ignore'}}, {'802-3-ethernet': {'s390-options': {}, 'mac-address': [0, 22, 62, 71, 221, 248]}, 'connection': {'timestamp': 1392934661L, 'autoconnect': False, 'type': '802-3-ethernet', 'id': 'ens3', 'uuid': '4ab34976-ca79-446e-b5f8-2425b2334f32'}, 'ipv4': {'routes': [], 'addresses': [], 'dns': [17435146L, 34212362L], 'method': 'auto'}, 'ipv6': {'routes': [], 'addresses': [], 'dns': [], 'method': 'link-local'}}] >22:17:49,400 DEBUG ifcfg: IfcfFile.read /etc/sysconfig/network-scripts/ifcfg-ens3 >22:17:49,403 DEBUG ifcfg: IfcfFile.read /etc/sysconfig/network-scripts/ifcfg-ens3 >22:17:49,403 DEBUG ifcfg: IfcfFile.read /etc/sysconfig/network-scripts/ifcfg-ens3 >22:17:49,504 DEBUG ifcfg: content of files (kickstart pre section applied for devices ['ens3']): >22:17:49,504 DEBUG ifcfg: /etc/sysconfig/network-scripts/ifcfg-ens3: >22:17:49,505 DEBUG ifcfg: # Generated by dracut initrd >22:17:49,505 DEBUG ifcfg: DEVICE="ens3" >22:17:49,505 DEBUG ifcfg: ONBOOT=yes >22:17:49,505 DEBUG ifcfg: NETBOOT=yes >22:17:49,506 DEBUG ifcfg: UUID="22116f20-1070-4359-b130-c872a063b547" >22:17:49,506 DEBUG ifcfg: BOOTPROTO=dhcp >22:17:49,506 DEBUG ifcfg: HWADDR="00:16:3e:47:dd:f8" >22:17:49,506 DEBUG ifcfg: TYPE=Ethernet >22:17:49,507 DEBUG ifcfg: NAME="ens3" >22:17:49,530 DEBUG ifcfg: all settings: [{'802-3-ethernet': {'s390-options': {}, 'mac-address': [0, 22, 62, 71, 221, 248]}, 'connection': {'interface-name': 'ens3', 'type': '802-3-ethernet', 'id': 'ens3', 'uuid': '22116f20-1070-4359-b130-c872a063b547'}, 'ipv4': {'routes': [], 'addresses': [], 'dns': [], 'method': 'auto'}, 'ipv6': {'routes': [], 'addresses': [], 'dns': [], 'method': 'ignore'}}, {'802-3-ethernet': {'s390-options': {}, 'mac-address': [0, 22, 62, 71, 221, 248]}, 'connection': {'timestamp': 1392934661L, 'autoconnect': False, 'type': '802-3-ethernet', 'id': 'ens3', 'uuid': '4ab34976-ca79-446e-b5f8-2425b2334f32'}, 'ipv4': {'routes': [], 'addresses': [], 'dns': [17435146L, 34212362L], 'method': 'auto'}, 'ipv6': {'routes': [], 'addresses': [], 'dns': [], 'method': 'link-local'}}] >22:17:49,689 DEBUG ifcfg: IfcfFile.read /etc/sysconfig/network-scripts/ifcfg-ens3 >22:17:49,690 DEBUG ifcfg: IfcfFile.read /etc/sysconfig/network-scripts/ifcfg-ens3 >22:17:49,691 DEBUG ifcfg: IfcfFile.read /etc/sysconfig/network-scripts/ifcfg-ens3 >22:17:49,781 DEBUG ifcfg: content of files (setting real kickstart ONBOOT value for devices ['ens3']): >22:17:49,782 DEBUG ifcfg: /etc/sysconfig/network-scripts/ifcfg-ens3: >22:17:49,782 DEBUG ifcfg: # Generated by dracut initrd >22:17:49,782 DEBUG ifcfg: DEVICE="ens3" >22:17:49,782 DEBUG ifcfg: ONBOOT=yes >22:17:49,783 DEBUG ifcfg: NETBOOT=yes >22:17:49,783 DEBUG ifcfg: UUID="22116f20-1070-4359-b130-c872a063b547" >22:17:49,783 DEBUG ifcfg: BOOTPROTO=dhcp >22:17:49,783 DEBUG ifcfg: HWADDR="00:16:3e:47:dd:f8" >22:17:49,784 DEBUG ifcfg: TYPE=Ethernet >22:17:49,784 DEBUG ifcfg: NAME="ens3" >22:17:49,807 DEBUG ifcfg: all settings: [{'802-3-ethernet': {'s390-options': {}, 'mac-address': [0, 22, 62, 71, 221, 248]}, 'connection': {'interface-name': 'ens3', 'type': '802-3-ethernet', 'id': 'ens3', 'uuid': '22116f20-1070-4359-b130-c872a063b547'}, 'ipv4': {'routes': [], 'addresses': [], 'dns': [], 'method': 'auto'}, 'ipv6': {'routes': [], 'addresses': [], 'dns': [], 'method': 'ignore'}}, {'802-3-ethernet': {'s390-options': {}, 'mac-address': [0, 22, 62, 71, 221, 248]}, 'connection': {'timestamp': 1392934661L, 'autoconnect': False, 'type': '802-3-ethernet', 'id': 'ens3', 'uuid': '4ab34976-ca79-446e-b5f8-2425b2334f32'}, 'ipv4': {'routes': [], 'addresses': [], 'dns': [17435146L, 34212362L], 'method': 'auto'}, 'ipv6': {'routes': [], 'addresses': [], 'dns': [], 'method': 'link-local'}}] > > >/proc/cmdline: >method=http://fedora.cora.nwra.com/development/rawhide/x86_64/os/ ks=http://cobbler.cora.nwra.com/cblr/svc/op/ks/system/vmrawhide ksdevice=link kssendmac lang= text > > >/tmp/syslog: >22:17:38,352 INFO rsyslogd: [origin software="rsyslogd" swVersion="7.4.8" x-pid="1085" x-info="http://www.rsyslog.com"] start >22:17:38,367 INFO kernel:[ 0.000000] Initializing cgroup subsys cpuset >22:17:38,367 INFO kernel:[ 0.000000] Initializing cgroup subsys cpu >22:17:38,367 INFO kernel:[ 0.000000] Initializing cgroup subsys cpuacct >22:17:38,367 NOTICE kernel:[ 0.000000] Linux version 3.14.0-0.rc3.git2.1.fc21.x86_64 (mockbuild@bkernel02) (gcc version 4.8.2 20140120 (Red Hat 4.8.2-14) (GCC) ) #1 SMP Tue Feb 18 19:45:04 UTC 2014 >22:17:38,367 INFO kernel:[ 0.000000] Command line: method=http://fedora.cora.nwra.com/development/rawhide/x86_64/os/ ks=http://cobbler.cora.nwra.com/cblr/svc/op/ks/system/vmrawhide ksdevice=link kssendmac lang= text >22:17:38,367 INFO kernel:[ 0.000000] Disabled fast string operations >22:17:38,367 INFO kernel:[ 0.000000] e820: BIOS-provided physical RAM map: >22:17:38,367 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable >22:17:38,367 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved >22:17:38,367 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved >22:17:38,367 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007cffcfff] usable >22:17:38,367 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x000000007cffd000-0x000000007cffffff] reserved >22:17:38,367 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000fffbc000-0x00000000ffffffff] reserved >22:17:38,367 INFO kernel:[ 0.000000] NX (Execute Disable) protection: active >22:17:38,367 INFO kernel:[ 0.000000] SMBIOS 2.4 present. >22:17:38,367 DEBUG kernel:[ 0.000000] DMI: Red Hat KVM, BIOS 0.5.1 01/01/2007 >22:17:38,367 INFO kernel:[ 0.000000] Hypervisor detected: KVM >22:17:38,367 DEBUG kernel:[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved >22:17:38,367 DEBUG kernel:[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable >22:17:38,367 INFO kernel:[ 0.000000] e820: last_pfn = 0x7cffd max_arch_pfn = 0x400000000 >22:17:38,367 DEBUG kernel:[ 0.000000] MTRR default type: write-back >22:17:38,367 DEBUG kernel:[ 0.000000] MTRR fixed ranges enabled: >22:17:38,367 DEBUG kernel:[ 0.000000] 00000-9FFFF write-back >22:17:38,367 DEBUG kernel:[ 0.000000] A0000-BFFFF uncachable >22:17:38,367 DEBUG kernel:[ 0.000000] C0000-FFFFF write-protect >22:17:38,367 DEBUG kernel:[ 0.000000] MTRR variable ranges enabled: >22:17:38,367 DEBUG kernel:[ 0.000000] 0 base 00E0000000 mask FFE0000000 uncachable >22:17:38,367 DEBUG kernel:[ 0.000000] 1 disabled >22:17:38,367 DEBUG kernel:[ 0.000000] 2 disabled >22:17:38,367 DEBUG kernel:[ 0.000000] 3 disabled >22:17:38,367 DEBUG kernel:[ 0.000000] 4 disabled >22:17:38,367 DEBUG kernel:[ 0.000000] 5 disabled >22:17:38,367 DEBUG kernel:[ 0.000000] 6 disabled >22:17:38,367 DEBUG kernel:[ 0.000000] 7 disabled >22:17:38,367 INFO kernel:[ 0.000000] PAT not supported by CPU. >22:17:38,367 INFO kernel:[ 0.000000] found SMP MP-table at [mem 0x000fda50-0x000fda5f] mapped at [ffff8800000fda50] >22:17:38,367 INFO kernel:[ 0.000000] Scanning 1 areas for low memory corruption >22:17:38,367 DEBUG kernel:[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576 >22:17:38,367 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x00000000-0x000fffff] page 4k >22:17:38,367 DEBUG kernel:[ 0.000000] BRK [0x02dc8000, 0x02dc8fff] PGTABLE >22:17:38,367 DEBUG kernel:[ 0.000000] BRK [0x02dc9000, 0x02dc9fff] PGTABLE >22:17:38,367 DEBUG kernel:[ 0.000000] BRK [0x02dca000, 0x02dcafff] PGTABLE >22:17:38,367 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x7a800000-0x7a9fffff] >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x7a800000-0x7a9fffff] page 2M >22:17:38,367 DEBUG kernel:[ 0.000000] BRK [0x02dcb000, 0x02dcbfff] PGTABLE >22:17:38,367 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x78000000-0x7a7fffff] >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x78000000-0x7a7fffff] page 2M >22:17:38,367 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x00100000-0x77ffffff] >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x00100000-0x001fffff] page 4k >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x00200000-0x77ffffff] page 2M >22:17:38,367 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x7aa00000-0x7cffcfff] >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x7aa00000-0x7cdfffff] page 2M >22:17:38,367 DEBUG kernel:[ 0.000000] [mem 0x7ce00000-0x7cffcfff] page 4k >22:17:38,367 DEBUG kernel:[ 0.000000] BRK [0x02dcc000, 0x02dccfff] PGTABLE >22:17:38,367 INFO kernel:[ 0.000000] RAMDISK: [mem 0x7aaf9000-0x7cfeffff] >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: RSDP 00000000000fda00 000014 (v00 BOCHS ) >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: RSDT 000000007cffd670 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: FACP 000000007cfffe40 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: DSDT 000000007cffd950 0024A2 (v01 BXPC BXDSDT 00000001 INTL 20090123) >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: FACS 000000007cfffe00 000040 >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: SSDT 000000007cffd8b0 00009E (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001) >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: APIC 000000007cffd7c0 000078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) >22:17:38,367 WARNING kernel:[ 0.000000] ACPI: SSDT 000000007cffd6b0 00010F (v01 BXPC BXSSDTPC 00000001 INTL 20090123) >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: Local APIC address 0xfee00000 >22:17:38,367 INFO kernel:[ 0.000000] No NUMA configuration found >22:17:38,367 INFO kernel:[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007cffcfff] >22:17:38,367 INFO kernel:[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x7cffcfff] >22:17:38,367 INFO kernel:[ 0.000000] NODE_DATA [mem 0x7aad2000-0x7aaf8fff] >22:17:38,367 INFO kernel:[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 >22:17:38,367 INFO kernel:[ 0.000000] kvm-clock: cpu 0, msr 0:7aa52001, boot clock >22:17:38,367 DEBUG kernel:[ 0.000000] [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff880078200000-ffff88007a1fffff] on node 0 >22:17:38,367 WARNING kernel:[ 0.000000] Zone ranges: >22:17:38,367 WARNING kernel:[ 0.000000] DMA [mem 0x00001000-0x00ffffff] >22:17:38,367 WARNING kernel:[ 0.000000] DMA32 [mem 0x01000000-0xffffffff] >22:17:38,367 WARNING kernel:[ 0.000000] Normal empty >22:17:38,367 WARNING kernel:[ 0.000000] Movable zone start for each node >22:17:38,367 WARNING kernel:[ 0.000000] Early memory node ranges >22:17:38,367 WARNING kernel:[ 0.000000] node 0: [mem 0x00001000-0x0009efff] >22:17:38,367 WARNING kernel:[ 0.000000] node 0: [mem 0x00100000-0x7cffcfff] >22:17:38,367 DEBUG kernel:[ 0.000000] On node 0 totalpages: 511899 >22:17:38,367 DEBUG kernel:[ 0.000000] DMA zone: 64 pages used for memmap >22:17:38,367 DEBUG kernel:[ 0.000000] DMA zone: 21 pages reserved >22:17:38,367 DEBUG kernel:[ 0.000000] DMA zone: 3998 pages, LIFO batch:0 >22:17:38,367 DEBUG kernel:[ 0.000000] DMA32 zone: 7936 pages used for memmap >22:17:38,367 DEBUG kernel:[ 0.000000] DMA32 zone: 507901 pages, LIFO batch:31 >22:17:38,367 INFO kernel:[ 0.000000] ACPI: PM-Timer IO Port: 0xb008 >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: Local APIC address 0xfee00000 >22:17:38,367 INFO kernel:[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) >22:17:38,367 INFO kernel:[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) >22:17:38,367 INFO kernel:[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0]) >22:17:38,367 INFO kernel:[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 >22:17:38,367 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) >22:17:38,367 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) >22:17:38,367 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) >22:17:38,367 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) >22:17:38,367 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: IRQ0 used by override. >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: IRQ2 used by override. >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: IRQ5 used by override. >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: IRQ9 used by override. >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: IRQ10 used by override. >22:17:38,367 DEBUG kernel:[ 0.000000] ACPI: IRQ11 used by override. >22:17:38,367 INFO kernel:[ 0.000000] Using ACPI (MADT) for SMP configuration information >22:17:38,367 INFO kernel:[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs >22:17:38,367 DEBUG kernel:[ 0.000000] nr_irqs_gsi: 40 >22:17:38,367 INFO kernel:[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] >22:17:38,367 INFO kernel:[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] >22:17:38,367 INFO kernel:[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] >22:17:38,367 INFO kernel:[ 0.000000] e820: [mem 0x7d000000-0xfffbbfff] available for PCI devices >22:17:38,367 INFO kernel:[ 0.000000] Booting paravirtualized kernel on KVM >22:17:38,367 INFO kernel:[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1 >22:17:38,367 INFO kernel:[ 0.000000] PERCPU: Embedded 478 pages/cpu @ffff88007a600000 s1926784 r8192 d22912 u2097152 >22:17:38,367 DEBUG kernel:[ 0.000000] pcpu-alloc: s1926784 r8192 d22912 u2097152 alloc=1*2097152 >22:17:38,367 DEBUG kernel:[ 0.000000] pcpu-alloc: [0] 0 >22:17:38,367 INFO kernel:[ 0.000000] kvm-clock: cpu 0, msr 0:7aa52001, primary cpu clock >22:17:38,367 INFO kernel:[ 0.000000] kvm-stealtime: cpu 0, msr 7a60e280 >22:17:38,367 WARNING kernel:[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 503878 >22:17:38,367 WARNING kernel:[ 0.000000] Policy zone: DMA32 >22:17:38,367 NOTICE kernel:[ 0.000000] Kernel command line: method=http://fedora.cora.nwra.com/development/rawhide/x86_64/os/ ks=http://cobbler.cora.nwra.com/cblr/svc/op/ks/system/vmrawhide ksdevice=link kssendmac lang= text >22:17:38,367 INFO kernel:[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) >22:17:38,367 WARNING kernel:[ 0.000000] Memory: 1943028K/2047596K available (8095K kernel code, 1605K rwdata, 3296K rodata, 3700K init, 12864K bss, 104568K reserved) >22:17:38,367 INFO kernel:[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 >22:17:38,367 INFO kernel:[ 0.000000] Hierarchical RCU implementation. >22:17:38,368 INFO kernel:[ 0.000000] RCU lockdep checking is enabled. >22:17:38,368 INFO kernel:[ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1. >22:17:38,368 INFO kernel:[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 >22:17:38,368 INFO kernel:[ 0.000000] NR_IRQS:524544 nr_irqs:256 16 >22:17:38,368 INFO kernel:[ 0.000000] ACPI: Core revision 20131218 >22:17:38,368 INFO kernel:[ 0.000000] kmemleak: Kernel memory leak detector disabled >22:17:38,368 WARNING kernel:[ 0.000000] ACPI: All ACPI Tables successfully acquired >22:17:38,368 INFO kernel:[ 0.000000] Console: colour VGA+ 80x25 >22:17:38,368 INFO kernel:[ 0.000000] console [tty0] enabled >22:17:38,368 WARNING kernel:[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar >22:17:38,368 WARNING kernel:[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8 >22:17:38,368 WARNING kernel:[ 0.000000] ... MAX_LOCK_DEPTH: 48 >22:17:38,368 WARNING kernel:[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191 >22:17:38,368 WARNING kernel:[ 0.000000] ... CLASSHASH_SIZE: 4096 >22:17:38,368 WARNING kernel:[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 16384 >22:17:38,368 WARNING kernel:[ 0.000000] ... MAX_LOCKDEP_CHAINS: 32768 >22:17:38,368 WARNING kernel:[ 0.000000] ... CHAINHASH_SIZE: 16384 >22:17:38,368 WARNING kernel:[ 0.000000] memory used by lock dependency info: 6367 kB >22:17:38,368 WARNING kernel:[ 0.000000] per task-struct memory footprint: 2688 bytes >22:17:38,368 INFO kernel:[ 0.000000] allocated 8388608 bytes of page_cgroup >22:17:38,368 INFO kernel:[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups >22:17:38,368 DEBUG kernel:[ 0.000000] ODEBUG: 18 of 18 active objects replaced >22:17:38,368 INFO kernel:[ 0.000000] tsc: Detected 2260.998 MHz processor >22:17:38,368 INFO kernel:[ 0.002000] Calibrating delay loop (skipped) preset value.. 4521.99 BogoMIPS (lpj=2260998) >22:17:38,368 INFO kernel:[ 0.003006] pid_max: default: 32768 minimum: 301 >22:17:38,368 INFO kernel:[ 0.004089] Security Framework initialized >22:17:38,368 INFO kernel:[ 0.005012] SELinux: Initializing. >22:17:38,368 DEBUG kernel:[ 0.005760] SELinux: Starting in permissive mode >22:17:38,368 INFO kernel:[ 0.007019] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) >22:17:38,368 INFO kernel:[ 0.008704] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) >22:17:38,368 INFO kernel:[ 0.009188] Mount-cache hash table entries: 256 >22:17:38,368 INFO kernel:[ 0.011819] Initializing cgroup subsys memory >22:17:38,368 INFO kernel:[ 0.012036] Initializing cgroup subsys devices >22:17:38,368 INFO kernel:[ 0.013027] Initializing cgroup subsys freezer >22:17:38,368 INFO kernel:[ 0.014026] Initializing cgroup subsys net_cls >22:17:38,368 INFO kernel:[ 0.015007] Initializing cgroup subsys blkio >22:17:38,385 INFO kernel:[ 0.015760] Initializing cgroup subsys perf_event >22:17:38,385 INFO kernel:[ 0.016010] Initializing cgroup subsys hugetlb >22:17:38,385 INFO kernel:[ 0.017119] Disabled fast string operations >22:17:38,385 INFO kernel:[ 0.018019] mce: CPU supports 10 MCE banks >22:17:38,385 INFO kernel:[ 0.019061] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 >22:17:38,385 INFO kernel:[ 0.019061] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 >22:17:38,385 INFO kernel:[ 0.019061] tlb_flushall_shift: 6 >22:17:38,385 INFO kernel:[ 0.034578] Freeing SMP alternatives memory: 24K (ffffffff82130000 - ffffffff82136000) >22:17:38,385 INFO kernel:[ 0.041468] ftrace: allocating 26502 entries in 104 pages >22:17:38,385 INFO kernel:[ 0.053280] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 >22:17:38,385 INFO kernel:[ 0.054004] smpboot: CPU0: Intel QEMU Virtual CPU version (cpu64-rhel6) (fam: 06, model: 0d, stepping: 03) >22:17:38,385 INFO kernel:[ 0.056000] Performance Events: Broken PMU hardware detected, using software events only. >22:17:38,385 ERR kernel:[ 0.056005] Failed to access perfctr msr (MSR c1 is 0) >22:17:38,385 INFO kernel:[ 0.059450] x86: Booted up 1 node, 1 CPUs >22:17:38,385 INFO kernel:[ 0.060005] smpboot: Total of 1 processors activated (4521.99 BogoMIPS) >22:17:38,385 WARNING kernel:[ 0.061748] NMI watchdog: disabled (cpu0): hardware events not enabled >22:17:38,385 INFO kernel:[ 0.063333] devtmpfs: initialized >22:17:38,385 INFO kernel:[ 0.070125] atomic64 test passed for x86-64 platform with CX8 and with SSE >22:17:38,385 INFO kernel:[ 0.071004] pinctrl core: initialized pinctrl subsystem >22:17:38,385 INFO kernel:[ 0.072117] RTC time: 22:15:48, date: 02/20/14 >22:17:38,385 INFO kernel:[ 0.073107] NET: Registered protocol family 16 >22:17:38,385 INFO kernel:[ 0.074336] cpuidle: using governor menu >22:17:38,385 INFO kernel:[ 0.075165] ACPI: bus type PCI registered >22:17:38,385 INFO kernel:[ 0.075915] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 >22:17:38,385 INFO kernel:[ 0.077166] PCI: Using configuration type 1 for base access >22:17:38,385 INFO kernel:[ 0.084341] bio: create slab <bio-0> at 0 >22:17:38,385 INFO kernel:[ 0.085339] ACPI: Added _OSI(Module Device) >22:17:38,385 INFO kernel:[ 0.086005] ACPI: Added _OSI(Processor Device) >22:17:38,385 INFO kernel:[ 0.086749] ACPI: Added _OSI(3.0 _SCP Extensions) >22:17:38,385 INFO kernel:[ 0.087004] ACPI: Added _OSI(Processor Aggregator Device) >22:17:38,385 INFO kernel:[ 0.099149] ACPI: Interpreter enabled >22:17:38,385 WARNING kernel:[ 0.099866] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131218/hwxface-580) >22:17:38,385 WARNING kernel:[ 0.101007] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131218/hwxface-580) >22:17:38,385 WARNING kernel:[ 0.103007] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131218/hwxface-580) >22:17:38,385 WARNING kernel:[ 0.104661] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S4_] (20131218/hwxface-580) >22:17:38,385 INFO kernel:[ 0.106017] ACPI: (supports S0 S5) >22:17:38,385 INFO kernel:[ 0.107004] ACPI: Using IOAPIC for interrupt routing >22:17:38,385 INFO kernel:[ 0.108044] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug >22:17:38,385 INFO kernel:[ 0.111818] ACPI: No dock devices found. >22:17:38,385 INFO kernel:[ 0.136253] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) >22:17:38,385 INFO kernel:[ 0.137012] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI] >22:17:38,385 INFO kernel:[ 0.138063] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM >22:17:38,385 DEBUG kernel:[ 0.139033] acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) >22:17:38,385 DEBUG kernel:[ 0.139035] acpi PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) >22:17:38,385 DEBUG kernel:[ 0.139038] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) >22:17:38,385 DEBUG kernel:[ 0.139039] acpi PNP0A03:00: host bridge window [mem 0xe0000000-0xfebfffff] (ignored) >22:17:38,385 DEBUG kernel:[ 0.139043] PCI: root bus 00: using default resources >22:17:38,385 WARNING kernel:[ 0.139069] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. >22:17:38,385 INFO kernel:[ 0.142418] acpiphp: Slot [1] registered >22:17:38,385 INFO kernel:[ 0.143096] acpiphp: Slot [2] registered >22:17:38,385 INFO kernel:[ 0.144088] acpiphp: Slot [3] registered >22:17:38,385 INFO kernel:[ 0.145111] acpiphp: Slot [4] registered >22:17:38,385 INFO kernel:[ 0.146111] acpiphp: Slot [5] registered >22:17:38,385 INFO kernel:[ 0.148030] acpiphp: Slot [6] registered >22:17:38,385 INFO kernel:[ 0.149112] acpiphp: Slot [7] registered >22:17:38,385 INFO kernel:[ 0.150117] acpiphp: Slot [8] registered >22:17:38,385 INFO kernel:[ 0.151110] acpiphp: Slot [9] registered >22:17:38,385 INFO kernel:[ 0.152000] acpiphp: Slot [10] registered >22:17:38,385 INFO kernel:[ 0.152000] acpiphp: Slot [11] registered >22:17:38,385 INFO kernel:[ 0.152000] acpiphp: Slot [12] registered >22:17:38,385 INFO kernel:[ 0.152071] acpiphp: Slot [13] registered >22:17:38,385 INFO kernel:[ 0.152866] acpiphp: Slot [14] registered >22:17:38,385 INFO kernel:[ 0.153071] acpiphp: Slot [15] registered >22:17:38,385 INFO kernel:[ 0.154009] acpiphp: Slot [16] registered >22:17:38,385 INFO kernel:[ 0.154802] acpiphp: Slot [17] registered >22:17:38,385 INFO kernel:[ 0.155072] acpiphp: Slot [18] registered >22:17:38,385 INFO kernel:[ 0.156070] acpiphp: Slot [19] registered >22:17:38,385 INFO kernel:[ 0.157075] acpiphp: Slot [20] registered >22:17:38,390 INFO kernel:[ 0.158057] acpiphp: Slot [21] registered >22:17:38,390 INFO kernel:[ 0.158849] acpiphp: Slot [22] registered >22:17:38,390 INFO kernel:[ 0.159103] acpiphp: Slot [23] registered >22:17:38,390 INFO kernel:[ 0.159917] acpiphp: Slot [24] registered >22:17:38,390 INFO kernel:[ 0.160000] acpiphp: Slot [25] registered >22:17:38,390 INFO kernel:[ 0.160000] acpiphp: Slot [26] registered >22:17:38,390 INFO kernel:[ 0.160000] acpiphp: Slot [27] registered >22:17:38,390 INFO kernel:[ 0.160000] acpiphp: Slot [28] registered >22:17:38,390 INFO kernel:[ 0.160095] acpiphp: Slot [29] registered >22:17:38,390 INFO kernel:[ 0.162036] acpiphp: Slot [30] registered >22:17:38,390 INFO kernel:[ 0.163058] acpiphp: Slot [31] registered >22:17:38,390 INFO kernel:[ 0.165079] PCI host bridge to bus 0000:00 >22:17:38,390 INFO kernel:[ 0.166016] pci_bus 0000:00: root bus resource [bus 00-ff] >22:17:38,390 INFO kernel:[ 0.167006] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] >22:17:38,390 INFO kernel:[ 0.168005] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffffff] >22:17:38,390 DEBUG kernel:[ 0.169044] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 >22:17:38,390 DEBUG kernel:[ 0.169922] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 >22:17:38,390 DEBUG kernel:[ 0.170974] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 >22:17:38,390 DEBUG kernel:[ 0.171247] pci 0000:00:01.1: reg 0x20: [io 0xc000-0xc00f] >22:17:38,390 DEBUG kernel:[ 0.171954] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 >22:17:38,390 DEBUG kernel:[ 0.172229] pci 0000:00:01.2: reg 0x20: [io 0xc020-0xc03f] >22:17:38,390 DEBUG kernel:[ 0.172931] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 >22:17:38,390 INFO kernel:[ 0.173323] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI >22:17:38,390 INFO kernel:[ 0.174014] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB >22:17:38,390 DEBUG kernel:[ 0.176275] pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000 >22:17:38,390 DEBUG kernel:[ 0.180011] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf1ffffff pref] >22:17:38,391 DEBUG kernel:[ 0.182010] pci 0000:00:02.0: reg 0x14: [mem 0xf2000000-0xf2000fff] >22:17:38,391 DEBUG kernel:[ 0.196015] pci 0000:00:02.0: reg 0x30: [mem 0xf2010000-0xf201ffff pref] >22:17:38,391 DEBUG kernel:[ 0.198008] pci 0000:00:03.0: [10ec:8139] type 00 class 0x020000 >22:17:38,391 DEBUG kernel:[ 0.198177] pci 0000:00:03.0: reg 0x10: [io 0xc100-0xc1ff] >22:17:38,391 DEBUG kernel:[ 0.198305] pci 0000:00:03.0: reg 0x14: [mem 0xf2020000-0xf20200ff] >22:17:38,391 DEBUG kernel:[ 0.198907] pci 0000:00:03.0: reg 0x30: [mem 0xf2030000-0xf203ffff pref] >22:17:38,391 DEBUG kernel:[ 0.199961] pci 0000:00:04.0: [1af4:1002] type 00 class 0x050000 >22:17:38,391 DEBUG kernel:[ 0.200115] pci 0000:00:04.0: reg 0x10: [io 0xc200-0xc21f] >22:17:38,391 INFO kernel:[ 0.203497] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) >22:17:38,391 INFO kernel:[ 0.205425] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) >22:17:38,391 INFO kernel:[ 0.207286] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) >22:17:38,391 INFO kernel:[ 0.208803] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) >22:17:38,391 INFO kernel:[ 0.210136] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) >22:17:38,391 WARNING kernel:[ 0.211676] ACPI: Enabled 16 GPEs in block 00 to 0F >22:17:38,391 INFO kernel:[ 0.213341] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none >22:17:38,391 INFO kernel:[ 0.214006] vgaarb: loaded >22:17:38,391 INFO kernel:[ 0.215003] vgaarb: bridge control possible 0000:00:02.0 >22:17:38,391 NOTICE kernel:[ 0.216234] SCSI subsystem initialized >22:17:38,391 DEBUG kernel:[ 0.217080] libata version 3.00 loaded. >22:17:38,391 INFO kernel:[ 0.217179] ACPI: bus type USB registered >22:17:38,391 INFO kernel:[ 0.218075] usbcore: registered new interface driver usbfs >22:17:38,391 INFO kernel:[ 0.219040] usbcore: registered new interface driver hub >22:17:38,391 INFO kernel:[ 0.220068] usbcore: registered new device driver usb >22:17:38,391 INFO kernel:[ 0.221310] PCI: Using ACPI for IRQ routing >22:17:38,391 DEBUG kernel:[ 0.222007] PCI: pci_cache_line_size set to 64 bytes >22:17:38,391 DEBUG kernel:[ 0.223179] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff] >22:17:38,391 DEBUG kernel:[ 0.223200] e820: reserve RAM buffer [mem 0x7cffd000-0x7fffffff] >22:17:38,391 INFO kernel:[ 0.224166] NetLabel: Initializing >22:17:38,391 INFO kernel:[ 0.225006] NetLabel: domain hash size = 128 >22:17:38,391 INFO kernel:[ 0.226005] NetLabel: protocols = UNLABELED CIPSOv4 >22:17:38,391 INFO kernel:[ 0.227090] NetLabel: unlabeled traffic allowed by default >22:17:38,391 INFO kernel:[ 0.228166] Switched to clocksource kvm-clock >22:17:38,391 INFO kernel:[ 0.294921] pnp: PnP ACPI init >22:17:38,391 INFO kernel:[ 0.295711] ACPI: bus type PNP registered >22:17:38,391 DEBUG kernel:[ 0.296888] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active) >22:17:38,391 DEBUG kernel:[ 0.297126] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active) >22:17:38,391 DEBUG kernel:[ 0.297337] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active) >22:17:38,391 DEBUG kernel:[ 0.297446] pnp 00:03: [dma 2] >22:17:38,391 DEBUG kernel:[ 0.297548] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active) >22:17:38,391 DEBUG kernel:[ 0.297918] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active) >22:17:38,391 INFO kernel:[ 0.298626] pnp: PnP ACPI: found 5 devices >22:17:38,391 INFO kernel:[ 0.299395] ACPI: bus type PNP unregistered >22:17:38,391 DEBUG kernel:[ 0.312752] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] >22:17:38,391 DEBUG kernel:[ 0.312756] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffffff] >22:17:38,391 INFO kernel:[ 0.312824] NET: Registered protocol family 2 >22:17:38,391 INFO kernel:[ 0.314181] TCP established hash table entries: 16384 (order: 5, 131072 bytes) >22:17:38,391 INFO kernel:[ 0.316090] TCP bind hash table entries: 16384 (order: 8, 1310720 bytes) >22:17:38,391 INFO kernel:[ 0.317961] TCP: Hash tables configured (established 16384 bind 16384) >22:17:38,391 INFO kernel:[ 0.318891] TCP: reno registered >22:17:38,391 INFO kernel:[ 0.319676] UDP hash table entries: 1024 (order: 5, 196608 bytes) >22:17:38,391 INFO kernel:[ 0.321094] UDP-Lite hash table entries: 1024 (order: 5, 196608 bytes) >22:17:38,391 INFO kernel:[ 0.322494] NET: Registered protocol family 1 >22:17:38,391 INFO kernel:[ 0.323285] pci 0000:00:00.0: Limiting direct PCI/PCI transfers >22:17:38,391 INFO kernel:[ 0.324147] pci 0000:00:01.0: PIIX3: Enabling Passive Release >22:17:38,391 INFO kernel:[ 0.324984] pci 0000:00:01.0: Activating ISA DMA hang workarounds >22:17:38,391 WARNING kernel:[ 0.327030] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11 >22:17:38,391 DEBUG kernel:[ 0.328778] pci 0000:00:02.0: Boot video device >22:17:38,391 DEBUG kernel:[ 0.328811] PCI: CLS 0 bytes, default 64 >22:17:38,391 INFO kernel:[ 0.329204] Unpacking initramfs... >22:17:38,391 INFO kernel:[ 5.403360] Freeing initrd memory: 37852K (ffff88007aaf9000 - ffff88007cff0000) >22:17:38,391 INFO kernel:[ 5.426447] DMA-API: preallocated 65536 debug entries >22:17:38,391 INFO kernel:[ 5.427376] DMA-API: debugging enabled by kernel config >22:17:38,391 INFO kernel:[ 5.429000] Scanning for low memory corruption every 60 seconds >22:17:38,391 INFO kernel:[ 5.431133] futex hash table entries: 256 (order: 3, 32768 bytes) >22:17:38,391 NOTICE kernel:[ 5.432028] Initialise system trusted keyring >22:17:38,391 INFO kernel:[ 5.432908] audit: initializing netlink subsys (disabled) >22:17:38,391 WARNING kernel:[ 5.433783] cryptomgr_test (24) used greatest stack depth: 6096 bytes left >22:17:38,391 NOTICE kernel:[ 5.434862] audit: type=2000 audit(1392934555.079:1): initialized >22:17:38,391 INFO kernel:[ 5.461201] HugeTLB registered 2 MB page size, pre-allocated 0 pages >22:17:38,391 INFO kernel:[ 5.471478] zbud: loaded >22:17:38,391 NOTICE kernel:[ 5.472743] VFS: Disk quotas dquot_6.5.2 >22:17:38,391 WARNING kernel:[ 5.473663] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) >22:17:38,391 INFO kernel:[ 5.476654] msgmni has been set to 3868 >22:17:38,391 NOTICE kernel:[ 5.482653] Key type big_key registered >22:17:38,391 DEBUG kernel:[ 5.483752] SELinux: Registering netfilter hooks >22:17:38,391 WARNING kernel:[ 5.485189] cryptomgr_test (29) used greatest stack depth: 5376 bytes left >22:17:38,391 INFO kernel:[ 5.488157] alg: No test for stdrng (krng) >22:17:38,391 INFO kernel:[ 5.489397] NET: Registered protocol family 38 >22:17:38,391 NOTICE kernel:[ 5.490430] Key type asymmetric registered >22:17:38,391 NOTICE kernel:[ 5.491197] Asymmetric key parser 'x509' registered >22:17:38,391 INFO kernel:[ 5.492042] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) >22:17:38,391 INFO kernel:[ 5.493571] io scheduler noop registered >22:17:38,391 INFO kernel:[ 5.494341] io scheduler deadline registered >22:17:38,391 INFO kernel:[ 5.495440] io scheduler cfq registered (default) >22:17:38,391 DEBUG kernel:[ 5.497863] list_sort_test: start testing list_sort() >22:17:38,391 INFO kernel:[ 5.498741] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 >22:17:38,391 INFO kernel:[ 5.499740] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 >22:17:38,391 DEBUG kernel:[ 5.500905] intel_idle: does not run on family 6 model 13 >22:17:38,391 INFO kernel:[ 5.501244] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 >22:17:38,391 INFO kernel:[ 5.502683] ACPI: Power Button [PWRF] >22:17:38,391 INFO kernel:[ 5.503914] GHES: HEST is not enabled! >22:17:38,391 INFO kernel:[ 5.504801] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled >22:17:38,391 INFO kernel:[ 5.527541] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A >22:17:38,391 INFO kernel:[ 5.530975] Non-volatile memory driver v1.3 >22:17:38,391 INFO kernel:[ 5.531757] Linux agpgart interface v0.103 >22:17:38,391 DEBUG kernel:[ 5.533195] ata_piix 0000:00:01.1: version 2.13 >22:17:38,391 INFO kernel:[ 5.535197] scsi0 : ata_piix >22:17:38,391 INFO kernel:[ 5.536345] scsi1 : ata_piix >22:17:38,391 INFO kernel:[ 5.537219] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc000 irq 14 >22:17:38,391 INFO kernel:[ 5.538113] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc008 irq 15 >22:17:38,391 INFO kernel:[ 5.539901] libphy: Fixed MDIO Bus: probed >22:17:38,391 INFO kernel:[ 5.540870] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver >22:17:38,391 INFO kernel:[ 5.541757] ehci-pci: EHCI PCI platform driver >22:17:38,391 INFO kernel:[ 5.542559] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver >22:17:38,391 INFO kernel:[ 5.543434] ohci-pci: OHCI PCI platform driver >22:17:38,391 INFO kernel:[ 5.544255] uhci_hcd: USB Universal Host Controller Interface driver >22:17:38,391 INFO kernel:[ 5.546277] uhci_hcd 0000:00:01.2: UHCI Host Controller >22:17:38,391 INFO kernel:[ 5.547566] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1 >22:17:38,391 INFO kernel:[ 5.549040] uhci_hcd 0000:00:01.2: detected 2 ports >22:17:38,391 INFO kernel:[ 5.549934] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c020 >22:17:38,391 INFO kernel:[ 5.551205] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001 >22:17:38,391 INFO kernel:[ 5.552230] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >22:17:38,391 INFO kernel:[ 5.553759] usb usb1: Product: UHCI Host Controller >22:17:38,391 INFO kernel:[ 5.554638] usb usb1: Manufacturer: Linux 3.14.0-0.rc3.git2.1.fc21.x86_64 uhci_hcd >22:17:38,391 INFO kernel:[ 5.556148] usb usb1: SerialNumber: 0000:00:01.2 >22:17:38,391 INFO kernel:[ 5.557813] hub 1-0:1.0: USB hub found >22:17:38,391 INFO kernel:[ 5.558746] hub 1-0:1.0: 2 ports detected >22:17:38,391 INFO kernel:[ 5.560653] usbcore: registered new interface driver usbserial >22:17:38,391 INFO kernel:[ 5.561606] usbcore: registered new interface driver usbserial_generic >22:17:38,391 INFO kernel:[ 5.562657] usbserial: USB Serial support registered for generic >22:17:38,391 INFO kernel:[ 5.563698] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 >22:17:38,391 INFO kernel:[ 5.566126] serio: i8042 KBD port at 0x60,0x64 irq 1 >22:17:38,391 INFO kernel:[ 5.567060] serio: i8042 AUX port at 0x60,0x64 irq 12 >22:17:38,391 INFO kernel:[ 5.568496] mousedev: PS/2 mouse device common for all mice >22:17:38,391 INFO kernel:[ 5.570616] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 >22:17:38,391 INFO kernel:[ 5.572856] rtc_cmos 00:00: RTC can wake from S4 >22:17:38,391 INFO kernel:[ 5.576158] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0 >22:17:38,391 INFO kernel:[ 5.577203] rtc_cmos 00:00: alarms up to one day, 114 bytes nvram >22:17:38,391 INFO kernel:[ 5.578453] device-mapper: uevent: version 1.0.3 >22:17:38,391 INFO kernel:[ 5.579596] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com >22:17:38,391 INFO kernel:[ 5.581668] hidraw: raw HID events driver (C) Jiri Kosina >22:17:38,391 INFO kernel:[ 5.582995] usbcore: registered new interface driver usbhid >22:17:38,391 INFO kernel:[ 5.583874] usbhid: USB HID core driver >22:17:38,391 INFO kernel:[ 5.584916] drop_monitor: Initializing network drop monitor service >22:17:38,391 INFO kernel:[ 5.586081] ip_tables: (C) 2000-2006 Netfilter Core Team >22:17:38,391 INFO kernel:[ 5.586975] TCP: cubic registered >22:17:38,391 INFO kernel:[ 5.587774] Initializing XFRM netlink socket >22:17:38,391 INFO kernel:[ 5.589319] NET: Registered protocol family 10 >22:17:38,391 INFO kernel:[ 5.590822] mip6: Mobile IPv6 >22:17:38,391 INFO kernel:[ 5.591622] NET: Registered protocol family 17 >22:17:38,391 NOTICE kernel:[ 5.593302] Loading compiled-in X.509 certificates >22:17:38,391 NOTICE kernel:[ 5.595317] Loaded X.509 cert 'Fedora kernel signing key: 886218320269d8175dc2d485c12b072482a39a2f' >22:17:38,391 INFO kernel:[ 5.596952] registered taskstats version 1 >22:17:38,391 INFO kernel:[ 5.598854] Magic number: 2:532:300 >22:17:38,391 INFO kernel:[ 5.599804] rtc_cmos 00:00: setting system clock to 2014-02-20 22:15:54 UTC (1392934554) >22:17:38,391 DEBUG kernel:[ 5.601567] PM: Hibernation image not present or could not be loaded. >22:17:38,391 DEBUG kernel:[ 5.691285] ata1.01: NODEV after polling detection >22:17:38,391 INFO kernel:[ 5.691624] ata1.00: ATA-7: QEMU HARDDISK, 0.12.1, max UDMA/100 >22:17:38,391 INFO kernel:[ 5.693027] ata1.00: 20971520 sectors, multi 16: LBA48 >22:17:38,391 INFO kernel:[ 5.694879] ata1.00: configured for MWDMA2 >22:17:38,391 NOTICE kernel:[ 5.697518] scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 0.12 PQ: 0 ANSI: 5 >22:17:38,391 NOTICE kernel:[ 5.701302] sd 0:0:0:0: [sda] 20971520 512-byte logical blocks: (10.7 GB/10.0 GiB) >22:17:38,391 NOTICE kernel:[ 5.702882] sd 0:0:0:0: Attached scsi generic sg0 type 0 >22:17:38,391 NOTICE kernel:[ 5.704429] sd 0:0:0:0: [sda] Write Protect is off >22:17:38,391 DEBUG kernel:[ 5.705250] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 >22:17:38,391 NOTICE kernel:[ 5.705336] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA >22:17:38,391 INFO kernel:[ 5.793511] sda: sda1 sda2 sda3 >22:17:38,391 NOTICE kernel:[ 5.797504] sd 0:0:0:0: [sda] Attached SCSI disk >22:17:38,391 INFO kernel:[ 5.802552] Freeing unused kernel memory: 3700K (ffffffff81d93000 - ffffffff82130000) >22:17:38,391 INFO kernel:[ 5.803980] Write protecting the kernel read-only data: 12288k >22:17:38,391 INFO kernel:[ 5.805621] Freeing unused kernel memory: 84K (ffff8800017eb000 - ffff880001800000) >22:17:38,391 INFO kernel:[ 5.809619] Freeing unused kernel memory: 800K (ffff880001b38000 - ffff880001c00000) >22:17:38,391 NOTICE kernel:[ 5.849165] random: systemd urandom read with 20 bits of entropy available >22:17:38,391 WARNING kernel:[ 5.899929] dracut-rootfs-g (52) used greatest stack depth: 5176 bytes left >22:17:38,391 INFO kernel:[ 6.051071] device-mapper: multipath: version 1.6.0 loaded >22:17:38,391 INFO kernel:[ 6.278777] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found >22:17:38,391 INFO kernel:[ 6.409499] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3 >22:17:38,391 INFO kernel:[ 6.430194] tsc: Refined TSC clocksource calibration: 2261.020 MHz >22:17:38,391 INFO kernel:[ 6.882688] squashfs: version 4.0 (2009/01/31) Phillip Lougher >22:17:38,391 WARNING kernel:[ 6.884067] modprobe (316) used greatest stack depth: 5104 bytes left >22:17:38,391 INFO kernel:[ 6.892357] Loading iSCSI transport class v2.0-870. >22:17:38,391 NOTICE kernel:[ 6.899746] iscsi: registered transport (tcp) >22:17:38,391 INFO kernel:[ 6.906182] alua: device handler registered >22:17:38,391 INFO kernel:[ 6.912558] emc: device handler registered >22:17:38,391 INFO kernel:[ 6.918844] hp_sw: device handler registered >22:17:38,391 INFO kernel:[ 6.925266] rdac: device handler registered >22:17:38,391 INFO kernel:[ 6.941105] No iBFT detected. >22:17:38,391 INFO kernel:[ 6.947585] md: raid0 personality registered for level 0 >22:17:38,391 INFO kernel:[ 6.954529] md: raid1 personality registered for level 1 >22:17:38,391 INFO kernel:[ 6.960721] async_tx: api initialized (async) >22:17:38,391 INFO kernel:[ 6.963183] xor: measuring software checksum speed >22:17:38,391 INFO kernel:[ 6.973042] prefetch64-sse: 9580.000 MB/sec >22:17:38,391 INFO kernel:[ 6.983050] generic_sse: 8536.000 MB/sec >22:17:38,391 INFO kernel:[ 6.983850] xor: using function: prefetch64-sse (9580.000 MB/sec) >22:17:38,391 WARNING kernel:[ 7.005041] raid6: sse2x1 5785 MB/s >22:17:38,391 WARNING kernel:[ 7.022056] raid6: sse2x2 6761 MB/s >22:17:38,391 WARNING kernel:[ 7.039052] raid6: sse2x4 7457 MB/s >22:17:38,391 WARNING kernel:[ 7.039800] raid6: using algorithm sse2x4 (7457 MB/s) >22:17:38,391 WARNING kernel:[ 7.040653] raid6: using intx1 recovery algorithm >22:17:38,391 INFO kernel:[ 7.050276] md: raid6 personality registered for level 6 >22:17:38,391 INFO kernel:[ 7.051186] md: raid5 personality registered for level 5 >22:17:38,391 INFO kernel:[ 7.052060] md: raid4 personality registered for level 4 >22:17:38,391 INFO kernel:[ 7.068154] md: raid10 personality registered for level 10 >22:17:38,391 INFO kernel:[ 7.074573] md: linear personality registered for level -1 >22:17:38,391 INFO kernel:[ 7.100298] device-mapper: multipath round-robin: version 1.0.0 loaded >22:17:38,391 INFO kernel:[ 7.116313] sha256_ssse3: Neither AVX nor SSSE3 is available/usable. >22:17:38,391 WARNING kernel:[ 7.118144] modprobe (343) used greatest stack depth: 5032 bytes left >22:17:38,391 INFO kernel:[ 7.160339] RPC: Registered named UNIX socket transport module. >22:17:38,391 INFO kernel:[ 7.161352] RPC: Registered udp transport module. >22:17:38,391 INFO kernel:[ 7.162537] RPC: Registered tcp transport module. >22:17:38,391 INFO kernel:[ 7.163703] RPC: Registered tcp NFSv4.1 backchannel transport module. >22:17:38,391 WARNING kernel:[ 7.166154] modprobe (350) used greatest stack depth: 4984 bytes left >22:17:38,391 INFO kernel:[ 7.798636] 8139cp: 8139cp: 10/100 PCI Ethernet driver v1.3 (Mar 22, 2004) >22:17:38,391 WARNING kernel:[ 7.826646] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 >22:17:38,391 INFO kernel:[ 7.839700] [drm] Initialized drm 1.1.0 20060810 >22:17:38,391 INFO kernel:[ 7.854984] 8139cp 0000:00:03.0 eth0: RTL-8139C+ at 0xffffc900004da000, 00:16:3e:47:dd:f8, IRQ 10 >22:17:38,391 INFO kernel:[ 7.866601] 8139too: 8139too Fast Ethernet driver 0.9.28 >22:17:38,391 INFO kernel:[ 7.908641] [TTM] Zone kernel: Available graphics memory: 992744 kiB >22:17:38,391 INFO kernel:[ 7.909605] [TTM] Initializing pool allocator >22:17:38,391 INFO kernel:[ 7.911552] [TTM] Initializing DMA pool allocator >22:17:38,391 INFO kernel:[ 7.922597] [drm] fb mappable at 0xF0000000 >22:17:38,391 INFO kernel:[ 7.923429] [drm] vram aper at 0xF0000000 >22:17:38,391 INFO kernel:[ 7.924212] [drm] size 4194304 >22:17:38,391 INFO kernel:[ 7.924925] [drm] fb depth is 24 >22:17:38,391 INFO kernel:[ 7.925648] [drm] pitch is 3072 >22:17:38,391 INFO kernel:[ 7.933444] fbcon: cirrusdrmfb (fb0) is primary device >22:17:38,391 INFO kernel:[ 7.968330] Console: switching to colour frame buffer device 128x48 >22:17:38,391 INFO kernel:[ 8.013469] cirrus 0000:00:02.0: fb0: cirrusdrmfb frame buffer device >22:17:38,391 INFO kernel:[ 8.013514] cirrus 0000:00:02.0: registered panic notifier >22:17:38,391 INFO kernel:[ 8.023552] [drm] Initialized cirrus 1.0.0 20110418 for 0000:00:02.0 on minor 0 >22:17:38,391 NOTICE kernel:[ 8.532192] random: nonblocking pool is initialized >22:17:38,391 WARNING kernel:[ 8.695496] systemd-udevd (458) used greatest stack depth: 2520 bytes left >22:17:38,392 INFO kernel:[ 9.178262] 8139cp 0000:00:03.0 ens3: link up, 100Mbps, full-duplex, lpa 0x05E1 >22:17:38,392 INFO kernel:[ 85.228419] loop: module loaded >22:17:38,392 INFO kernel:[ 85.413294] bio: create slab <bio-1> at 1 >22:17:38,392 INFO kernel:[ 85.465215] bio: create slab <bio-2> at 2 >22:17:38,392 INFO kernel:[ 86.035074] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) >22:17:38,392 DEBUG kernel:[ 106.026483] SELinux: 2048 avtab hash slots, 105287 rules. >22:17:38,392 DEBUG kernel:[ 106.066143] SELinux: 2048 avtab hash slots, 105287 rules. >22:17:38,392 DEBUG kernel:[ 106.125129] SELinux: 8 users, 101 roles, 4820 types, 275 bools, 1 sens, 1024 cats >22:17:38,392 DEBUG kernel:[ 106.125135] SELinux: 83 classes, 105287 rules >22:17:38,392 DEBUG kernel:[ 106.137893] SELinux: Completing initialization. >22:17:38,392 DEBUG kernel:[ 106.137897] SELinux: Setting up existing superblocks. >22:17:38,392 DEBUG kernel:[ 106.138062] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.138258] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.138376] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.138418] SELinux: initialized (dev proc, type proc), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.138742] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.140008] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.153368] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs >22:17:38,392 DEBUG kernel:[ 106.153433] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs >22:17:38,392 DEBUG kernel:[ 106.153502] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.153564] SELinux: initialized (dev aio, type aio), not configured for labeling >22:17:38,392 DEBUG kernel:[ 106.153608] SELinux: initialized (dev devpts, type devpts), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.153819] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.153923] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.154061] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.154206] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.157325] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.157349] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.157360] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.157695] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 106.157796] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.157943] SELinux: initialized (dev pstore, type pstore), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.157967] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158008] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158067] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158141] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158166] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158184] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158205] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158282] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158300] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158378] SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158472] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.158631] SELinux: initialized (dev loop0, type squashfs), uses xattr >22:17:38,392 DEBUG kernel:[ 106.159168] SELinux: initialized (dev dm-0, type ext4), uses xattr >22:17:38,392 NOTICE kernel:[ 106.174437] audit: type=1403 audit(1392934655.074:2): policy loaded auid=4294967295 ses=4294967295 >22:17:38,392 DEBUG kernel:[ 106.957727] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts >22:17:38,392 DEBUG kernel:[ 106.979351] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs >22:17:38,392 DEBUG kernel:[ 107.221339] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >22:17:38,392 INFO kernel:[ 109.485190] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0 >22:17:39,708 INFO NetworkManager: <info> NetworkManager (version 0.9.9.0-27.git20140131.fc21) is starting... >22:17:39,710 INFO NetworkManager: <info> Read config: /etc/NetworkManager/NetworkManager.conf >22:17:39,710 INFO NetworkManager: <info> WEXT support is enabled >22:17:39,750 INFO kernel:[ 110.849762] microcode: CPU0 sig=0x6d3, pf=0x1, revision=0x1 >22:17:39,868 INFO kernel:[ 110.967798] cfg80211: Calling CRDA to update world regulatory domain >22:17:39,879 WARNING NetworkManager: <warn> Netlink error: requesting RTM_GETADDR failed with Source based routing not supported >22:17:39,893 INFO kernel:[ 110.992724] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba >22:17:40,086 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' >22:17:40,206 INFO polkitd: Started polkitd version 0.112 >22:17:40,400 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.PolicyKit1' >22:17:40,437 WARNING NetworkManager: ifcfg-rh: Could not get hostname: failed to read /etc/sysconfig/network >22:17:40,440 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 >22:17:40,440 INFO NetworkManager: <info> Loaded plugin ifcfg-rh: (c) 2007 - 2013 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. >22:17:40,441 INFO NetworkManager: <info> Loaded plugin keyfile: (c) 2007 - 2013 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. >22:17:40,542 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-lo ... >22:17:40,543 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-ens3 ... >22:17:40,547 NOTICE NetworkManager: ifcfg-rh: read connection 'ens3' >22:17:40,554 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' >22:17:40,630 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.login1' >22:17:40,650 INFO NetworkManager: <info> monitoring kernel firmware directory '/lib/firmware'. >22:17:40,660 INFO NetworkManager: <info> WiFi hardware radio set enabled >22:17:40,681 NOTICE kernel:[ 111.774207] audit: type=1400 audit(1392934660.674:3): avc: denied { execute } for pid=1121 comm="(tmux)" name="tmux" dev="dm-0" ino=18310 scontext=system_u:system_r:init_t:s0 tcontext=unconfined_u:object_r:screen_exec_t:s0 tclass=file >22:17:40,681 NOTICE kernel:[ 111.774240] audit: type=1400 audit(1392934660.674:4): avc: denied { read open } for pid=1121 comm="(tmux)" path="/usr/bin/tmux" dev="dm-0" ino=18310 scontext=system_u:system_r:init_t:s0 tcontext=unconfined_u:object_r:screen_exec_t:s0 tclass=file >22:17:40,681 NOTICE kernel:[ 111.774404] audit: type=1400 audit(1392934660.674:5): avc: denied { execute_no_trans } for pid=1121 comm="(tmux)" path="/usr/bin/tmux" dev="dm-0" ino=18310 scontext=system_u:system_r:init_t:s0 tcontext=unconfined_u:object_r:screen_exec_t:s0 tclass=file >22:17:40,694 INFO NetworkManager: <info> WiFi enabled by radio killswitch; enabled by state file >22:17:40,695 INFO NetworkManager: <info> WWAN enabled by radio killswitch; enabled by state file >22:17:40,697 INFO NetworkManager: <info> WiMAX enabled by radio killswitch; enabled by state file >22:17:40,697 INFO NetworkManager: <info> Networking is enabled by state file >22:17:40,762 INFO NetworkManager: <info> (ens3): link connected >22:17:40,769 INFO NetworkManager: <info> (ens3): carrier is ON >22:17:40,774 INFO NetworkManager: <info> (ens3): new Ethernet device (driver: '8139cp' ifindex: 2) >22:17:40,775 INFO NetworkManager: <info> (ens3): exported as /org/freedesktop/NetworkManager/Devices/0 >22:17:40,783 NOTICE NetworkManager: ifcfg-rh: read connection 'ens3' >22:17:40,784 INFO NetworkManager: <info> (ens3): device state change: unmanaged -> unavailable (reason 'connection-assumed') [10 20 41] >22:17:40,787 INFO NetworkManager: <info> (ens3): device state change: unavailable -> disconnected (reason 'connection-assumed') [20 30 41] >22:17:40,790 NOTICE kernel:[ 111.889677] audit: type=1400 audit(1392934660.789:6): avc: denied { create } for pid=1123 comm="tmux" name="default" scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:init_tmp_t:s0 tclass=sock_file >22:17:40,790 NOTICE kernel:[ 111.889757] audit: type=1400 audit(1392934660.789:7): avc: denied { getattr } for pid=1123 comm="tmux" path="/tmp/tmux-0/default" dev="tmpfs" ino=17329 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:init_tmp_t:s0 tclass=sock_file >22:17:40,790 NOTICE kernel:[ 111.889949] audit: type=1400 audit(1392934660.789:8): avc: denied { setattr } for pid=1123 comm="tmux" name="default" dev="tmpfs" ino=17329 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:init_tmp_t:s0 tclass=sock_file >22:17:40,795 NOTICE kernel:[ 111.894669] audit: type=1400 audit(1392934660.794:9): avc: denied { read write } for pid=1123 comm="tmux" name="ptmx" dev="devtmpfs" ino=9693 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:ptmx_t:s0 tclass=chr_file >22:17:40,795 NOTICE kernel:[ 111.894692] audit: type=1400 audit(1392934660.794:10): avc: denied { open } for pid=1123 comm="tmux" path="/dev/ptmx" dev="devtmpfs" ino=9693 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:ptmx_t:s0 tclass=chr_file >22:17:40,796 INFO NetworkManager: <info> Activation (ens3) starting connection 'ens3' >22:17:40,796 INFO NetworkManager: <info> (ens3): device state change: disconnected -> prepare (reason 'none') [30 40 0] >22:17:40,796 INFO NetworkManager: <info> Activation (ens3) Stage 1 of 5 (Device Prepare) scheduled... >22:17:40,800 NOTICE kernel:[ 111.899336] audit: type=1400 audit(1392934660.799:11): avc: denied { ioctl } for pid=1123 comm="tmux" path="/dev/ptmx" dev="devtmpfs" ino=9693 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:ptmx_t:s0 tclass=chr_file >22:17:40,805 INFO NetworkManager: <info> (lo): link connected >22:17:40,805 INFO NetworkManager: <info> (lo): carrier is ON >22:17:40,807 INFO NetworkManager: <info> (lo): new Generic device (driver: 'unknown' ifindex: 1) >22:17:40,811 INFO NetworkManager: <info> (lo): exported as /org/freedesktop/NetworkManager/Devices/1 >22:17:40,877 INFO NetworkManager: <info> Activation (ens3) Stage 1 of 5 (Device Prepare) started... >22:17:40,877 INFO NetworkManager: <info> Activation (ens3) Stage 2 of 5 (Device Configure) scheduled... >22:17:40,877 INFO NetworkManager: <info> Activation (ens3) Stage 1 of 5 (Device Prepare) complete. >22:17:40,930 INFO NetworkManager: <info> Activation (ens3) Stage 2 of 5 (Device Configure) starting... >22:17:40,939 INFO NetworkManager: <info> (ens3): device state change: prepare -> config (reason 'none') [40 50 0] >22:17:40,941 INFO NetworkManager: <info> Activation (ens3) Stage 2 of 5 (Device Configure) successful. >22:17:40,942 INFO NetworkManager: <info> Activation (ens3) Stage 3 of 5 (IP Configure Start) scheduled. >22:17:40,943 INFO NetworkManager: <info> Activation (ens3) Stage 2 of 5 (Device Configure) complete. >22:17:40,945 INFO NetworkManager: <info> Activation (ens3) Stage 3 of 5 (IP Configure Start) started... >22:17:40,947 INFO NetworkManager: <info> (ens3): device state change: config -> ip-config (reason 'none') [50 70 0] >22:17:40,957 INFO NetworkManager: <info> Activation (ens3) Beginning DHCPv4 transaction (timeout in 45 seconds) >22:17:41,118 INFO NetworkManager: <info> dhclient started with pid 1130 >22:17:41,141 INFO NetworkManager: <info> Activation (ens3) Stage 5 of 5 (IPv6 Commit) scheduled... >22:17:41,142 INFO NetworkManager: <info> Activation (ens3) Stage 3 of 5 (IP Configure Start) complete. >22:17:41,147 INFO NetworkManager: <info> Activation (ens3) Stage 5 of 5 (IPv6 Commit) started... >22:17:41,151 INFO NetworkManager: <info> (ens3): device state change: ip-config -> ip-check (reason 'none') [70 80 0] >22:17:41,157 INFO NetworkManager: <info> Activation (ens3) Stage 5 of 5 (IPv6 Commit) complete. >22:17:41,177 INFO NetworkManager: <info> (ens3): device state change: ip-check -> secondaries (reason 'none') [80 90 0] >22:17:41,188 INFO NetworkManager: <info> (ens3): device state change: secondaries -> activated (reason 'none') [90 100 0] >22:17:41,190 INFO NetworkManager: <info> NetworkManager state is now CONNECTED_LOCAL >22:17:41,212 INFO NetworkManager: <info> Policy set 'ens3' (ens3) as default for IPv4 routing and DNS. >22:17:41,368 INFO NetworkManager: <info> Activation (ens3) successful, device activated. >22:17:41,395 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' >22:17:41,410 INFO NetworkManager: <info> startup complete >22:17:41,537 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.nm_dispatcher' >22:17:41,806 INFO dhclient: Internet Systems Consortium DHCP Client 4.3.0 >22:17:41,812 INFO dhclient: Copyright 2004-2014 Internet Systems Consortium. >22:17:41,813 INFO dhclient: All rights reserved. >22:17:41,813 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ >22:17:41,814 INFO dhclient: >22:17:41,868 INFO NetworkManager: <info> (ens3): DHCPv4 state changed nbi -> preinit >22:17:41,890 INFO dhclient: Listening on LPF/ens3/00:16:3e:47:dd:f8 >22:17:41,896 INFO dhclient: Sending on LPF/ens3/00:16:3e:47:dd:f8 >22:17:41,897 INFO dhclient: Sending on Socket/fallback >22:17:41,898 INFO dhclient: DHCPDISCOVER on ens3 to 255.255.255.255 port 67 interval 5 (xid=0x5f60f80b) >22:17:41,900 INFO dhclient: DHCPREQUEST on ens3 to 255.255.255.255 port 67 (xid=0x5f60f80b) >22:17:41,902 INFO dhclient: DHCPOFFER from 10.10.10.1 >22:17:41,904 INFO dhclient: DHCPACK from 10.10.10.1 (xid=0x5f60f80b) >22:17:41,954 INFO NetworkManager: <info> (ens3): DHCPv4 state changed preinit -> bound >22:17:41,957 INFO NetworkManager: <info> address 10.10.11.101 >22:17:41,958 INFO NetworkManager: <info> plen 16 (255.255.0.0) >22:17:41,958 INFO NetworkManager: <info> gateway 10.10.0.1 >22:17:41,958 INFO NetworkManager: <info> server identifier 10.10.10.1 >22:17:41,959 INFO NetworkManager: <info> lease time 64800 >22:17:41,959 INFO NetworkManager: <info> hostname 'vmrawhide.cora.nwra.com' >22:17:41,959 INFO NetworkManager: <info> nameserver '10.10.10.1' >22:17:41,959 INFO NetworkManager: <info> nameserver '10.10.10.2' >22:17:41,959 INFO NetworkManager: <info> domain name 'cora.nwra.com' >22:17:41,967 INFO NetworkManager: <info> Activation (ens3) Stage 5 of 5 (IPv4 Configure Commit) scheduled... >22:17:41,971 INFO NetworkManager: <info> Activation (ens3) Stage 5 of 5 (IPv4 Commit) started... >22:17:41,972 INFO NetworkManager: <info> Activation (ens3) Stage 5 of 5 (IPv4 Commit) complete. >22:17:41,979 INFO dhclient: bound to 10.10.11.101 -- renewal in 29307 seconds. >22:17:46,465 WARNING kernel:[ 117.564356] audit_printk_skb: 3 callbacks suppressed >22:17:46,465 NOTICE kernel:[ 117.564362] audit: type=1400 audit(1392934666.464:13): avc: denied { read write } for pid=1170 comm="auditd" path="/dev/mapper/control" dev="devtmpfs" ino=9724 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:object_r:lvm_control_t:s0 tclass=chr_file >22:17:46,958 NOTICE kernel:[ 118.057770] audit: type=1400 audit(1392934666.957:14): avc: denied { read write } for pid=1177 comm="ip" path="/dev/mapper/control" dev="devtmpfs" ino=9724 scontext=system_u:system_r:ifconfig_t:s0 tcontext=system_u:object_r:lvm_control_t:s0 tclass=chr_file >22:17:47,219 NOTICE kernel:[ 118.318984] FS-Cache: Loaded >22:17:47,279 NOTICE kernel:[ 118.378324] FS-Cache: Netfs 'nfs' registered for caching >22:17:47,295 NOTICE kernel:[ 118.394551] Key type dns_resolver registered >22:17:47,347 NOTICE kernel:[ 118.446382] NFS: Registering the id_resolver key type >22:17:47,347 NOTICE kernel:[ 118.446408] Key type id_resolver registered >22:17:47,347 NOTICE kernel:[ 118.446411] Key type id_legacy registered >22:17:47,944 NOTICE kernel:[ 119.043065] audit: type=1400 audit(1392934667.942:15): avc: denied { read write } for pid=1218 comm="loadkeys" path="/dev/pts/0" dev="devpts" ino=3 scontext=system_u:system_r:loadkeys_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >22:17:47,947 NOTICE kernel:[ 119.046950] audit: type=1400 audit(1392934667.946:16): avc: denied { open } for pid=1218 comm="loadkeys" path="/dev/pts/0" dev="devpts" ino=3 scontext=system_u:system_r:loadkeys_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >22:17:47,947 NOTICE kernel:[ 119.047085] audit: type=1400 audit(1392934667.946:17): avc: denied { ioctl } for pid=1218 comm="loadkeys" path="/dev/pts/0" dev="devpts" ino=3 scontext=system_u:system_r:loadkeys_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >22:17:48,177 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' >22:17:48,211 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.locale1' >22:17:48,230 NOTICE kernel:[ 119.329977] audit: type=1107 audit(1392934668.229:18): pid=1105 uid=81 auid=4294967295 ses=4294967295 subj=system_u:system_r:system_dbusd_t:s0-s0:c0.c1023 msg='avc: denied { send_msg } for msgtype=method_return dest=:1.6 spid=1222 tpid=1124 scontext=system_u:system_r:systemd_localed_t:s0 tcontext=system_u:system_r:initrc_t:s0 tclass=dbus >22:17:48,230 NOTICE kernel:[ 119.329977] exe="/usr/bin/dbus-daemon" sauid=81 hostname=? addr=? terminal=?' >22:17:48,295 INFO NetworkManager: <info> NetworkManager state is now CONNECTED_GLOBAL >22:17:50,310 INFO chronyd: chronyd version 1.29.1 starting >22:17:50,315 INFO chronyd: Linux kernel major=3 minor=14 patch=0 >22:17:50,315 INFO chronyd: hz=100 shift_hz=7 freq_scale=1.00000000 nominal_tick=10000 slew_delta_tick=833 max_tick_bias=1000 shift_pll=2 >22:17:50,317 INFO chronyd: Generated key 1 >22:17:50,427 NOTICE kernel:[ 121.525824] audit: type=1400 audit(1392934670.425:19): avc: denied { read write } for pid=1254 comm="hwclock" path="/dev/pts/0" dev="devpts" ino=3 scontext=system_u:system_r:hwclock_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >22:17:50,427 NOTICE kernel:[ 121.526748] audit: type=1400 audit(1392934670.426:20): avc: denied { read write } for pid=1254 comm="hwclock" path="/dev/mapper/control" dev="devtmpfs" ino=9724 scontext=system_u:system_r:hwclock_t:s0 tcontext=system_u:object_r:lvm_control_t:s0 tclass=chr_file >22:17:51,002 NOTICE kernel:[ 122.430837] audit: type=1400 audit(1392934671.001:21): avc: denied { ioctl } for pid=1254 comm="hwclock" path="/dev/pts/0" dev="devpts" ino=3 scontext=system_u:system_r:hwclock_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >22:17:51,002 NOTICE kernel:[ 122.430866] audit: type=1400 audit(1392934671.001:22): avc: denied { getattr } for pid=1254 comm="hwclock" path="/dev/pts/0" dev="devpts" ino=3 scontext=system_u:system_r:hwclock_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >22:17:53,986 INFO kernel:[ 125.414874] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null) >22:17:53,986 DEBUG kernel:[ 125.414941] SELinux: initialized (dev sda3, type ext4), uses xattr >22:17:55,664 INFO chronyd: Selected source 209.114.111.1 >22:17:55,664 WARNING chronyd: System clock wrong by 1.354042 seconds, adjustment started >22:17:56,621 NOTICE kernel:[ 128.049452] audit: type=1400 audit(1392934676.620:23): avc: denied { ioctl } for pid=1123 comm="tmux" path="/dev/ptmx" dev="devtmpfs" ino=9693 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:ptmx_t:s0 tclass=chr_file >22:17:57,475 INFO chronyd: Selected source 198.60.22.240 > > >/run/install/ks.cfg: >install >text >url --url=http://fedora.cora.nwra.com/development/rawhide/x86_64/os >repo --name=rpmfusion-nonfree-development-rawhide-x86_64 --baseurl=http://rpmfusion.cora.nwra.com/nonfree/fedora/development/rawhide/x86_64/os >repo --name=rpmfusion-free-development-rawhide-x86_64 --baseurl=http://rpmfusion.cora.nwra.com/free/fedora/development/rawhide/x86_64/os >repo --name=cora-fdev-x86_64 --baseurl=http://corpms.cora.nwra.com/fedora/development/x86_64 >repo --name=adobe-linux-x86_64 --baseurl=http://adobe.cora.nwra.com/linux/x86_64/ >repo --name=adobe-linux-i386 --baseurl=http://adobe.cora.nwra.com/linux/i386/ > >lang en_US.UTF-8 >keyboard us >rootpw --iscrypted $1$9DQYCOkm$mX1ytTm6CBkdZGAfy4hmj. >firewall --enabled --ssh >firstboot --disable >selinux --enforcing >authconfig --enablemd5 --enableshadow --enableldap --enableldapauth --ldapserver=ldap.cora.nwra.com,ldap2.cora.nwra.com --ldapbasedn=dc=nwra,dc=com --enableldaptls --ldaploadcacert=http://www.cora.nwra.com/cgi-bin/getca.pl >timezone --utc America/Denver >skipx >clearpart --all --initlabel ># part biosboot --fstype=biosboot --size=1 >part / --size=3000 --grow >part swap --recommended > >zerombr >bootloader --location=mbr ># Network information ># Using "new" style networking config, by matching networking information to the physical interface's ># MAC-address >%include /tmp/pre_install_network_config > >reboot > >%packages >#%base ># @base >-ccid >-dump >-firstboot-tui >-initial-setup >-irda-utils >logwatch >-lvm2 >-prelink >-rsh >-setuptool >-system-config-firewall-tui >-system-config-network-tui >-ypbind ># @core >-gnu-efi >-iprutils >-pcsc-lite ># semanage >policycoreutils-python ># @development-libs >strace ># @development-tools ># @dial-up >-isdn4k-utils ># @directory-client >krb5-workstation ># @editors >vim-enhanced ># @hardware-support >-b43-fwcutter >-b43-openfwwf ># @mail-server >-exim >-postfix ># Be explicit to avoid ssmtp >sendmail >sendmail-cf >-ssmtp ># @network-server ># @system-tools >autofs >freeipmi >ntpdate >puppet ># Needed for koan --replace-self >python-ethtool >sysstat >-yum-updatesd ># Other >bash-completion ># Force this over jruby >ruby-libs >yum-cron ># CoRA >CoRA >CoRA-release > >#%base-fedora ># @admin-tools >abrt >-gnome-packagekit >-kpackagekit ># Brings in firstboot >-system-config-boot >-system-config-keyboard ># @core ># Needed explicity for live images apparently >selinux-policy-targeted >-yum-presto >@standard >chrony >-finger >-PackageKit-yum-plugin ># sss autofs maps >libsss_autofs ># For 32-bit apps >glibc.i686 >libgcc.i686 > >#%base-fedorarawhide ># Error: no snippet data for pkg/base-fedorarawhide > >#%server ># @core >-hotplug >-system-config-mouse ># @base >-NetworkManager >-alsa-utils >-bluez >-bluez-utils >-coolkey >-dosfstools >-eject >-fbset >-finger >-fprintd-pam >-gpm >-hunspell >-hunspell-en >kexec-tools >-irda-utils >-lftp >-man-pages >-mlocate >-nano >-parted >-pcmciautils >-pinfo >-rdate >-rfkill >-redhat-lsb >-rp-pppoe >-sl-release-notes >-specspo >-stunnel >-system-config-network-tui >-talk >-telnet >-wireless-tools >-words ># @dial-up >-isdn4k-utils >-lrzsz >-minicom >-ppp >-statserial >-wvdial ># @hardware-monitoring >apcupsd ># @mail-server ># Be explicit to avoid ssmtp >sendmail >sendmail-cf ># @sound-and-video >-sox ># @system-tools ># Other >pigz >sysstat ># CoRA >-idl >-idl-common ># rpmfusion >-rpmfusion-free-release >-rpmfusion-nonfree-release > >#%server-fedorarawhide ># Error: no snippet data for pkg/server-fedorarawhide > >#%server-fedora >zabbix-agent > >#%host specific > >-smartmontools > > > >%end > >%pre >set -x -v >exec 1>/tmp/ks-pre.log 2>&1 > ># Once root's homedir is there, copy over the log. >while : ; do > sleep 10 > if [ -d /mnt/sysimage/root ]; then > cp /tmp/ks-pre.log /mnt/sysimage/root/ > logger "Copied %pre section log to system" > break > fi >done & > > >wget "http://cobbler.cora.nwra.com/cblr/svc/op/trig/mode/pre/system/vmrawhide" -O /dev/null ># Start pre_install_network_config generated code ># generic functions to be used later for discovering NICs >mac_exists() { > if which ip 2>/dev/null >/dev/null; then > ip -o link | grep -i "$1" 2>/dev/null >/dev/null > return $? > elif which esxcfg-nics 2>/dev/null >/dev/null; then > esxcfg-nics -l | grep -i "$1" 2>/dev/null >/dev/null > return $? > else > ifconfig -a | grep -i "$1" 2>/dev/null >/dev/null > return $? > fi >} >get_ifname() { > if which ip 2>/dev/null >/dev/null; then > IFNAME=$(ip -o link | grep -i "$1" | sed -e 's/^[0-9]*: //' -e 's/:.*//') > elif which esxcfg-nics 2>/dev/null >/dev/null; then > IFNAME=$(esxcfg-nics -l | grep -i "$1" | cut -d " " -f 1) > else > IFNAME=$(ifconfig -a | grep -i "$1" | cut -d " " -f 1) > if [ -z $IFNAME ]; then > IFNAME=$(ifconfig -a | grep -i -B 2 "$1" | sed -n '/flags/s/:.*$//p') > fi > fi >} > ># Start of code to match cobbler system interfaces to physical interfaces by their mac addresses ># Start eth0 ># Configuring eth0 (00:16:3e:47:dd:f8) >if mac_exists 00:16:3e:47:dd:f8 >then > get_ifname 00:16:3e:47:dd:f8 > echo "network --device=$IFNAME --bootproto=dhcp" >> /tmp/pre_install_network_config >fi ># End pre_install_network_config generated code > ># Enable installation monitoring >wget -O /tmp/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon" >python /tmp/anamon --name "vmrawhide" --server "cobbler.cora.nwra.com" --port "80" > >#%base ># More space for yum downloads >mount -o remount,size=100% /tmp > ># Setup login.defs ># Once the /etc directory is there, setup login.defs >while : >do > sleep 10 > if [ -d /mnt/sysimage/etc ] > then > cat > /mnt/sysimage/etc/login.defs <<EOF ># ># Please note that the parameters in this configuration file control the ># behavior of the tools from the shadow-utils component. None of these ># tools uses the PAM mechanism, and the utilities that use PAM (such as the ># passwd command) should therefore be configured elsewhere. Refer to ># /etc/pam.d/system-auth for more information. ># > ># *REQUIRED* ># Directory where mailboxes reside, _or_ name of file, relative to the ># home directory. If you _do_ define both, MAIL_DIR takes precedence. ># QMAIL_DIR is for Qmail ># >#QMAIL_DIR Maildir >MAIL_DIR /var/spool/mail >#MAIL_FILE .mail > ># Password aging controls: ># ># PASS_MAX_DAYS Maximum number of days a password may be used. ># PASS_MIN_DAYS Minimum number of days allowed between password changes. ># PASS_MIN_LEN Minimum acceptable password length. ># PASS_WARN_AGE Number of days warning given before a password expires. ># >PASS_MAX_DAYS 365 >PASS_MIN_DAYS 5 >PASS_MIN_LEN 10 >PASS_WARN_AGE 14 > ># ># Min/max values for automatic uid selection in useradd ># >UID_MIN 500 >UID_MAX 60000 ># System accounts >SYS_UID_MIN 201 >SYS_UID_MAX 999 > ># ># Min/max values for automatic gid selection in groupadd ># >GID_MIN 500 >GID_MAX 60000 ># System accounts >SYS_GID_MIN 201 >SYS_GID_MAX 999 > ># ># If defined, this command is run when removing a user. ># It should remove any at/cron/print jobs etc. owned by ># the user to be removed (passed as the first argument). ># >#USERDEL_CMD /usr/sbin/userdel_local > ># ># If useradd should create home directories for users by default ># On RH systems, we do. This option is overridden with the -m flag on ># useradd command line. ># >CREATE_HOME yes > ># The permission mask is initialized to this value. If not specified, ># the permission mask will be initialized to 022. >UMASK 027 > ># This enables userdel to remove user groups if no members exist. ># >USERGROUPS_ENAB yes > ># Use SHA512 to encrypt password. >ENCRYPT_METHOD MD5 > >MD5_CRYPT_ENAB yes >EOF > logger "Setup /etc/login.defs" > break > fi >done & > ># Load nfs kernel module for nfs4 (needed for EL6) >modprobe nfs > ># F20? >modprobe nfsv4 > ># Debug idmapping ># sed -i -e 's/nfsidmap/nfsidmap -vvvv/' /etc/request-key.d/id_resolver.conf ># Remove the installer's request-key config, preempts rpc.idmapd in %post >rm /etc/request-key.d/id_resolver.conf > > >%end > >%post >set -x -v >exec 1>/root/ks-post.log 2>&1 > >ls -l /etc/systemd/system/default.target ># Cobbler standard > > > ># Start post_install_network_config generated code > ># create a working directory for interface scripts >mkdir /etc/sysconfig/network-scripts/cobbler >cp /etc/sysconfig/network-scripts/ifcfg-lo /etc/sysconfig/network-scripts/cobbler/ > ># Start configuration for eth0 >echo "DEVICE=eth0" > /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "ONBOOT=yes" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "HWADDR=00:16:3E:47:DD:F8" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >IFNAME=$(ip -o link | grep -i '00:16:3E:47:DD:F8' | sed -e 's/^[0-9]*: //' -e 's/:.*//') >if [ -f "/etc/modprobe.conf" ] && [ $IFNAME ]; then > grep $IFNAME /etc/modprobe.conf | sed "s/$IFNAME/eth0/" >> /etc/modprobe.conf.cobbler > grep -v $IFNAME /etc/modprobe.conf >> /etc/modprobe.conf.new > rm -f /etc/modprobe.conf > mv /etc/modprobe.conf.new /etc/modprobe.conf >fi >echo "TYPE=Ethernet" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 >echo "BOOTPROTO=dhcp" >> /etc/sysconfig/network-scripts/cobbler/ifcfg-eth0 ># End configuration for eth0 > >sed -i 's/ONBOOT=yes/ONBOOT=no/g' /etc/sysconfig/network-scripts/ifcfg-eth* > >rm -f /etc/sysconfig/network-scripts/ifcfg-eth0 >mv /etc/sysconfig/network-scripts/cobbler/* /etc/sysconfig/network-scripts/ >rm -r /etc/sysconfig/network-scripts/cobbler >if [ -f "/etc/modprobe.conf" ]; then >cat /etc/modprobe.conf.cobbler >> /etc/modprobe.conf >rm -f /etc/modprobe.conf.cobbler >fi ># End post_install_network_config generated code > > > > ># Start download cobbler managed config files (if applicable) ># End download cobbler managed config files (if applicable) > ># Start koan environment setup >echo "export COBBLER_SERVER=cobbler.cora.nwra.com" > /etc/profile.d/cobbler.sh >echo "setenv COBBLER_SERVER cobbler.cora.nwra.com" > /etc/profile.d/cobbler.csh ># End koan environment setup > ># begin Red Hat management server registration ># not configured to register to any Red Hat management server (ok) ># end Red Hat management server registration > ># Begin cobbler registration ># skipping for system-based installation ># End cobbler registration > ># CoRA post >echo hosttype=server >> /etc/system_facts > >#%base ># Time >ntpdate earth > >ln -s /nfs/local /opt/local > ># Cleanup /etc/hosts >cat /etc/hosts >sed -i -e '/^192\.168/d' /etc/hosts >sed -i -e '/^10\.10/d' /etc/hosts ># sed -i -e "s/ *vmrawhide//" /etc/hosts > ># Check names >uname -n >hostname > >/sbin/chkconfig --del btseed >/sbin/chkconfig --del bttrack >/sbin/chkconfig --del pcscd > ># Memtest >if [ -x /usr/sbin/memtest-setup ] >then > sh -x /usr/sbin/memtest-setup >fi > ># Backup over ssh >ssh-keygen -N '' -f /root/.ssh/backup_rsa > ># NetDRMS >ln -s /data/cora/SUMS /SUM0 > >#IB only >lspci | grep -q InfiniBand && chkconfig rdma on > >#%server ># Faster boot >ed /boot/grub/grub.conf <<'EOF' >/timeout=/s/=.*/=0/ >wq >EOF > ># No rhgb >sed -i -e 's/ rhgb//' /boot/grub/grub.conf > ># grub2 >sed -i -e s/TIMEOUT=.*/TIMEOUT=0/ -e 's/ rhgb//' /etc/default/grub >grub2-mkconfig -o /boot/grub2/grub.cfg >sed -i -e 's/^set default=.*/set default=0/' /boot/grub2/grub.cfg > ># Use old style networking >chkconfig network on > > ># Samba sharing >semanage fcontext -a -t samba_share_t '/export(/.*)' > ># Dell OMSA >if [ `facter manufacturer` = Dell ] >then > wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash > yum -y install firmware-tools firmware-addon-dell > yum -y install $(bootstrap_firmware) >fi > >#%install ># Bug https://bugzilla.redhat.com/show_bug.cgi?id=874806 workaround >/usr/sbin/authconfig --update --nostart --ldaploadcacert=http://www.cora.nwra.com/cgi-bin/getca.pl > ># Make sure the rpc_pipefs filesystem is available for rpc.idmapd >/bin/mount -t rpc_pipefs sunrpc /var/lib/nfs/rpc_pipefs ># Start rpc.idmapd for nfs4 >rpc.idmapd -v ># Start sssd for username lookup >sssd ># Someday maybe with kerberos? ># rpc.gssd -v ># Mount with nfs4 >nfsopts="-t nfs4" > ># Make /tmp a tmpfs filesystem >echo "tmpfs /tmp tmpfs defaults 0 0" >> /etc/fstab > ># Forward login info to earth >if [ -f /etc/syslog.conf ] >then > echo -e "\n#Forward login info to earth\nauthpriv.*\t\t\t\t@loghost" >> /etc/syslog.conf >else > cat >> /etc/rsyslog.d/forward.conf <<'EOF' > ># sysklogd template for forwarding to sysklogd server >$template sysklogd,"<%PRI%>%TIMESTAMP% %syslogtag%%msg%" > ># Forward login info to earth >authpriv.* @loghost;sysklogd >EOF >fi > ># Root key >mkdir /root/.ssh >cat > /root/.ssh/authorized_keys <<EOF >ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxygs+sZRxQY7c4VnwP3/rTdNQNAn8pIY8eOhvE+z0gKs/175v1A2G0fBAwpRFdZeqDQVzrUAkNA0bK5sqQkJAkwHSDQh7Il1kMdqnPgxeQjTYrAR+W0WA3q9eLEu1eWn4Dp8g1Os59dJrahxORFDgcAMK0pM4TCgxcy0WlBmCWMjzci286AJo5LUIH8WuZ5B/O8r7azR8MplPO+zQeevbmG7APIKigu/m7zlA5eoQmB0u9ErrBywzVhv4si5fDw61V/quDfEvZITGUDIcXRaWK8H2jVSR4ANT+jf9aIOUpXf83mtcNyI0G1cz37bJGvcp0pbTq+GKlGI9ogpMzK1rw== >EOF >/sbin/restorecon -r -v /root/.ssh > ># Updates >/sbin/chkconfig yum-cron on > ># Puppet >/sbin/chkconfig puppet on >systemctl enable puppetagent.service > ># Setup NTP >/sbin/chkconfig ntpdate on >/sbin/chkconfig ntpd on > ># Kerberized NFSv4 >#/sbin/chkconfig rpcgssd on >#/bin/systemctl enable nfs-secure.service > ># Autofs >/sbin/chkconfig autofs on > ># lm_sensors >/usr/sbin/sensors-detect < /dev/null > ># Autofs krb5 NFSv4, NFS homedirs, silence vbetool >time setsebool -P allow_gssd_read_tmp=1 use_nfs_home_dirs=1 vbetool_mmap_zero_ignore=1 > ># Restore from backup >cat /etc/resolv.conf >mkdir -p /data/backup /nfs/local >if [ vmrawhide != saga ] >then > mount -v $nfsopts saga:/backup /data/backup > mount -v $nfsopts saga:/local /nfs/local >else > mount -v $nfsopts earth:/export/backup /data/backup > mount -v $nfsopts earth:/export/backup/saga/export/local /nfs/local >fi > > ># Restore unique state from backup >if [ ! -d /export/home ] >then > sysonly="-s" >fi >sh -x /nfs/local/sbin/restore $sysonly > ># Unmount NFS mounts >umount -l /nfs/local /data/backup >rm -rf --one-file-system /data > ># Debug >ls -l /etc/mtab > ># Make link if needed >if [ -d /export/local ] >then > rmdir /nfs/local > ln -s /export/local /nfs/local >fi > ># Cleanup old yum repos >rm -r /var/cache/yum/* > ># Firewalld issue in Fedora 18+ >systemctl disable firewalld.service > ># Turn on printer browsing F19+ >systemctl enable cups-browsed.service > >#%host specific > ># Setup RAID1 grub boot ># This determines if /boot is on a raid1 device, and if so installs grub on the second device. ># Get the device of the /boot filesystem, if any >bootdev=`mount | awk '$3 == "/boot" { print $1 }'` ># Check that it is an md device >if [ "${bootdev/[0123456789]/}" = /dev/md ] >then > # Get the md name - used in /proc/mdstat > md=`basename $bootdev` > > # Get the second device in the array, assuming 0,1 order and first in all set > dev=`awk -v md=$md '$1 == md { gsub("\\\[[01]\\\]","",$6); print $6 }' /proc/mdstat` > > # Get the partition number, grub partition number is 1 less > grubpart=$((${dev/sd[a-z]/} - 1)) > > # Get the grub disk name from the device.map > grubdisk=`awk -v disk=${dev/[0-9]/} '$2 ~ disk { print $1 }' /boot/grub/device.map` > > # Insert the grub partition number into the disk name to get the grub root name > grubroot=${grubdisk/)/,$grubpart)} > > # Run grub to install onto the second device > /sbin/grub --device-map=/boot/grub/device.map <<EOF >root $grubroot >setup $grubdisk >EOF >fi > ># Enable post-install boot notification > >wget -O /usr/local/sbin/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon" >wget -O /etc/rc.d/init.d/anamon "http://cobbler.cora.nwra.com:80/cobbler/aux/anamon.init" > >chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon >test -d /selinux && restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon > >chkconfig --add anamon > >cat << __EOT__ > /etc/sysconfig/anamon >COBBLER_SERVER="cobbler.cora.nwra.com" >COBBLER_PORT="80" >COBBLER_NAME="vmrawhide" >LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg" >__EOT__ > > ># Temp fix for F16 Alpha ># Start final steps > >wget "http://cobbler.cora.nwra.com/cblr/svc/op/ks/system/vmrawhide" -O /root/cobbler.ks >wget "http://cobbler.cora.nwra.com/cblr/svc/op/trig/mode/post/system/vmrawhide" -O /dev/null >wget "http://cobbler.cora.nwra.com/cblr/svc/op/nopxe/system/vmrawhide" -O /dev/null ># End final steps >ls -l /etc/systemd/system/default.target >%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 1067707
: 865721 |
865722
|
865723
|
865724
|
865725
|
865726
|
865727
|
865728
|
865729
|
865731
|
865732
|
865734