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 857970 Details for
Bug 1060343
UnboundLocalError: local variable 'rc' referenced before assignment
[?]
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), 219.95 KB, created by
Michael Gregg
on 2014-01-31 21:05:50 UTC
(
hide
)
Description:
File: anaconda-tb
Filename:
MIME Type:
Creator:
Michael Gregg
Created:
2014-01-31 21:05:50 UTC
Size:
219.95 KB
patch
obsolete
>anaconda 19.30.13-1 exception report >Traceback (most recent call first): > File "/usr/lib64/python2.7/site-packages/pyanaconda/rescue.py", line 320, in doRescue > if rc == -1: > File "/sbin/anaconda", line 1034, in <module> > rescue.doRescue(anaconda.intf, anaconda.rescue_mount, ksdata) >UnboundLocalError: local variable 'rc' referenced before assignment > >Local variables in innermost frame: >intf: <pyanaconda.rescue.RescueInterface object at 0x7fcd4615d5d0> >blivet: <module 'blivet' from '/usr/lib/python2.7/site-packages/blivet/__init__.py'> >sto: <blivet.Blivet object at 0x7fcd46105150> >readOnly: False >ksdata: #version=DEVEL ># System authorization information >auth --useshadow --enablemd5 ># Install OS instead of upgrade >install >repo --name="fedora-updates" --mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f19&arch=x86_64 >repo --name="beaker-Fedora-debuginfo" --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/debug --cost=100 >repo --name="beaker-Fedora-Everything" --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Everything/x86_64/os --cost=100 >repo --name="beaker-Fedora" --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/os/ --cost=100 ># Reboot after installation >reboot ># Use NFS installation media >nfs --server=vtap-eng01.storage.rdu2.redhat.com --dir=/vol/engarchive2/released/F-19/GOLD/Fedora/x86_64/os/ ># Use text mode install >text ># Firewall configuration >firewall --disabled >firstboot --disable >ignoredisk --only-use=sda,sdb ># Keyboard layouts ># old format: keyboard us ># new format: >keyboard --vckeymap=us --xlayouts='us' ># System language >lang en_US.UTF-8 > ># Root password >rootpw --iscrypted $1$DceuUICD$GmR9du9OUHgdhluhu0NgB/ ># SELinux configuration >selinux --enforcing ># System services >services --enabled="chronyd,chrony-wait" ># System timezone >timezone America/New_York ># System bootloader configuration >bootloader --append="console=ttyS0,19200 rescue" --location=mbr ># Clear the Master Boot Record >zerombr ># Partition clearing information >clearpart --all --initlabel ># Disk partitioning information >part /boot --asprimary --recommended --size=200 >part / --grow --size=1024 >part swap --recommended > >%pre --logfile /dev/console >set -x ># Check in with Beaker Server >wget -O - http://lab-02.rhts.eng.rdu.redhat.com:8000/install_start/1215820 > >wget -O /tmp/anamon 'http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon' >python /tmp/anamon --recipe-id 1215820 --xmlrpc-url 'http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2' ># no snippet data for Fedora_pre ># no snippet data for system_pre >%end > >%post --logfile /dev/console >set -x ># Check in with Beaker Server, let it know our hostname, and ># record our install time. >REPORTED_FQDN=$(hostname -f) >if [[ -z "$REPORTED_FQDN" || $REPORTED_FQDN == localhost || $REPORTED_FQDN == localhost.* ]] ; then > # hostname -f is the most future-proof approach, but it isn't always reliable > if [ -f /etc/hostname ] ; then > # Preferred fallback if the OS is recent enough to provide it > REPORTED_FQDN=$(cat /etc/hostname) > elif grep -q ^HOSTNAME= /etc/sysconfig/network ; then > # Last resort fallback to try to report something sensible > REPORTED_FQDN=$(grep ^HOSTNAME= /etc/sysconfig/network | cut -f2- -d=) > fi >fi >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/install_done/1215820/$REPORTED_FQDN > >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/nopxe/link.idm.lab.eng.rdu2.redhat.com >echo 1215820 > /root/RECIPE.TXT > ># If netboot_method= is found in /proc/cmdline record it to /root >netboot_method=$(perl -n -e'/netboot_method=([^\s]+)/ && print $1' /proc/cmdline) >if [ -n "$netboot_method" ]; then >echo $netboot_method >/root/NETBOOT_METHOD.TXT >fi > ># Enable post-install boot notification > >curl -R "http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon" -o /usr/local/sbin/anamon >curl -R "http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon.init" -o /etc/rc.d/init.d/anamon > >chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon > >if selinuxenabled &>/dev/null; then > restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon >fi > >chkconfig --add anamon > >cat << __EOT__ > /etc/sysconfig/anamon >XMLRPC_URL="http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2" >RECIPE_ID="1215820" >LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg" >__EOT__ > > >if [ -e /etc/sysconfig/ntpdate ] ; then > /sbin/chkconfig ntpdate on >/dev/null 2>&1 || : >fi >if [ -e "/etc/sysconfig/ntpd" ]; then > /sbin/chkconfig ntpd on >/dev/null 2>&1 || : > GOT_G=$(/bin/cat /etc/sysconfig/ntpd | grep -E '^OPTIONS' | grep '\-g') > > if [ -z "$GOT_G" ]; then > /bin/sed -i -r 's/(^OPTIONS\s*=\s*)(['\''|"])(.+)$/\1\2\-x \3 /' /etc/sysconfig/ntpd > fi >fi >if [ -e /etc/chrony.conf ] ; then > cp /etc/chrony.conf{,.orig} > # use only DHCP-provided time servers, no default pool servers > sed -i '/^server /d' /etc/chrony.conf > cp /etc/sysconfig/network{,.orig} > # setting iburst should speed up initial sync > # https://bugzilla.redhat.com/show_bug.cgi?id=787042#c12 > echo NTPSERVERARGS=iburst >>/etc/sysconfig/network > /sbin/chkconfig ntpd off >/dev/null 2>&1 || : > /sbin/chkconfig ntpdate off >/dev/null 2>&1 || : >fi > > >if efibootmgr &>/dev/null ; then > # The installer should have added a new boot entry for the OS > # at the top of the boot order. We move it to the end of the order > # and set it as BootNext instead. > boot_order=$(efibootmgr | awk '/BootOrder/ { print $2 }') > os_boot_entry=$(cut -d, -f1 <<<"$boot_order") > new_boot_order=$(cut -d, -f2- <<<"$boot_order"),"$os_boot_entry" > efibootmgr -o "$new_boot_order" > efibootmgr -n "$os_boot_entry" > # save the boot entry for later, so that rhts-reboot can set BootNext as well > echo "$os_boot_entry" >/root/EFI_BOOT_ENTRY.TXT >fi > > > >#Add Task Repo >cat <<"EOF" >/etc/yum.repos.d/beaker-tasks.repo >[beaker-tasks] >name=beaker-tasks >baseurl=http://beaker.engineering.redhat.com/repos/1215820 >enabled=1 >gpgcheck=0 >EOF > > ># Add Harness Repo >cat <<"EOF" >/etc/yum.repos.d/beaker-harness.repo >[beaker-harness] >name=beaker-harness >baseurl=http://beaker.engineering.redhat.com/harness/Fedora19/ >enabled=1 >gpgcheck=0 >EOF > ># Add distro and custom Repos >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora-debuginfo.repo >[beaker-Fedora-debuginfo] >name=beaker-Fedora-debuginfo >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/debug >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora-Everything.repo >[beaker-Fedora-Everything] >name=beaker-Fedora-Everything >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Everything/x86_64/os >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora.repo >[beaker-Fedora] >name=beaker-Fedora >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/os/ >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF > > ># fill the yum cache and redirect output to /dev/null ># This speeds up yum because of a bug where it will update stdout too often. ># http://lists.baseurl.org/pipermail/yum-devel/2011-December/008857.html >yum check-update > /dev/null 2>&1 || true >yum -y install beah rhts-test-env beakerlib ># This may fail if you are outside of Red Hat.. >yum -y install beakerlib-redhat > >cp /etc/beah_beaker.conf{,.default} >cat << EOF > /etc/beah_beaker.conf ># see /etc/beah_beaker.conf.default for commented configuration > >[DEFAULT] ># LAB_CONTROLLER: URI of Beaker's XML-RPC handler >LAB_CONTROLLER=http://lab-02.rhts.eng.rdu.redhat.com:8000 ># ># HOSTNAME: Pretend to be machine with given name. ># NOTE: This is mostly pointless as usually correct name is assigned by DHCP. >HOSTNAME=link.idm.lab.eng.rdu2.redhat.com >RECIPEID=1215820 > ># Turn on hard limits on upload sizes: >FILE_SIZE_LIMIT=200000000 >TASK_SIZE_LIMIT=800000000 > >EOF > >cp /etc/beah.conf{,.default} >cat << EOF > /etc/beah.conf ># see /etc/beah.conf.default for commented configuration > >[DEFAULT] ># Turn on more verbose logging and redirect to console. This is useful for ># debugging harness' problems. >LOG=Info >CONSOLE_LOG=Console ># To turn on debug logging uncomment the following line. Warning: this is ># rather verbose! This also requires LOG to be Debug. >#DEVEL=True > >[TASK] >INTERFACE= > >EOF > >chkconfig --level 345 beah-srv on >chkconfig --level 345 beah-beaker-backend on >chkconfig --level 345 beah-fwd-backend on > >#Add test user account >useradd --password '$6$oIW3o2Mr$XbWZKaM7nA.cQqudfDJScupXOia5h1u517t6Htx/Q/MgXm82Pc/OcytatTeI4ULNWOMJzvpCigWiL4xKP9PX4.' test >cat <<"EOF" >/etc/profile.d/beaker.sh >export BEAKER="https://beaker.engineering.redhat.com/" >export BEAKER_JOB_WHITEBOARD='Provision Fedora-19 Fedora x86_64' >export BEAKER_RECIPE_WHITEBOARD='' >EOF >cat <<"EOF" >/etc/profile.d/beaker.csh >setenv BEAKER "https://beaker.engineering.redhat.com/" >setenv BEAKER_JOB_WHITEBOARD 'Provision Fedora-19 Fedora x86_64' >setenv BEAKER_RECIPE_WHITEBOARD '' >EOF >cat << EOF > /etc/profile.d/rh-env.sh >export LAB_CONTROLLER=lab-02.rhts.eng.rdu.redhat.com >export DUMPSERVER=netdump-01.eng.rdu.redhat.com >export NFSSERVERS="rhel3-nfs.rhts.eng.rdu.redhat.com:/export/home rhel4-nfs.rhts.eng.rdu.redhat.com:/export/home rhel5-nfs.rhts.eng.rdu.redhat.com:/export/home rhel6-nfs.rhts.eng.rdu.redhat.com:/export/home" >export LOOKASIDE=http://download.eng.rdu.redhat.com/qa/rhts/lookaside/ >export BUILDURL=http://download.eng.rdu.redhat.com >EOF >cat << EOF > /etc/profile.d/rh-env.csh >setenv LAB_CONTROLLER lab-02.rhts.eng.rdu.redhat.com >setenv DUMPSERVER netdump-01.eng.rdu.redhat.com >setenv NFSSERVERS "rhel3-nfs.rhts.eng.rdu.redhat.com:/export/home rhel4-nfs.rhts.eng.rdu.redhat.com:/export/home rhel5-nfs.rhts.eng.rdu.redhat.com:/export/home rhel6-nfs.rhts.eng.rdu.redhat.com:/export/home" >setenv LOOKASIDE http://download.eng.rdu.redhat.com/qa/rhts/lookaside/ >setenv BUILDURL http://download.eng.rdu.redhat.com >EOF ># Check in with Beaker Server, record our postinstall time. >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/postinstall_done/1215820 ># Disable rhts-compat for Fedora15/RHEL7 and newer. >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END ># no snippet data for Fedora_post ># no snippet data for system_post >%end > >%post --logfile /dev/console >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END >%end > >%packages --ignoremissing >@desktop-platform-devel >@development >@development-libs >@development-tools >@server-platform-devel >chrony >emacs >expect >gcc >libxml2-python >make >nfs-utils >procmail >psmisc >pyOpenSSL >redhat-lsb >sendmail >unifdef >vim-enhanced >wget >-ntp > >%end > > >orig_hook: <function <lambda> at 0x7fcd46172cf8> >file: mke2fs.conf >msg: The system will reboot automatically when you exit from the shell. >root: <blivet.Root object at 0x7fcd46070d50> >rescue_mount: True >roots: [<blivet.Root object at 0x7fcd46070d50>] >rootmounted: False > > >Anaconda instance, containing members: >_instClass: DefaultInstall instance, containing members: >_intf: RescueInterface instance, containing members: > _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: <built-in function raw_input> > _intf._meh_interface.screen: None > _intf.screen: SnackScreen instance, containing members: > _intf.screen.width: 80 > _intf.screen.height: 23 >updateSrc: None >rootParts: None >id: None >rescue: True >mediaDevice: None >_network: None >methodstr: nfs:vtap-eng01.storage.rdu2.redhat.com:/vol/engarchive2/released/F-19/GOLD/Fedora/x86_64/os/ >proxyPassword: None >desktop: Desktop instance, containing members: > desktop.info: {} > desktop.always_quote: False > desktop.write_quote: True > desktop.filename: None > desktop.read_unquote: True > desktop.runlevel: 3 > desktop._lines: [] >canReIPL: False >xdriver: None >stage2: None >rescue_mount: True >_bootloader: None >_payload: YumPayload instance, containing members: > _payload._groups: None > _payload._yum: Skipped > _payload.install_device: None > _payload._root_dir: /tmp/yum.root > _payload._repos_dir: /etc/yum.repos.d,/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anaconda.repos.d > _payload._packages: [] > _payload._requiredPackages: [] > _payload._requiredGroups: [] > _payload._setup: False > _payload.txID: None > _payload._createdInitrds: False > _payload._space_required: 3 GB > _payload.data: #version=DEVEL ># System authorization information >auth --useshadow --enablemd5 ># Install OS instead of upgrade >install >repo --name="fedora-updates" --mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f19&arch=x86_64 >repo --name="beaker-Fedora-debuginfo" --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/debug --cost=100 >repo --name="beaker-Fedora-Everything" --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Everything/x86_64/os --cost=100 >repo --name="beaker-Fedora" --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/os/ --cost=100 ># Reboot after installation >reboot ># Use NFS installation media >nfs --server=vtap-eng01.storage.rdu2.redhat.com --dir=/vol/engarchive2/released/F-19/GOLD/Fedora/x86_64/os/ ># Use text mode install >text ># Firewall configuration >firewall --disabled >firstboot --disable >ignoredisk --only-use=sda,sdb ># Keyboard layouts ># old format: keyboard us ># new format: >keyboard --vckeymap=us --xlayouts='us' ># System language >lang en_US.UTF-8 > ># Root password >rootpw --iscrypted $1$DceuUICD$GmR9du9OUHgdhluhu0NgB/ ># SELinux configuration >selinux --enforcing ># System services >services --enabled="chronyd,chrony-wait" ># System timezone >timezone America/New_York ># System bootloader configuration >bootloader --append="console=ttyS0,19200 rescue" --location=mbr ># Clear the Master Boot Record >zerombr ># Partition clearing information >clearpart --all --initlabel ># Disk partitioning information >part /boot --asprimary --recommended --size=200 >part / --grow --size=1024 >part swap --recommended > >%pre --logfile /dev/console >set -x ># Check in with Beaker Server >wget -O - http://lab-02.rhts.eng.rdu.redhat.com:8000/install_start/1215820 > >wget -O /tmp/anamon 'http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon' >python /tmp/anamon --recipe-id 1215820 --xmlrpc-url 'http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2' ># no snippet data for Fedora_pre ># no snippet data for system_pre >%end > >%post --logfile /dev/console >set -x ># Check in with Beaker Server, let it know our hostname, and ># record our install time. >REPORTED_FQDN=$(hostname -f) >if [[ -z "$REPORTED_FQDN" || $REPORTED_FQDN == localhost || $REPORTED_FQDN == localhost.* ]] ; then > # hostname -f is the most future-proof approach, but it isn't always reliable > if [ -f /etc/hostname ] ; then > # Preferred fallback if the OS is recent enough to provide it > REPORTED_FQDN=$(cat /etc/hostname) > elif grep -q ^HOSTNAME= /etc/sysconfig/network ; then > # Last resort fallback to try to report something sensible > REPORTED_FQDN=$(grep ^HOSTNAME= /etc/sysconfig/network | cut -f2- -d=) > fi >fi >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/install_done/1215820/$REPORTED_FQDN > >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/nopxe/link.idm.lab.eng.rdu2.redhat.com >echo 1215820 > /root/RECIPE.TXT > ># If netboot_method= is found in /proc/cmdline record it to /root >netboot_method=$(perl -n -e'/netboot_method=([^\s]+)/ && print $1' /proc/cmdline) >if [ -n "$netboot_method" ]; then >echo $netboot_method >/root/NETBOOT_METHOD.TXT >fi > ># Enable post-install boot notification > >curl -R "http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon" -o /usr/local/sbin/anamon >curl -R "http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon.init" -o /etc/rc.d/init.d/anamon > >chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon > >if selinuxenabled &>/dev/null; then > restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon >fi > >chkconfig --add anamon > >cat << __EOT__ > /etc/sysconfig/anamon >XMLRPC_URL="http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2" >RECIPE_ID="1215820" >LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg" >__EOT__ > > >if [ -e /etc/sysconfig/ntpdate ] ; then > /sbin/chkconfig ntpdate on >/dev/null 2>&1 || : >fi >if [ -e "/etc/sysconfig/ntpd" ]; then > /sbin/chkconfig ntpd on >/dev/null 2>&1 || : > GOT_G=$(/bin/cat /etc/sysconfig/ntpd | grep -E '^OPTIONS' | grep '\-g') > > if [ -z "$GOT_G" ]; then > /bin/sed -i -r 's/(^OPTIONS\s*=\s*)(['\''|"])(.+)$/\1\2\-x \3 /' /etc/sysconfig/ntpd > fi >fi >if [ -e /etc/chrony.conf ] ; then > cp /etc/chrony.conf{,.orig} > # use only DHCP-provided time servers, no default pool servers > sed -i '/^server /d' /etc/chrony.conf > cp /etc/sysconfig/network{,.orig} > # setting iburst should speed up initial sync > # https://bugzilla.redhat.com/show_bug.cgi?id=787042#c12 > echo NTPSERVERARGS=iburst >>/etc/sysconfig/network > /sbin/chkconfig ntpd off >/dev/null 2>&1 || : > /sbin/chkconfig ntpdate off >/dev/null 2>&1 || : >fi > > >if efibootmgr &>/dev/null ; then > # The installer should have added a new boot entry for the OS > # at the top of the boot order. We move it to the end of the order > # and set it as BootNext instead. > boot_order=$(efibootmgr | awk '/BootOrder/ { print $2 }') > os_boot_entry=$(cut -d, -f1 <<<"$boot_order") > new_boot_order=$(cut -d, -f2- <<<"$boot_order"),"$os_boot_entry" > efibootmgr -o "$new_boot_order" > efibootmgr -n "$os_boot_entry" > # save the boot entry for later, so that rhts-reboot can set BootNext as well > echo "$os_boot_entry" >/root/EFI_BOOT_ENTRY.TXT >fi > > > >#Add Task Repo >cat <<"EOF" >/etc/yum.repos.d/beaker-tasks.repo >[beaker-tasks] >name=beaker-tasks >baseurl=http://beaker.engineering.redhat.com/repos/1215820 >enabled=1 >gpgcheck=0 >EOF > > ># Add Harness Repo >cat <<"EOF" >/etc/yum.repos.d/beaker-harness.repo >[beaker-harness] >name=beaker-harness >baseurl=http://beaker.engineering.redhat.com/harness/Fedora19/ >enabled=1 >gpgcheck=0 >EOF > ># Add distro and custom Repos >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora-debuginfo.repo >[beaker-Fedora-debuginfo] >name=beaker-Fedora-debuginfo >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/debug >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora-Everything.repo >[beaker-Fedora-Everything] >name=beaker-Fedora-Everything >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Everything/x86_64/os >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora.repo >[beaker-Fedora] >name=beaker-Fedora >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/os/ >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF > > ># fill the yum cache and redirect output to /dev/null ># This speeds up yum because of a bug where it will update stdout too often. ># http://lists.baseurl.org/pipermail/yum-devel/2011-December/008857.html >yum check-update > /dev/null 2>&1 || true >yum -y install beah rhts-test-env beakerlib ># This may fail if you are outside of Red Hat.. >yum -y install beakerlib-redhat > >cp /etc/beah_beaker.conf{,.default} >cat << EOF > /etc/beah_beaker.conf ># see /etc/beah_beaker.conf.default for commented configuration > >[DEFAULT] ># LAB_CONTROLLER: URI of Beaker's XML-RPC handler >LAB_CONTROLLER=http://lab-02.rhts.eng.rdu.redhat.com:8000 ># ># HOSTNAME: Pretend to be machine with given name. ># NOTE: This is mostly pointless as usually correct name is assigned by DHCP. >HOSTNAME=link.idm.lab.eng.rdu2.redhat.com >RECIPEID=1215820 > ># Turn on hard limits on upload sizes: >FILE_SIZE_LIMIT=200000000 >TASK_SIZE_LIMIT=800000000 > >EOF > >cp /etc/beah.conf{,.default} >cat << EOF > /etc/beah.conf ># see /etc/beah.conf.default for commented configuration > >[DEFAULT] ># Turn on more verbose logging and redirect to console. This is useful for ># debugging harness' problems. >LOG=Info >CONSOLE_LOG=Console ># To turn on debug logging uncomment the following line. Warning: this is ># rather verbose! This also requires LOG to be Debug. >#DEVEL=True > >[TASK] >INTERFACE= > >EOF > >chkconfig --level 345 beah-srv on >chkconfig --level 345 beah-beaker-backend on >chkconfig --level 345 beah-fwd-backend on > >#Add test user account >useradd --password '$6$oIW3o2Mr$XbWZKaM7nA.cQqudfDJScupXOia5h1u517t6Htx/Q/MgXm82Pc/OcytatTeI4ULNWOMJzvpCigWiL4xKP9PX4.' test >cat <<"EOF" >/etc/profile.d/beaker.sh >export BEAKER="https://beaker.engineering.redhat.com/" >export BEAKER_JOB_WHITEBOARD='Provision Fedora-19 Fedora x86_64' >export BEAKER_RECIPE_WHITEBOARD='' >EOF >cat <<"EOF" >/etc/profile.d/beaker.csh >setenv BEAKER "https://beaker.engineering.redhat.com/" >setenv BEAKER_JOB_WHITEBOARD 'Provision Fedora-19 Fedora x86_64' >setenv BEAKER_RECIPE_WHITEBOARD '' >EOF >cat << EOF > /etc/profile.d/rh-env.sh >export LAB_CONTROLLER=lab-02.rhts.eng.rdu.redhat.com >export DUMPSERVER=netdump-01.eng.rdu.redhat.com >export NFSSERVERS="rhel3-nfs.rhts.eng.rdu.redhat.com:/export/home rhel4-nfs.rhts.eng.rdu.redhat.com:/export/home rhel5-nfs.rhts.eng.rdu.redhat.com:/export/home rhel6-nfs.rhts.eng.rdu.redhat.com:/export/home" >export LOOKASIDE=http://download.eng.rdu.redhat.com/qa/rhts/lookaside/ >export BUILDURL=http://download.eng.rdu.redhat.com >EOF >cat << EOF > /etc/profile.d/rh-env.csh >setenv LAB_CONTROLLER lab-02.rhts.eng.rdu.redhat.com >setenv DUMPSERVER netdump-01.eng.rdu.redhat.com >setenv NFSSERVERS "rhel3-nfs.rhts.eng.rdu.redhat.com:/export/home rhel4-nfs.rhts.eng.rdu.redhat.com:/export/home rhel5-nfs.rhts.eng.rdu.redhat.com:/export/home rhel6-nfs.rhts.eng.rdu.redhat.com:/export/home" >setenv LOOKASIDE http://download.eng.rdu.redhat.com/qa/rhts/lookaside/ >setenv BUILDURL http://download.eng.rdu.redhat.com >EOF ># Check in with Beaker Server, record our postinstall time. >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/postinstall_done/1215820 ># Disable rhts-compat for Fedora15/RHEL7 and newer. >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END ># no snippet data for Fedora_post ># no snippet data for system_post >%end > >%post --logfile /dev/console >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END >%end > >%packages --ignoremissing >@desktop-platform-devel >@development >@development-libs >@development-tools >@server-platform-devel >chrony >emacs >expect >gcc >libxml2-python >make >nfs-utils >procmail >psmisc >pyOpenSSL >redhat-lsb >sendmail >unifdef >vim-enhanced >wget >-ntp > >%end > > > _payload._kernelVersionList: [] >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 0x7fcd46172b18>, True), 'type': (<function <lambda> at 0x7fcd46172c80>, True), 'nmcli_dev_list': (<function nmcli_dev_list_callback at 0x7fcd46172b90>, True)} > mehConfig.attrSkipList: [_intf._actions, _intf._currentAction._xklwrapper, _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: 19.30.13-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: None >dir: None >opts: {'noipv6': False, 'noipv4': False, 'updateSrc': None, 'selinux': True, 'module': [], 'syslog': None, 'leavebootorder': False, 'images': [], 'dmraid': True, 'armPlatform': None, 'memcheck': True, 'iscsi': False, 'ksfile': '/run/install/ks.cfg', 'dirinstall': False, 'kbdtype': None, 'runres': None, 'xdriver': None, 'display_mode': 't', 'stage2': None, 'method': 'nfs:vtap-eng01.storage.rdu2.redhat.com:/vol/engarchive2/released/F-19/GOLD/Fedora/x86_64/os/', 'vncpassword': '', 'vnc': False, 'rescue': True, 'noverifyssl': False, 'autostep': False, 'geoloc': None, 'proxy': None, 'dlabel': False, 'vncconnect': None, 'lang': None, '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: >21:04:31,512 INFO anaconda: /sbin/anaconda 19.30.13-1 >21:04:31,804 INFO anaconda: anaconda called with cmdline = ['/sbin/anaconda'] >21:04:31,804 INFO anaconda: Default encoding = utf-8 >21:04:31,864 INFO anaconda: Running kickstart %%pre script(s) >21:04:31,865 INFO anaconda.stdout: Running pre-installation scripts >21:04:32,306 INFO anaconda: All kickstart %%pre script(s) have been run >21:04:34,136 INFO anaconda: bootloader GRUB2 on X86 platform >21:04:35,842 DEBUG anaconda: running handleException >21:04:36,733 DEBUG anaconda: Gtk cannot be initialized >21:04:36,734 DEBUG anaconda: In the main thread, running exception handler >21:04:36,746 INFO anaconda: using only installclass _Fedora > > >/tmp/packaging.log: >21:04:37,404 DEBUG packaging: getting release version from tree at None (19) >21:04:37,404 DEBUG packaging: got a release version of 19 > > >/tmp/program.log: >21:04:31,866 INFO program: Running... /bin/sh /tmp/ks-script-kUOa0y >21:04:32,301 INFO program: + wget -O - http://lab-02.rhts.eng.rdu.redhat.com:8000/install_start/1215820 >21:04:32,301 INFO program: --2014-01-31 21:04:31-- http://lab-02.rhts.eng.rdu.redhat.com:8000/install_start/1215820 >21:04:32,301 INFO program: Resolving lab-02.rhts.eng.rdu.redhat.com (lab-02.rhts.eng.rdu.redhat.com)... 2620:52:0:aa1:216:3eff:fe60:cd5c, 10.10.161.70 >21:04:32,302 INFO program: Connecting to lab-02.rhts.eng.rdu.redhat.com (lab-02.rhts.eng.rdu.redhat.com)|2620:52:0:aa1:216:3eff:fe60:cd5c|:8000... connected. >21:04:32,302 INFO program: HTTP request sent, awaiting response... 200 OK >21:04:32,302 INFO program: Length: 4 [text/plain] >21:04:32,302 INFO program: Saving to: 'STDOUT' >21:04:32,302 INFO program: True >21:04:32,303 INFO program: 0K 100% 699K=0s >21:04:32,303 INFO program: >21:04:32,303 INFO program: 2014-01-31 21:04:32 (699 KB/s) - written to stdout [4/4] >21:04:32,303 INFO program: >21:04:32,303 INFO program: + wget -O /tmp/anamon http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon >21:04:32,303 INFO program: --2014-01-31 21:04:32-- http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon >21:04:32,304 INFO program: Resolving lab-02.rhts.eng.rdu.redhat.com (lab-02.rhts.eng.rdu.redhat.com)... 2620:52:0:aa1:216:3eff:fe60:cd5c, 10.10.161.70 >21:04:32,304 INFO program: Connecting to lab-02.rhts.eng.rdu.redhat.com (lab-02.rhts.eng.rdu.redhat.com)|2620:52:0:aa1:216:3eff:fe60:cd5c|:80... connected. >21:04:32,304 INFO program: HTTP request sent, awaiting response... 200 OK >21:04:32,304 INFO program: Length: 8771 (8.6K) [text/plain] >21:04:32,304 INFO program: Saving to: '/tmp/anamon' >21:04:32,304 INFO program: >21:04:32,305 INFO program: 0K ........ 100% 152M=0s >21:04:32,305 INFO program: >21:04:32,305 INFO program: 2014-01-31 21:04:32 (152 MB/s) - '/tmp/anamon' saved [8771/8771] >21:04:32,305 INFO program: >21:04:32,305 INFO program: + python /tmp/anamon --recipe-id 1215820 --xmlrpc-url http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2 >21:04:32,305 DEBUG program: Return code: 0 >21:04:32,328 INFO program: Running... udevadm trigger --action=change --subsystem-match=block >21:04:32,344 DEBUG program: Return code: 0 >21:04:32,345 INFO program: Running... udevadm settle --timeout=300 >21:04:32,590 DEBUG program: Return code: 0 >21:04:32,592 INFO program: Running... modprobe fcoe >21:04:32,660 DEBUG program: Return code: 0 >21:04:32,661 INFO program: Running... /usr/libexec/fcoe/fcoe_edd.sh -i >21:04:32,718 INFO program: No FCoE boot disk information is found in EDD! >21:04:32,718 DEBUG program: Return code: 1 >21:04:32,740 INFO program: Running... loadkeys us >21:04:32,803 INFO program: Loading /lib/kbd/keymaps/i386/qwerty/us.map.gz >21:04:32,804 DEBUG program: Return code: 0 >21:04:32,804 INFO program: Running... loadkeys us >21:04:32,819 INFO program: Loading /lib/kbd/keymaps/i386/qwerty/us.map.gz >21:04:32,820 DEBUG program: Return code: 0 >21:04:33,014 INFO program: Running... udevadm settle --timeout=300 >21:04:33,030 DEBUG program: Return code: 0 >21:04:33,052 INFO program: Running... multipath -c /dev/sda >21:04:33,060 INFO program: /dev/sda is not a valid multipath device path >21:04:33,061 DEBUG program: Return code: 1 >21:04:33,200 INFO program: Running... dumpe2fs -h /dev/sda1 >21:04:33,275 INFO program: dumpe2fs 1.42.7 (21-Jan-2013) >21:04:33,275 INFO program: Filesystem volume name: <none> >21:04:33,275 INFO program: Last mounted on: <not available> >21:04:33,276 INFO program: Filesystem UUID: 627457ea-642a-46fb-8a0a-8cf64f7f2c6f >21:04:33,276 INFO program: Filesystem magic number: 0xEF53 >21:04:33,276 INFO program: Filesystem revision #: 1 (dynamic) >21:04:33,276 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 >21:04:33,276 INFO program: Filesystem flags: signed_directory_hash >21:04:33,277 INFO program: Default mount options: user_xattr acl >21:04:33,277 INFO program: Filesystem state: clean >21:04:33,277 INFO program: Errors behavior: Continue >21:04:33,277 INFO program: Filesystem OS type: Linux >21:04:33,277 INFO program: Inode count: 51200 >21:04:33,278 INFO program: Block count: 204800 >21:04:33,278 INFO program: Reserved block count: 10240 >21:04:33,278 INFO program: Free blocks: 192691 >21:04:33,278 INFO program: Free inodes: 51189 >21:04:33,278 INFO program: First block: 1 >21:04:33,278 INFO program: Block size: 1024 >21:04:33,279 INFO program: Fragment size: 1024 >21:04:33,279 INFO program: Reserved GDT blocks: 256 >21:04:33,279 INFO program: Blocks per group: 8192 >21:04:33,279 INFO program: Fragments per group: 8192 >21:04:33,279 INFO program: Inodes per group: 2048 >21:04:33,280 INFO program: Inode blocks per group: 256 >21:04:33,280 INFO program: Flex block group size: 16 >21:04:33,280 INFO program: Filesystem created: Fri Jan 31 20:59:17 2014 >21:04:33,280 INFO program: Last mount time: Fri Jan 31 20:59:18 2014 >21:04:33,280 INFO program: Last write time: Fri Jan 31 20:59:18 2014 >21:04:33,281 INFO program: Mount count: 1 >21:04:33,281 INFO program: Maximum mount count: -1 >21:04:33,281 INFO program: Last checked: Fri Jan 31 20:59:17 2014 >21:04:33,281 INFO program: Check interval: 0 (<none>) >21:04:33,281 INFO program: Lifetime writes: 4448 kB >21:04:33,281 INFO program: Reserved blocks uid: 0 (user root) >21:04:33,282 INFO program: Reserved blocks gid: 0 (group root) >21:04:33,282 INFO program: First inode: 11 >21:04:33,283 INFO program: Inode size: 128 >21:04:33,283 INFO program: Journal inode: 8 >21:04:33,283 INFO program: Default directory hash: half_md4 >21:04:33,283 INFO program: Directory Hash Seed: af34d47e-3614-4760-88ee-df8be6c019ef >21:04:33,284 INFO program: Journal backup: inode blocks >21:04:33,284 INFO program: Journal features: (none) >21:04:33,285 INFO program: Journal size: 4096k >21:04:33,285 INFO program: Journal length: 4096 >21:04:33,285 INFO program: Journal sequence: 0x00000002 >21:04:33,286 INFO program: Journal start: 1 >21:04:33,286 INFO program: >21:04:33,286 DEBUG program: Return code: 0 >21:04:33,287 INFO program: Running... resize2fs -P /dev/sda1 >21:04:33,316 INFO program: resize2fs 1.42.7 (21-Jan-2013) >21:04:33,317 INFO program: Estimated minimum size of the filesystem: 9375 >21:04:33,317 DEBUG program: Return code: 0 >21:04:33,387 INFO program: Running... multipath -c /dev/sdb >21:04:33,395 INFO program: /dev/sdb is not a valid multipath device path >21:04:33,396 DEBUG program: Return code: 1 >21:04:33,678 INFO program: Running... dumpe2fs -h /dev/sdb1 >21:04:33,733 INFO program: dumpe2fs 1.42.7 (21-Jan-2013) >21:04:33,734 INFO program: Filesystem volume name: <none> >21:04:33,734 INFO program: Last mounted on: /mnt/sysimage >21:04:33,734 INFO program: Filesystem UUID: e7fd758b-fa43-45cd-8338-8a30c6ea9ae9 >21:04:33,735 INFO program: Filesystem magic number: 0xEF53 >21:04:33,735 INFO program: Filesystem revision #: 1 (dynamic) >21:04:33,738 INFO program: Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery extent flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize >21:04:33,739 INFO program: Filesystem flags: signed_directory_hash >21:04:33,739 INFO program: Default mount options: user_xattr acl >21:04:33,740 INFO program: Filesystem state: clean >21:04:33,741 INFO program: Errors behavior: Continue >21:04:33,741 INFO program: Filesystem OS type: Linux >21:04:33,742 INFO program: Inode count: 30531584 >21:04:33,743 INFO program: Block count: 122096384 >21:04:33,743 INFO program: Reserved block count: 6104819 >21:04:33,744 INFO program: Free blocks: 120129482 >21:04:33,744 INFO program: Free inodes: 30531573 >21:04:33,745 INFO program: First block: 0 >21:04:33,745 INFO program: Block size: 4096 >21:04:33,746 INFO program: Fragment size: 4096 >21:04:33,746 INFO program: Reserved GDT blocks: 994 >21:04:33,747 INFO program: Blocks per group: 32768 >21:04:33,748 INFO program: Fragments per group: 32768 >21:04:33,748 INFO program: Inodes per group: 8192 >21:04:33,749 INFO program: Inode blocks per group: 512 >21:04:33,749 INFO program: Flex block group size: 16 >21:04:33,750 INFO program: Filesystem created: Fri Jan 31 20:59:10 2014 >21:04:33,750 INFO program: Last mount time: Fri Jan 31 20:59:18 2014 >21:04:33,751 INFO program: Last write time: Fri Jan 31 20:59:18 2014 >21:04:33,751 INFO program: Mount count: 1 >21:04:33,752 INFO program: Maximum mount count: -1 >21:04:33,753 INFO program: Last checked: Fri Jan 31 20:59:10 2014 >21:04:33,753 INFO program: Check interval: 0 (<none>) >21:04:33,754 INFO program: Lifetime writes: 133 MB >21:04:33,754 INFO program: Reserved blocks uid: 0 (user root) >21:04:33,755 INFO program: Reserved blocks gid: 0 (group root) >21:04:33,755 INFO program: First inode: 11 >21:04:33,756 INFO program: Inode size: 256 >21:04:33,757 INFO program: Required extra isize: 28 >21:04:33,757 INFO program: Desired extra isize: 28 >21:04:33,758 INFO program: Journal inode: 8 >21:04:33,758 INFO program: Default directory hash: half_md4 >21:04:33,759 INFO program: Directory Hash Seed: 88a819dc-c00e-4ed5-af55-7f909577cbe4 >21:04:33,759 INFO program: Journal backup: inode blocks >21:04:33,760 INFO program: Journal features: (none) >21:04:33,761 INFO program: Journal size: 128M >21:04:33,761 INFO program: Journal length: 32768 >21:04:33,762 INFO program: Journal sequence: 0x00000002 >21:04:33,762 INFO program: Journal start: 1 >21:04:33,763 INFO program: >21:04:33,763 DEBUG program: Return code: 0 >21:04:33,764 INFO program: Running... resize2fs -P /dev/sdb1 >21:04:33,774 INFO program: resize2fs 1.42.7 (21-Jan-2013) >21:04:33,775 INFO program: Estimated minimum size of the filesystem: 287637 >21:04:33,776 DEBUG program: Return code: 0 >21:04:33,839 INFO program: Running... dumpe2fs -h /dev/loop1 >21:04:33,846 INFO program: dumpe2fs 1.42.7 (21-Jan-2013) >21:04:33,846 INFO program: Filesystem volume name: Anaconda >21:04:33,847 INFO program: Last mounted on: / >21:04:33,847 INFO program: Filesystem UUID: 428d3c2b-6923-48bb-8e46-31a394d3b490 >21:04:33,847 INFO program: Filesystem magic number: 0xEF53 >21:04:33,847 INFO program: Filesystem revision #: 1 (dynamic) >21:04:33,847 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 >21:04:33,847 INFO program: Filesystem flags: signed_directory_hash >21:04:33,848 INFO program: Default mount options: user_xattr acl >21:04:33,848 INFO program: Filesystem state: clean >21:04:33,848 INFO program: Errors behavior: Continue >21:04:33,848 INFO program: Filesystem OS type: Linux >21:04:33,848 INFO program: Inode count: 131072 >21:04:33,849 INFO program: Block count: 2097152 >21:04:33,849 INFO program: Reserved block count: 0 >21:04:33,849 INFO program: Free blocks: 1290080 >21:04:33,850 INFO program: Free inodes: 103258 >21:04:33,850 INFO program: First block: 1 >21:04:33,850 INFO program: Block size: 1024 >21:04:33,850 INFO program: Fragment size: 1024 >21:04:33,851 INFO program: Reserved GDT blocks: 256 >21:04:33,851 INFO program: Blocks per group: 8192 >21:04:33,851 INFO program: Fragments per group: 8192 >21:04:33,852 INFO program: Inodes per group: 512 >21:04:33,852 INFO program: Inode blocks per group: 128 >21:04:33,853 INFO program: Flex block group size: 16 >21:04:33,854 INFO program: Filesystem created: Thu Jun 27 17:56:30 2013 >21:04:33,854 INFO program: Last mount time: Thu Jun 27 17:56:52 2013 >21:04:33,855 INFO program: Last write time: Thu Jun 27 17:57:02 2013 >21:04:33,855 INFO program: Mount count: 2 >21:04:33,855 INFO program: Maximum mount count: -1 >21:04:33,856 INFO program: Last checked: Thu Jun 27 17:56:30 2013 >21:04:33,856 INFO program: Check interval: 0 (<none>) >21:04:33,856 INFO program: Lifetime writes: 32 MB >21:04:33,857 INFO program: Reserved blocks uid: 0 (user root) >21:04:33,857 INFO program: Reserved blocks gid: 0 (group root) >21:04:33,858 INFO program: First inode: 11 >21:04:33,858 INFO program: Inode size: 256 >21:04:33,858 INFO program: Required extra isize: 28 >21:04:33,858 INFO program: Desired extra isize: 28 >21:04:33,859 INFO program: Journal inode: 8 >21:04:33,859 INFO program: Default directory hash: half_md4 >21:04:33,859 INFO program: Directory Hash Seed: 9d8a5e7a-3c26-4838-bfcf-27626fa17022 >21:04:33,860 INFO program: Journal backup: inode blocks >21:04:33,860 INFO program: Journal features: (none) >21:04:33,860 INFO program: Journal size: 32M >21:04:33,860 INFO program: Journal length: 32768 >21:04:33,861 INFO program: Journal sequence: 0x00000009 >21:04:33,861 INFO program: Journal start: 0 >21:04:33,861 INFO program: >21:04:33,861 DEBUG program: Return code: 0 >21:04:33,862 INFO program: Running... resize2fs -P /dev/loop1 >21:04:33,870 INFO program: resize2fs 1.42.7 (21-Jan-2013) >21:04:33,871 INFO program: resize2fs: Device or resource busy while trying to open /dev/loop1 >21:04:33,871 INFO program: Couldn't find valid filesystem superblock. >21:04:33,871 DEBUG program: Return code: 1 >21:04:33,953 INFO program: Running... dumpe2fs -h /dev/mapper/live-rw >21:04:33,960 INFO program: dumpe2fs 1.42.7 (21-Jan-2013) >21:04:33,961 INFO program: Filesystem volume name: Anaconda >21:04:33,961 INFO program: Last mounted on: / >21:04:33,961 INFO program: Filesystem UUID: 428d3c2b-6923-48bb-8e46-31a394d3b490 >21:04:33,961 INFO program: Filesystem magic number: 0xEF53 >21:04:33,962 INFO program: Filesystem revision #: 1 (dynamic) >21:04:33,962 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 >21:04:33,962 INFO program: Filesystem flags: signed_directory_hash >21:04:33,962 INFO program: Default mount options: user_xattr acl >21:04:33,962 INFO program: Filesystem state: clean >21:04:33,962 INFO program: Errors behavior: Continue >21:04:33,963 INFO program: Filesystem OS type: Linux >21:04:33,963 INFO program: Inode count: 131072 >21:04:33,963 INFO program: Block count: 2097152 >21:04:33,963 INFO program: Reserved block count: 0 >21:04:33,963 INFO program: Free blocks: 1290080 >21:04:33,963 INFO program: Free inodes: 103258 >21:04:33,964 INFO program: First block: 1 >21:04:33,964 INFO program: Block size: 1024 >21:04:33,964 INFO program: Fragment size: 1024 >21:04:33,964 INFO program: Reserved GDT blocks: 256 >21:04:33,964 INFO program: Blocks per group: 8192 >21:04:33,964 INFO program: Fragments per group: 8192 >21:04:33,965 INFO program: Inodes per group: 512 >21:04:33,965 INFO program: Inode blocks per group: 128 >21:04:33,965 INFO program: Flex block group size: 16 >21:04:33,965 INFO program: Filesystem created: Thu Jun 27 17:56:30 2013 >21:04:33,965 INFO program: Last mount time: Fri Jan 31 21:04:23 2014 >21:04:33,965 INFO program: Last write time: Fri Jan 31 21:04:23 2014 >21:04:33,966 INFO program: Mount count: 3 >21:04:33,967 INFO program: Maximum mount count: -1 >21:04:33,967 INFO program: Last checked: Thu Jun 27 17:56:30 2013 >21:04:33,967 INFO program: Check interval: 0 (<none>) >21:04:33,967 INFO program: Lifetime writes: 32 MB >21:04:33,968 INFO program: Reserved blocks uid: 0 (user root) >21:04:33,968 INFO program: Reserved blocks gid: 0 (group root) >21:04:33,968 INFO program: First inode: 11 >21:04:33,968 INFO program: Inode size: 256 >21:04:33,969 INFO program: Required extra isize: 28 >21:04:33,969 INFO program: Desired extra isize: 28 >21:04:33,969 INFO program: Journal inode: 8 >21:04:33,969 INFO program: Default directory hash: half_md4 >21:04:33,970 INFO program: Directory Hash Seed: 9d8a5e7a-3c26-4838-bfcf-27626fa17022 >21:04:33,970 INFO program: Journal backup: inode blocks >21:04:33,970 INFO program: Journal features: (none) >21:04:33,970 INFO program: Journal size: 32M >21:04:33,971 INFO program: Journal length: 32768 >21:04:33,971 INFO program: Journal sequence: 0x0000000a >21:04:33,971 INFO program: Journal start: 1 >21:04:33,971 INFO program: >21:04:33,972 DEBUG program: Return code: 0 >21:04:33,972 INFO program: Running... resize2fs -P /dev/mapper/live-rw >21:04:33,979 INFO program: resize2fs 1.42.7 (21-Jan-2013) >21:04:33,980 INFO program: Estimated minimum size of the filesystem: 791689 >21:04:33,980 DEBUG program: Return code: 0 >21:04:33,993 INFO program: Running... udevadm settle --timeout=300 >21:04:34,008 DEBUG program: Return code: 0 >21:04:34,016 INFO program: Running... udevadm settle --timeout=300 >21:04:34,030 DEBUG program: Return code: 0 >21:04:34,037 INFO program: Running... udevadm settle --timeout=300 >21:04:34,051 DEBUG program: Return code: 0 >21:04:34,056 INFO program: Running... udevadm settle --timeout=300 >21:04:34,071 DEBUG program: Return code: 0 >21:04:34,077 INFO program: Running... udevadm settle --timeout=300 >21:04:34,092 DEBUG program: Return code: 0 >21:04:34,094 INFO program: Running... udevadm settle --timeout=300 >21:04:34,109 DEBUG program: Return code: 0 >21:04:34,115 INFO program: Running... udevadm settle --timeout=300 >21:04:34,129 DEBUG program: Return code: 0 >21:04:34,139 INFO program: Running... mount -t ext4 -o defaults,ro /dev/sda1 /mnt/sysimage >21:04:34,183 DEBUG program: Return code: 0 >21:04:34,195 INFO program: Running... udevadm settle --timeout=300 >21:04:34,210 DEBUG program: Return code: 0 >21:04:34,211 INFO program: Running... umount /mnt/sysimage >21:04:34,228 DEBUG program: Return code: 0 >21:04:34,229 INFO program: Running... udevadm settle --timeout=300 >21:04:34,243 DEBUG program: Return code: 0 >21:04:34,249 INFO program: Running... udevadm settle --timeout=300 >21:04:34,264 DEBUG program: Return code: 0 >21:04:34,266 INFO program: Running... mount -t ext4 -o defaults,ro /dev/sdb1 /mnt/sysimage >21:04:34,994 DEBUG program: Return code: 0 >21:04:34,995 INFO program: Running... arch >21:04:35,004 ERR program: Error running arch: No such file or directory >21:04:35,029 INFO program: Running... udevadm settle --timeout=300 >21:04:35,044 DEBUG program: Return code: 0 >21:04:35,045 INFO program: Running... umount /mnt/sysimage >21:04:35,055 DEBUG program: Return code: 0 >21:04:35,056 INFO program: Running... udevadm settle --timeout=300 >21:04:35,070 DEBUG program: Return code: 0 >21:04:35,186 INFO program: Running... mount -t ext4 -o defaults,ro /dev/sda1 /mnt/sysimage >21:04:35,208 DEBUG program: Return code: 0 >21:04:35,210 INFO program: Running... udevadm settle --timeout=300 >21:04:35,224 DEBUG program: Return code: 0 >21:04:35,225 INFO program: Running... umount /mnt/sysimage >21:04:35,232 DEBUG program: Return code: 0 >21:04:35,233 INFO program: Running... udevadm settle --timeout=300 >21:04:35,247 DEBUG program: Return code: 0 >21:04:35,255 INFO program: Running... udevadm settle --timeout=300 >21:04:35,270 DEBUG program: Return code: 0 >21:04:35,273 INFO program: Running... mount -t ext4 -o defaults,ro /dev/sdb1 /mnt/sysimage >21:04:35,334 DEBUG program: Return code: 0 >21:04:35,365 INFO program: Running... arch >21:04:35,429 ERR program: Error running arch: No such file or directory >21:04:35,437 INFO program: Running... udevadm settle --timeout=300 >21:04:35,451 DEBUG program: Return code: 0 >21:04:35,452 INFO program: Running... umount /mnt/sysimage >21:04:35,460 DEBUG program: Return code: 0 >21:04:35,460 INFO program: Running... udevadm settle --timeout=300 >21:04:35,475 DEBUG program: Return code: 0 >21:04:35,479 INFO program: Running... mount -t ext4 -o defaults /dev/sdb1 /mnt/sysimage >21:04:35,522 DEBUG program: Return code: 0 >21:04:35,528 INFO program: Running... dumpe2fs -h /dev/sdb1 >21:04:35,535 INFO program: dumpe2fs 1.42.7 (21-Jan-2013) >21:04:35,536 INFO program: Filesystem volume name: <none> >21:04:35,536 INFO program: Last mounted on: /mnt/sysimage >21:04:35,536 INFO program: Filesystem UUID: e7fd758b-fa43-45cd-8338-8a30c6ea9ae9 >21:04:35,536 INFO program: Filesystem magic number: 0xEF53 >21:04:35,537 INFO program: Filesystem revision #: 1 (dynamic) >21:04:35,537 INFO program: Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery extent flex_bg sparse_super large_file huge_file uninit_bg dir_nlink extra_isize >21:04:35,537 INFO program: Filesystem flags: signed_directory_hash >21:04:35,537 INFO program: Default mount options: user_xattr acl >21:04:35,537 INFO program: Filesystem state: clean >21:04:35,537 INFO program: Errors behavior: Continue >21:04:35,538 INFO program: Filesystem OS type: Linux >21:04:35,538 INFO program: Inode count: 30531584 >21:04:35,538 INFO program: Block count: 122096384 >21:04:35,538 INFO program: Reserved block count: 6104819 >21:04:35,538 INFO program: Free blocks: 120127348 >21:04:35,538 INFO program: Free inodes: 30530152 >21:04:35,539 INFO program: First block: 0 >21:04:35,539 INFO program: Block size: 4096 >21:04:35,539 INFO program: Fragment size: 4096 >21:04:35,539 INFO program: Reserved GDT blocks: 994 >21:04:35,539 INFO program: Blocks per group: 32768 >21:04:35,539 INFO program: Fragments per group: 32768 >21:04:35,539 INFO program: Inodes per group: 8192 >21:04:35,540 INFO program: Inode blocks per group: 512 >21:04:35,540 INFO program: Flex block group size: 16 >21:04:35,540 INFO program: Filesystem created: Fri Jan 31 20:59:10 2014 >21:04:35,540 INFO program: Last mount time: Fri Jan 31 21:04:35 2014 >21:04:35,541 INFO program: Last write time: Fri Jan 31 21:04:35 2014 >21:04:35,541 INFO program: Mount count: 2 >21:04:35,542 INFO program: Maximum mount count: -1 >21:04:35,542 INFO program: Last checked: Fri Jan 31 20:59:10 2014 >21:04:35,542 INFO program: Check interval: 0 (<none>) >21:04:35,542 INFO program: Lifetime writes: 139 MB >21:04:35,543 INFO program: Reserved blocks uid: 0 (user root) >21:04:35,543 INFO program: Reserved blocks gid: 0 (group root) >21:04:35,543 INFO program: First inode: 11 >21:04:35,543 INFO program: Inode size: 256 >21:04:35,544 INFO program: Required extra isize: 28 >21:04:35,544 INFO program: Desired extra isize: 28 >21:04:35,544 INFO program: Journal inode: 8 >21:04:35,544 INFO program: Default directory hash: half_md4 >21:04:35,544 INFO program: Directory Hash Seed: 88a819dc-c00e-4ed5-af55-7f909577cbe4 >21:04:35,545 INFO program: Journal backup: inode blocks >21:04:35,545 INFO program: Journal features: (none) >21:04:35,545 INFO program: Journal size: 128M >21:04:35,545 INFO program: Journal length: 32768 >21:04:35,546 INFO program: Journal sequence: 0x00000073 >21:04:35,546 INFO program: Journal start: 0 >21:04:35,546 INFO program: >21:04:35,546 DEBUG program: Return code: 0 >21:04:35,547 INFO program: Running... resize2fs -P /dev/sdb1 >21:04:35,554 INFO program: resize2fs 1.42.7 (21-Jan-2013) >21:04:35,555 INFO program: Estimated minimum size of the filesystem: 289767 >21:04:35,555 DEBUG program: Return code: 0 >21:04:35,558 INFO program: Running... dumpe2fs -h /dev/sda1 >21:04:35,566 INFO program: dumpe2fs 1.42.7 (21-Jan-2013) >21:04:35,566 INFO program: Filesystem volume name: <none> >21:04:35,566 INFO program: Last mounted on: <not available> >21:04:35,566 INFO program: Filesystem UUID: 627457ea-642a-46fb-8a0a-8cf64f7f2c6f >21:04:35,567 INFO program: Filesystem magic number: 0xEF53 >21:04:35,567 INFO program: Filesystem revision #: 1 (dynamic) >21:04:35,567 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 >21:04:35,567 INFO program: Filesystem flags: signed_directory_hash >21:04:35,567 INFO program: Default mount options: user_xattr acl >21:04:35,568 INFO program: Filesystem state: clean >21:04:35,568 INFO program: Errors behavior: Continue >21:04:35,568 INFO program: Filesystem OS type: Linux >21:04:35,568 INFO program: Inode count: 51200 >21:04:35,568 INFO program: Block count: 204800 >21:04:35,568 INFO program: Reserved block count: 10240 >21:04:35,569 INFO program: Free blocks: 192689 >21:04:35,569 INFO program: Free inodes: 51189 >21:04:35,569 INFO program: First block: 1 >21:04:35,569 INFO program: Block size: 1024 >21:04:35,569 INFO program: Fragment size: 1024 >21:04:35,569 INFO program: Reserved GDT blocks: 256 >21:04:35,570 INFO program: Blocks per group: 8192 >21:04:35,570 INFO program: Fragments per group: 8192 >21:04:35,570 INFO program: Inodes per group: 2048 >21:04:35,570 INFO program: Inode blocks per group: 256 >21:04:35,570 INFO program: Flex block group size: 16 >21:04:35,570 INFO program: Filesystem created: Fri Jan 31 20:59:17 2014 >21:04:35,571 INFO program: Last mount time: Fri Jan 31 20:59:18 2014 >21:04:35,571 INFO program: Last write time: Fri Jan 31 20:59:18 2014 >21:04:35,571 INFO program: Mount count: 1 >21:04:35,571 INFO program: Maximum mount count: -1 >21:04:35,571 INFO program: Last checked: Fri Jan 31 20:59:17 2014 >21:04:35,571 INFO program: Check interval: 0 (<none>) >21:04:35,572 INFO program: Lifetime writes: 4456 kB >21:04:35,572 INFO program: Reserved blocks uid: 0 (user root) >21:04:35,572 INFO program: Reserved blocks gid: 0 (group root) >21:04:35,572 INFO program: First inode: 11 >21:04:35,572 INFO program: Inode size: 128 >21:04:35,572 INFO program: Journal inode: 8 >21:04:35,573 INFO program: Default directory hash: half_md4 >21:04:35,573 INFO program: Directory Hash Seed: af34d47e-3614-4760-88ee-df8be6c019ef >21:04:35,573 INFO program: Journal backup: inode blocks >21:04:35,573 INFO program: Journal features: (none) >21:04:35,573 INFO program: Journal size: 4096k >21:04:35,573 INFO program: Journal length: 4096 >21:04:35,574 INFO program: Journal sequence: 0x00000005 >21:04:35,574 INFO program: Journal start: 0 >21:04:35,574 INFO program: >21:04:35,574 DEBUG program: Return code: 0 >21:04:35,574 INFO program: Running... resize2fs -P /dev/sda1 >21:04:35,582 INFO program: resize2fs 1.42.7 (21-Jan-2013) >21:04:35,583 INFO program: Estimated minimum size of the filesystem: 9377 >21:04:35,583 DEBUG program: Return code: 0 >21:04:35,646 INFO program: Running... mount -t ext4 -o defaults /dev/sda1 /mnt/sysimage/boot >21:04:35,657 DEBUG program: Return code: 0 >21:04:35,678 INFO program: Running... mount -t bind -o bind,defaults /dev /mnt/sysimage/dev >21:04:35,684 DEBUG program: Return code: 0 >21:04:35,688 INFO program: Running... mount -t devpts -o gid=5,mode=620 devpts /mnt/sysimage/dev/pts >21:04:35,695 DEBUG program: Return code: 0 >21:04:35,700 INFO program: Running... mount -t tmpfs -o defaults tmpfs /mnt/sysimage/dev/shm >21:04:35,707 DEBUG program: Return code: 0 >21:04:35,725 INFO program: Running... mount -t proc -o defaults proc /mnt/sysimage/proc >21:04:35,731 DEBUG program: Return code: 0 >21:04:35,802 INFO program: Running... mount -t bind -o bind,defaults /run /mnt/sysimage/run >21:04:35,808 DEBUG program: Return code: 0 >21:04:35,822 INFO program: Running... mount -t sysfs -o defaults sysfs /mnt/sysimage/sys >21:04:35,828 DEBUG program: Return code: 0 >21:04:35,833 INFO program: Running... mount -t selinuxfs -o defaults selinuxfs /mnt/sysimage/sys/fs/selinux >21:04:35,839 DEBUG program: Return code: 0 > > >/tmp/storage.log: >21:04:32,592 INFO blivet: ISCSID is /sbin/iscsid >21:04:32,592 INFO blivet: no initiator set >21:04:32,718 INFO blivet: No FCoE EDD info found: No FCoE boot disk information is found in EDD! >21:04:32,718 INFO blivet: no /etc/zfcp.conf; not configuring zfcp >21:04:32,969 DEBUG blivet: trying to set new default fstype to 'ext4' >21:04:33,008 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,009 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,010 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,010 INFO blivet: resetting Blivet (version 0.17) instance <blivet.Blivet object at 0x7fcd46105150> >21:04:33,011 INFO blivet: no initiator set >21:04:33,011 INFO blivet: not going to create backup copy of non-existent /etc/mdadm.conf >21:04:33,012 INFO blivet: DeviceTree.populate: ignoredDisks is [] ; exclusiveDisks is [] >21:04:33,036 INFO blivet: devices to scan: ['sda', 'sda1', 'sda2', 'sdb', 'sdb1', 'loop0', 'loop1', 'loop2', 'loop3', 'loop4', 'loop5', 'loop6', 'loop7', 'dm-0'] >21:04:33,042 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH4AH0D /dev/disk/by-id/wwn-0x5000cca20dd01058', > 'DEVNAME': 'sda', > 'DEVPATH': '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda', > 'DEVTYPE': 'disk', > 'ID_ATA': '1', > 'ID_ATA_DOWNLOAD_MICROCODE': '1', > 'ID_ATA_FEATURE_SET_AAM': '1', > 'ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE': '254', > 'ID_ATA_FEATURE_SET_AAM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE': '128', > 'ID_ATA_FEATURE_SET_APM': '1', > 'ID_ATA_FEATURE_SET_APM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_HPA': '1', > 'ID_ATA_FEATURE_SET_HPA_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PM': '1', > 'ID_ATA_FEATURE_SET_PM_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PUIS': '1', > 'ID_ATA_FEATURE_SET_PUIS_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY': '1', > 'ID_ATA_FEATURE_SET_SECURITY_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN': '240', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_ATA_SATA': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN1': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN2': '1', > 'ID_ATA_WRITE_CACHE': '1', > 'ID_ATA_WRITE_CACHE_ENABLED': '0', > 'ID_BUS': 'ata', > 'ID_MODEL': 'HDS725050KLA360', > 'ID_MODEL_ENC': 'HDS725050KLA360\\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_REVISION': 'K2AOA60A', > 'ID_SERIAL': 'HDS725050KLA360_KRVN63ZAH4AH0D', > 'ID_SERIAL_SHORT': 'KRVN63ZAH4AH0D', > 'ID_TYPE': 'disk', > 'ID_WWN': '0x5000cca20dd01058', > 'ID_WWN_WITH_EXTENSION': '0x5000cca20dd01058', > 'MAJOR': '8', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '891868', > 'name': 'sda', > 'symlinks': ['/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH4AH0D', > '/dev/disk/by-id/wwn-0x5000cca20dd01058'], > 'sysfs_path': '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda'} ; name: sda ; >21:04:33,044 INFO blivet: scanning sda (/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda)... >21:04:33,045 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >21:04:33,046 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,047 DEBUG blivet: DeviceTree.addUdevDiskDevice: name: sda ; >21:04:33,048 INFO blivet: sda is a disk >21:04:33,049 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,051 DEBUG blivet: DiskDevice._setFormat: sda ; current: None ; type: None ; >21:04:33,062 INFO blivet: added disk sda (id 0) to device tree >21:04:33,062 DEBUG blivet: looking up parted Device: /dev/sda >21:04:33,065 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda ; >21:04:33,067 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda ; label_type: dos ; >21:04:33,068 DEBUG blivet: DiskDevice.setup: sda ; status: True ; controllable: True ; orig: False ; >21:04:33,069 DEBUG blivet: required disklabel type for sda (1) is None >21:04:33,069 DEBUG blivet: default disklabel type for sda is msdos >21:04:33,070 DEBUG blivet: selecting msdos disklabel for sda based on size >21:04:33,072 DEBUG blivet: DiskLabel.__init__: device: /dev/sda ; labelType: msdos ; exists: True ; >21:04:33,156 DEBUG blivet: Did not change pmbr_boot on parted.Disk instance -- > type: msdos primaryPartitionCount: 2 > lastPartitionNumber: 2 maxPrimaryPartitionCount: 4 > partitions: [<parted.partition.Partition object at 0x7fcd46063590>, <parted.partition.Partition object at 0x7fcd46063890>] > device: <parted.device.Device object at 0x7fcd460633d0> > PedDisk: <_ped.Disk object at 0x7fcd46060e60> >21:04:33,157 DEBUG blivet: getFormat('disklabel') returning DiskLabel instance >21:04:33,158 DEBUG blivet: DiskDevice._setFormat: sda ; current: None ; type: disklabel ; >21:04:33,160 INFO blivet: got device: DiskDevice instance (0x7fcd461051d0) -- > name = sda status = True kids = 0 id = 0 > parents = [] > uuid = None size = 476940.023438 > format = existing msdos disklabel > major = 8 minor = 0 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda partedDevice = parted.Device instance -- > model: ATA HDS725050KLA360 path: /dev/sda type: 1 > sectorSize: 512 physicalSectorSize: 512 > length: 976773168 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 1 did: 0 busy: False > hardwareGeometry: (60801, 255, 63) biosGeometry: (60801, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd461008c0> > target size = 0 path = /dev/sda > format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x7fcd460592d0> >21:04:33,161 INFO blivet: got format: DiskLabel instance (0x7fcd46059390) -- > 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 = 2 sectorSize = 512 > align_offset = 0 align_grain = 2048 > partedDisk = parted.Disk instance -- > type: msdos primaryPartitionCount: 2 > lastPartitionNumber: 2 maxPrimaryPartitionCount: 4 > partitions: [<parted.partition.Partition object at 0x7fcd46063590>, <parted.partition.Partition object at 0x7fcd46063890>] > device: <parted.device.Device object at 0x7fcd460633d0> > PedDisk: <_ped.Disk object at 0x7fcd46060e60> > origPartedDisk = <parted.disk.Disk object at 0x7fcd46063a90> > partedDevice = parted.Device instance -- > model: ATA HDS725050KLA360 path: /dev/sda type: 1 > sectorSize: 512 physicalSectorSize: 512 > length: 976773168 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 1 did: 0 busy: False > hardwareGeometry: (60801, 255, 63) biosGeometry: (60801, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd46100b90> > >21:04:33,169 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH4AH0D-part1 /dev/disk/by-id/wwn-0x5000cca20dd01058-part1 /dev/disk/by-uuid/627457ea-642a-46fb-8a0a-8cf64f7f2c6f', > 'DEVNAME': 'sda1', > 'DEVPATH': '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1', > 'DEVTYPE': 'partition', > 'ID_ATA': '1', > 'ID_ATA_DOWNLOAD_MICROCODE': '1', > 'ID_ATA_FEATURE_SET_AAM': '1', > 'ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE': '254', > 'ID_ATA_FEATURE_SET_AAM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE': '128', > 'ID_ATA_FEATURE_SET_APM': '1', > 'ID_ATA_FEATURE_SET_APM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_HPA': '1', > 'ID_ATA_FEATURE_SET_HPA_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PM': '1', > 'ID_ATA_FEATURE_SET_PM_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PUIS': '1', > 'ID_ATA_FEATURE_SET_PUIS_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY': '1', > 'ID_ATA_FEATURE_SET_SECURITY_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN': '240', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_ATA_SATA': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN1': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN2': '1', > 'ID_ATA_WRITE_CACHE': '1', > 'ID_ATA_WRITE_CACHE_ENABLED': '0', > 'ID_BUS': 'ata', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': '627457ea-642a-46fb-8a0a-8cf64f7f2c6f', > 'ID_FS_UUID_ENC': '627457ea-642a-46fb-8a0a-8cf64f7f2c6f', > 'ID_FS_VERSION': '1.0', > 'ID_MODEL': 'HDS725050KLA360', > 'ID_MODEL_ENC': 'HDS725050KLA360\\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': '1', > 'ID_PART_ENTRY_OFFSET': '2048', > 'ID_PART_ENTRY_SCHEME': 'dos', > 'ID_PART_ENTRY_SIZE': '409600', > 'ID_PART_ENTRY_TYPE': '0x83', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_REVISION': 'K2AOA60A', > 'ID_SERIAL': 'HDS725050KLA360_KRVN63ZAH4AH0D', > 'ID_SERIAL_SHORT': 'KRVN63ZAH4AH0D', > 'ID_TYPE': 'disk', > 'ID_WWN': '0x5000cca20dd01058', > 'ID_WWN_WITH_EXTENSION': '0x5000cca20dd01058', > 'MAJOR': '8', > 'MINOR': '1', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '891910', > 'name': 'sda1', > 'symlinks': ['/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH4AH0D-part1', > '/dev/disk/by-id/wwn-0x5000cca20dd01058-part1', > '/dev/disk/by-uuid/627457ea-642a-46fb-8a0a-8cf64f7f2c6f'], > 'sysfs_path': '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1'} ; name: sda1 ; >21:04:33,170 INFO blivet: scanning sda1 (/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1)... >21:04:33,171 DEBUG blivet: DeviceTree.getDeviceByName: name: sda1 ; >21:04:33,172 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,172 INFO blivet: sda1 is a partition >21:04:33,173 DEBUG blivet: DeviceTree.addUdevPartitionDevice: name: sda1 ; >21:04:33,174 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >21:04:33,175 DEBUG blivet: DeviceTree.getDeviceByName returned existing 476940MB disk sda (0) with existing msdos disklabel >21:04:33,177 DEBUG blivet: DiskDevice.addChild: kids: 0 ; name: sda ; >21:04:33,178 DEBUG blivet: PartitionDevice._setFormat: sda1 ; >21:04:33,178 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,180 DEBUG blivet: PartitionDevice._setFormat: sda1 ; current: None ; type: None ; >21:04:33,180 DEBUG blivet: looking up parted Partition: /dev/sda1 >21:04:33,181 DEBUG blivet: PartitionDevice.probe: sda1 ; exists: True ; >21:04:33,182 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 1 ; >21:04:33,184 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 10 ; >21:04:33,185 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 12 ; >21:04:33,185 INFO blivet: added partition sda1 (id 1) to device tree >21:04:33,186 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda1 ; >21:04:33,187 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda1 ; label_type: dos ; >21:04:33,188 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >21:04:33,189 DEBUG blivet: DiskLabel.__init__: device: /dev/sda1 ; labelType: dos ; exists: True ; >21:04:33,199 WARN blivet: disklabel detected but not usable on sda1 >21:04:33,200 INFO blivet: type detected on 'sda1' is 'ext4' >21:04:33,317 DEBUG blivet: padding min size from 10 up to 11 >21:04:33,319 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,320 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,321 DEBUG blivet: PartitionDevice._setFormat: sda1 ; >21:04:33,322 DEBUG blivet: PartitionDevice._setFormat: sda1 ; current: None ; type: ext4 ; >21:04:33,323 DEBUG blivet: looking up parted Device: /dev/sda1 >21:04:33,325 INFO blivet: got device: PartitionDevice instance (0x7fcd46059290) -- > name = sda1 status = True kids = 0 id = 1 > parents = ['existing 476940MB disk sda (0) with existing msdos disklabel'] > uuid = None size = 200.0 > format = existing ext4 filesystem > major = 8 minor = 1 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:1f.2/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: 409600 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (25, 255, 63) biosGeometry: (25, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd46100e60> > target size = 0 path = /dev/sda1 > format args = [] originalFormat = None grow = None max size = 0 bootable = True > part type = 0 primary = None > partedPartition = parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fcd46063490> fileSystem: <parted.filesystem.FileSystem object at 0x7fcd460639d0> > number: 1 path: /dev/sda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fcd46063650> PedPartition: <_ped.Partition object at 0x7fcd4605ecb0> > disk = existing 476940MB disk sda (0) with existing msdos disklabel > start = 2048 end = 411647 length = 409600 > flags = boot >21:04:33,326 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,326 INFO blivet: got format: Ext4FS instance (0x7fcd46063e50) -- > type = ext4 name = ext4 status = False > device = /dev/sda1 uuid = 627457ea-642a-46fb-8a0a-8cf64f7f2c6f exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = None size = 200.0 targetSize = 200.0 > >21:04:33,333 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH4AH0D-part2 /dev/disk/by-id/wwn-0x5000cca20dd01058-part2 /dev/disk/by-uuid/dc6d5131-811f-4c72-af13-b9e95640b4f4', > 'DEVNAME': 'sda2', > 'DEVPATH': '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2', > 'DEVTYPE': 'partition', > 'ID_ATA': '1', > 'ID_ATA_DOWNLOAD_MICROCODE': '1', > 'ID_ATA_FEATURE_SET_AAM': '1', > 'ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE': '254', > 'ID_ATA_FEATURE_SET_AAM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE': '128', > 'ID_ATA_FEATURE_SET_APM': '1', > 'ID_ATA_FEATURE_SET_APM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_HPA': '1', > 'ID_ATA_FEATURE_SET_HPA_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PM': '1', > 'ID_ATA_FEATURE_SET_PM_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PUIS': '1', > 'ID_ATA_FEATURE_SET_PUIS_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY': '1', > 'ID_ATA_FEATURE_SET_SECURITY_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN': '240', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_ATA_SATA': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN1': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN2': '1', > 'ID_ATA_WRITE_CACHE': '1', > 'ID_ATA_WRITE_CACHE_ENABLED': '0', > 'ID_BUS': 'ata', > 'ID_FS_TYPE': 'swap', > 'ID_FS_USAGE': 'other', > 'ID_FS_UUID': 'dc6d5131-811f-4c72-af13-b9e95640b4f4', > 'ID_FS_UUID_ENC': 'dc6d5131-811f-4c72-af13-b9e95640b4f4', > 'ID_FS_VERSION': '2', > 'ID_MODEL': 'HDS725050KLA360', > 'ID_MODEL_ENC': 'HDS725050KLA360\\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': '411648', > 'ID_PART_ENTRY_SCHEME': 'dos', > 'ID_PART_ENTRY_SIZE': '16547840', > 'ID_PART_ENTRY_TYPE': '0x82', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_REVISION': 'K2AOA60A', > 'ID_SERIAL': 'HDS725050KLA360_KRVN63ZAH4AH0D', > 'ID_SERIAL_SHORT': 'KRVN63ZAH4AH0D', > 'ID_TYPE': 'disk', > 'ID_WWN': '0x5000cca20dd01058', > 'ID_WWN_WITH_EXTENSION': '0x5000cca20dd01058', > 'MAJOR': '8', > 'MINOR': '2', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '891953', > 'name': 'sda2', > 'symlinks': ['/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH4AH0D-part2', > '/dev/disk/by-id/wwn-0x5000cca20dd01058-part2', > '/dev/disk/by-uuid/dc6d5131-811f-4c72-af13-b9e95640b4f4'], > 'sysfs_path': '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2'} ; name: sda2 ; >21:04:33,334 INFO blivet: scanning sda2 (/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2)... >21:04:33,335 DEBUG blivet: DeviceTree.getDeviceByName: name: sda2 ; >21:04:33,337 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,337 INFO blivet: sda2 is a partition >21:04:33,338 DEBUG blivet: DeviceTree.addUdevPartitionDevice: name: sda2 ; >21:04:33,340 DEBUG blivet: DeviceTree.getDeviceByName: name: sda ; >21:04:33,341 DEBUG blivet: DeviceTree.getDeviceByName returned existing 476940MB disk sda (0) with existing msdos disklabel >21:04:33,343 DEBUG blivet: DiskDevice.addChild: kids: 1 ; name: sda ; >21:04:33,344 DEBUG blivet: PartitionDevice._setFormat: sda2 ; >21:04:33,345 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,346 DEBUG blivet: PartitionDevice._setFormat: sda2 ; current: None ; type: None ; >21:04:33,347 DEBUG blivet: looking up parted Partition: /dev/sda2 >21:04:33,348 DEBUG blivet: PartitionDevice.probe: sda2 ; exists: True ; >21:04:33,350 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda2 ; flag: 1 ; >21:04:33,351 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda2 ; flag: 10 ; >21:04:33,353 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sda2 ; flag: 12 ; >21:04:33,353 INFO blivet: added partition sda2 (id 2) to device tree >21:04:33,355 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sda2 ; >21:04:33,356 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sda2 ; label_type: dos ; >21:04:33,357 DEBUG blivet: PartitionDevice.setup: sda2 ; status: True ; controllable: True ; orig: False ; >21:04:33,359 DEBUG blivet: DiskLabel.__init__: device: /dev/sda2 ; labelType: dos ; exists: True ; >21:04:33,364 WARN blivet: disklabel detected but not usable on sda2 >21:04:33,364 INFO blivet: type detected on 'sda2' is 'swap' >21:04:33,366 DEBUG blivet: SwapSpace.__init__: device: /dev/sda2 ; serial: KRVN63ZAH4AH0D ; uuid: dc6d5131-811f-4c72-af13-b9e95640b4f4 ; exists: True ; label: None ; >21:04:33,366 DEBUG blivet: getFormat('swap') returning SwapSpace instance >21:04:33,367 DEBUG blivet: PartitionDevice._setFormat: sda2 ; >21:04:33,368 DEBUG blivet: PartitionDevice._setFormat: sda2 ; current: None ; type: swap ; >21:04:33,369 DEBUG blivet: looking up parted Device: /dev/sda2 >21:04:33,371 INFO blivet: got device: PartitionDevice instance (0x7fcd460594d0) -- > name = sda2 status = True kids = 0 id = 2 > parents = ['existing 476940MB disk sda (0) with existing msdos disklabel'] > uuid = None size = 8080.0 > format = existing swap > major = 8 minor = 2 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:1f.2/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: 16547840 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (1030, 255, 63) biosGeometry: (1030, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd46100ef0> > target size = 0 path = /dev/sda2 > format args = [] originalFormat = None grow = None max size = 0 bootable = None > part type = 0 primary = None > partedPartition = parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fcd46063490> fileSystem: <parted.filesystem.FileSystem object at 0x7fcd46063a10> > number: 2 path: /dev/sda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fcd46063950> PedPartition: <_ped.Partition object at 0x7fcd4605ed10> > disk = existing 476940MB disk sda (0) with existing msdos disklabel > start = 411648 end = 16959487 length = 16547840 > flags = >21:04:33,372 INFO blivet: got format: SwapSpace instance (0x7fcd46070390) -- > type = swap name = swap status = False > device = /dev/sda2 uuid = dc6d5131-811f-4c72-af13-b9e95640b4f4 exists = True > options = supported = True formattable = True resizable = False > priority = None label = None >21:04:33,377 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH3NN0D /dev/disk/by-id/wwn-0x5000cca20dcfc21e', > 'DEVNAME': 'sdb', > 'DEVPATH': '/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb', > 'DEVTYPE': 'disk', > 'ID_ATA': '1', > 'ID_ATA_DOWNLOAD_MICROCODE': '1', > 'ID_ATA_FEATURE_SET_AAM': '1', > 'ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE': '254', > 'ID_ATA_FEATURE_SET_AAM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE': '128', > 'ID_ATA_FEATURE_SET_APM': '1', > 'ID_ATA_FEATURE_SET_APM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_HPA': '1', > 'ID_ATA_FEATURE_SET_HPA_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PM': '1', > 'ID_ATA_FEATURE_SET_PM_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PUIS': '1', > 'ID_ATA_FEATURE_SET_PUIS_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY': '1', > 'ID_ATA_FEATURE_SET_SECURITY_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN': '240', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_ATA_SATA': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN1': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN2': '1', > 'ID_ATA_WRITE_CACHE': '1', > 'ID_ATA_WRITE_CACHE_ENABLED': '0', > 'ID_BUS': 'ata', > 'ID_MODEL': 'HDS725050KLA360', > 'ID_MODEL_ENC': 'HDS725050KLA360\\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_REVISION': 'K2AOA60A', > 'ID_SERIAL': 'HDS725050KLA360_KRVN63ZAH3NN0D', > 'ID_SERIAL_SHORT': 'KRVN63ZAH3NN0D', > 'ID_TYPE': 'disk', > 'ID_WWN': '0x5000cca20dcfc21e', > 'ID_WWN_WITH_EXTENSION': '0x5000cca20dcfc21e', > 'MAJOR': '8', > 'MINOR': '16', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '892486', > 'name': 'sdb', > 'symlinks': ['/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH3NN0D', > '/dev/disk/by-id/wwn-0x5000cca20dcfc21e'], > 'sysfs_path': '/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb'} ; name: sdb ; >21:04:33,378 INFO blivet: scanning sdb (/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb)... >21:04:33,379 DEBUG blivet: DeviceTree.getDeviceByName: name: sdb ; >21:04:33,380 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,382 DEBUG blivet: DeviceTree.addUdevDiskDevice: name: sdb ; >21:04:33,384 INFO blivet: sdb is a disk >21:04:33,385 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,386 DEBUG blivet: DiskDevice._setFormat: sdb ; current: None ; type: None ; >21:04:33,396 INFO blivet: added disk sdb (id 3) to device tree >21:04:33,397 DEBUG blivet: looking up parted Device: /dev/sdb >21:04:33,398 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sdb ; >21:04:33,400 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sdb ; label_type: dos ; >21:04:33,401 DEBUG blivet: DiskDevice.setup: sdb ; status: True ; controllable: True ; orig: False ; >21:04:33,401 DEBUG blivet: required disklabel type for sdb (1) is None >21:04:33,402 DEBUG blivet: default disklabel type for sdb is msdos >21:04:33,402 DEBUG blivet: selecting msdos disklabel for sdb based on size >21:04:33,403 DEBUG blivet: DiskLabel.__init__: device: /dev/sdb ; labelType: msdos ; exists: True ; >21:04:33,603 DEBUG blivet: Did not change pmbr_boot on parted.Disk instance -- > type: msdos primaryPartitionCount: 1 > lastPartitionNumber: 1 maxPrimaryPartitionCount: 4 > partitions: [<parted.partition.Partition object at 0x7fcd46070110>] > device: <parted.device.Device object at 0x7fcd46070350> > PedDisk: <_ped.Disk object at 0x7fcd4606b3f8> >21:04:33,604 DEBUG blivet: getFormat('disklabel') returning DiskLabel instance >21:04:33,605 DEBUG blivet: DiskDevice._setFormat: sdb ; current: None ; type: disklabel ; >21:04:33,607 INFO blivet: got device: DiskDevice instance (0x7fcd46063e10) -- > name = sdb status = True kids = 0 id = 3 > parents = [] > uuid = None size = 476940.023438 > format = existing msdos disklabel > major = 8 minor = 16 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb partedDevice = parted.Device instance -- > model: ATA HDS725050KLA360 path: /dev/sdb type: 1 > sectorSize: 512 physicalSectorSize: 512 > length: 976773168 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 2 did: 0 busy: False > hardwareGeometry: (60801, 255, 63) biosGeometry: (60801, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd46100f80> > target size = 0 path = /dev/sdb > format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x7fcd46063bd0> >21:04:33,608 INFO blivet: got format: DiskLabel instance (0x7fcd46059490) -- > type = disklabel name = partition table (MSDOS) status = False > device = /dev/sdb uuid = None exists = True > options = None supported = False formattable = True resizable = False > type = msdos partition count = 1 sectorSize = 512 > align_offset = 0 align_grain = 2048 > partedDisk = parted.Disk instance -- > type: msdos primaryPartitionCount: 1 > lastPartitionNumber: 1 maxPrimaryPartitionCount: 4 > partitions: [<parted.partition.Partition object at 0x7fcd46070110>] > device: <parted.device.Device object at 0x7fcd46070350> > PedDisk: <_ped.Disk object at 0x7fcd4606b3f8> > origPartedDisk = <parted.disk.Disk object at 0x7fcd46070990> > partedDevice = parted.Device instance -- > model: ATA HDS725050KLA360 path: /dev/sdb type: 1 > sectorSize: 512 physicalSectorSize: 512 > length: 976773168 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 2 did: 0 busy: False > hardwareGeometry: (60801, 255, 63) biosGeometry: (60801, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd45fb20e0> > >21:04:33,616 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH3NN0D-part1 /dev/disk/by-id/wwn-0x5000cca20dcfc21e-part1 /dev/disk/by-uuid/e7fd758b-fa43-45cd-8338-8a30c6ea9ae9', > 'DEVNAME': 'sdb1', > 'DEVPATH': '/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1', > 'DEVTYPE': 'partition', > 'ID_ATA': '1', > 'ID_ATA_DOWNLOAD_MICROCODE': '1', > 'ID_ATA_FEATURE_SET_AAM': '1', > 'ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE': '254', > 'ID_ATA_FEATURE_SET_AAM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE': '128', > 'ID_ATA_FEATURE_SET_APM': '1', > 'ID_ATA_FEATURE_SET_APM_ENABLED': '0', > 'ID_ATA_FEATURE_SET_HPA': '1', > 'ID_ATA_FEATURE_SET_HPA_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PM': '1', > 'ID_ATA_FEATURE_SET_PM_ENABLED': '1', > 'ID_ATA_FEATURE_SET_PUIS': '1', > 'ID_ATA_FEATURE_SET_PUIS_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY': '1', > 'ID_ATA_FEATURE_SET_SECURITY_ENABLED': '0', > 'ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN': '240', > 'ID_ATA_FEATURE_SET_SMART': '1', > 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', > 'ID_ATA_SATA': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN1': '1', > 'ID_ATA_SATA_SIGNAL_RATE_GEN2': '1', > 'ID_ATA_WRITE_CACHE': '1', > 'ID_ATA_WRITE_CACHE_ENABLED': '0', > 'ID_BUS': 'ata', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': 'e7fd758b-fa43-45cd-8338-8a30c6ea9ae9', > 'ID_FS_UUID_ENC': 'e7fd758b-fa43-45cd-8338-8a30c6ea9ae9', > 'ID_FS_VERSION': '1.0', > 'ID_MODEL': 'HDS725050KLA360', > 'ID_MODEL_ENC': 'HDS725050KLA360\\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:16', > 'ID_PART_ENTRY_NUMBER': '1', > 'ID_PART_ENTRY_OFFSET': '2048', > 'ID_PART_ENTRY_SCHEME': 'dos', > 'ID_PART_ENTRY_SIZE': '976771072', > 'ID_PART_ENTRY_TYPE': '0x83', > 'ID_PART_TABLE_TYPE': 'dos', > 'ID_REVISION': 'K2AOA60A', > 'ID_SERIAL': 'HDS725050KLA360_KRVN63ZAH3NN0D', > 'ID_SERIAL_SHORT': 'KRVN63ZAH3NN0D', > 'ID_TYPE': 'disk', > 'ID_WWN': '0x5000cca20dcfc21e', > 'ID_WWN_WITH_EXTENSION': '0x5000cca20dcfc21e', > 'MAJOR': '8', > 'MINOR': '17', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '892532', > 'name': 'sdb1', > 'symlinks': ['/dev/disk/by-id/ata-HDS725050KLA360_KRVN63ZAH3NN0D-part1', > '/dev/disk/by-id/wwn-0x5000cca20dcfc21e-part1', > '/dev/disk/by-uuid/e7fd758b-fa43-45cd-8338-8a30c6ea9ae9'], > 'sysfs_path': '/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1'} ; name: sdb1 ; >21:04:33,616 INFO blivet: scanning sdb1 (/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1)... >21:04:33,618 DEBUG blivet: DeviceTree.getDeviceByName: name: sdb1 ; >21:04:33,619 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,620 INFO blivet: sdb1 is a partition >21:04:33,621 DEBUG blivet: DeviceTree.addUdevPartitionDevice: name: sdb1 ; >21:04:33,622 DEBUG blivet: DeviceTree.getDeviceByName: name: sdb ; >21:04:33,624 DEBUG blivet: DeviceTree.getDeviceByName returned existing 476940MB disk sdb (3) with existing msdos disklabel >21:04:33,625 DEBUG blivet: DiskDevice.addChild: kids: 0 ; name: sdb ; >21:04:33,627 DEBUG blivet: PartitionDevice._setFormat: sdb1 ; >21:04:33,628 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,629 DEBUG blivet: PartitionDevice._setFormat: sdb1 ; current: None ; type: None ; >21:04:33,630 DEBUG blivet: looking up parted Partition: /dev/sdb1 >21:04:33,631 DEBUG blivet: PartitionDevice.probe: sdb1 ; exists: True ; >21:04:33,633 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sdb1 ; flag: 1 ; >21:04:33,634 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sdb1 ; flag: 10 ; >21:04:33,636 DEBUG blivet: PartitionDevice.getFlag: path: /dev/sdb1 ; flag: 12 ; >21:04:33,636 INFO blivet: added partition sdb1 (id 4) to device tree >21:04:33,637 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: sdb1 ; >21:04:33,639 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: sdb1 ; label_type: dos ; >21:04:33,640 DEBUG blivet: PartitionDevice.setup: sdb1 ; status: True ; controllable: True ; orig: False ; >21:04:33,642 DEBUG blivet: DiskLabel.__init__: device: /dev/sdb1 ; labelType: dos ; exists: True ; >21:04:33,677 WARN blivet: disklabel detected but not usable on sdb1 >21:04:33,678 INFO blivet: type detected on 'sdb1' is 'ext4' >21:04:33,777 DEBUG blivet: padding min size from 1124 up to 1236 >21:04:33,779 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,780 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,781 DEBUG blivet: PartitionDevice._setFormat: sdb1 ; >21:04:33,784 DEBUG blivet: PartitionDevice._setFormat: sdb1 ; current: None ; type: ext4 ; >21:04:33,785 DEBUG blivet: looking up parted Device: /dev/sdb1 >21:04:33,788 INFO blivet: got device: PartitionDevice instance (0x7fcd46063dd0) -- > name = sdb1 status = True kids = 0 id = 4 > parents = ['existing 476940MB disk sdb (3) with existing msdos disklabel'] > uuid = None size = 476939.0 > format = existing ext4 filesystem > major = 8 minor = 17 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1 partedDevice = parted.Device instance -- > model: Unknown path: /dev/sdb1 type: 0 > sectorSize: 512 physicalSectorSize: 512 > length: 976771072 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (60801, 255, 63) biosGeometry: (60801, 255, 63) > PedDevice: <_ped.Device object at 0x7fcd45fb2290> > target size = 0 path = /dev/sdb1 > format args = [] originalFormat = None grow = None max size = 0 bootable = None > part type = 0 primary = None > partedPartition = parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fcd460700d0> fileSystem: <parted.filesystem.FileSystem object at 0x7fcd46070b10> > number: 1 path: /dev/sdb1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fcd460707d0> PedPartition: <_ped.Partition object at 0x7fcd45fb7350> > disk = existing 476940MB disk sdb (3) with existing msdos disklabel > start = 2048 end = 976773119 length = 976771072 > flags = >21:04:33,790 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,791 INFO blivet: got format: Ext4FS instance (0x7fcd45fb9050) -- > type = ext4 name = ext4 status = False > device = /dev/sdb1 uuid = e7fd758b-fa43-45cd-8338-8a30c6ea9ae9 exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = None size = 476939.0 targetSize = 476939.0 > >21:04:33,794 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop0', > 'DEVPATH': '/devices/virtual/block/loop0', > 'DEVTYPE': 'disk', > 'ID_FS_TYPE': 'squashfs', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_VERSION': '1024.0', > 'MAJOR': '7', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '899829', > 'name': 'loop0', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop0'} ; name: loop0 ; >21:04:33,795 INFO blivet: scanning loop0 (/devices/virtual/block/loop0)... >21:04:33,796 DEBUG blivet: DeviceTree.getDeviceByName: name: loop0 ; >21:04:33,798 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,798 INFO blivet: loop0 is a loop device >21:04:33,800 DEBUG blivet: DeviceTree.addUdevLoopDevice: name: loop0 ; >21:04:33,802 DEBUG blivet: DeviceTree.getDeviceByName: name: /run/install/repo/LiveOS/squashfs.img ; >21:04:33,803 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,804 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,806 DEBUG blivet: FileDevice._setFormat: /run/install/repo/LiveOS/squashfs.img ; current: None ; type: None ; >21:04:33,807 INFO blivet: added file /run/install/repo/LiveOS/squashfs.img (id 5) to device tree >21:04:33,808 DEBUG blivet: FileDevice.addChild: kids: 0 ; name: /run/install/repo/LiveOS/squashfs.img ; >21:04:33,809 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,813 DEBUG blivet: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >21:04:33,814 INFO blivet: added loop loop0 (id 6) to device tree >21:04:33,816 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: loop0 ; >21:04:33,817 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: loop0 ; label_type: None ; >21:04:33,817 DEBUG blivet: getFormat('squashfs') returning DeviceFormat instance >21:04:33,817 DEBUG blivet: device loop0 does not contain a disklabel >21:04:33,818 INFO blivet: type detected on 'loop0' is 'squashfs' >21:04:33,818 DEBUG blivet: getFormat('squashfs') returning DeviceFormat instance >21:04:33,819 DEBUG blivet: LoopDevice._setFormat: loop0 ; current: None ; type: squashfs ; >21:04:33,820 INFO blivet: got device: LoopDevice instance (0x7fcd46063c90) -- > name = loop0 status = False kids = 0 id = 6 > parents = ['existing 0MB file /run/install/repo/LiveOS/squashfs.img (5)'] > uuid = None size = 0 > format = existing squashfs > major = 0 minor = 0 exists = True protected = False > sysfs path = partedDevice = None > target size = 0 path = /dev/loop0 > format args = [] originalFormat = None >21:04:33,820 INFO blivet: got format: DeviceFormat instance (0x7fcd46070dd0) -- > type = squashfs name = squashfs status = False > device = /dev/loop0 uuid = None exists = True > options = None supported = False formattable = False resizable = False > >21:04:33,823 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-label/Anaconda /dev/disk/by-uuid/428d3c2b-6923-48bb-8e46-31a394d3b490', > 'DEVNAME': 'loop1', > 'DEVPATH': '/devices/virtual/block/loop1', > 'DEVTYPE': 'disk', > 'ID_FS_LABEL': 'Anaconda', > 'ID_FS_LABEL_ENC': 'Anaconda', > 'ID_FS_TYPE': 'ext4', > 'ID_FS_USAGE': 'filesystem', > 'ID_FS_UUID': '428d3c2b-6923-48bb-8e46-31a394d3b490', > 'ID_FS_UUID_ENC': '428d3c2b-6923-48bb-8e46-31a394d3b490', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '7', > 'MINOR': '1', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '900070', > 'name': 'loop1', > 'symlinks': ['/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/428d3c2b-6923-48bb-8e46-31a394d3b490'], > 'sysfs_path': '/devices/virtual/block/loop1'} ; name: loop1 ; >21:04:33,824 INFO blivet: scanning loop1 (/devices/virtual/block/loop1)... >21:04:33,825 DEBUG blivet: DeviceTree.getDeviceByName: name: loop1 ; >21:04:33,826 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,826 INFO blivet: loop1 is a loop device >21:04:33,827 DEBUG blivet: DeviceTree.addUdevLoopDevice: name: loop1 ; >21:04:33,829 DEBUG blivet: DeviceTree.getDeviceByName: name: /LiveOS/rootfs.img ; >21:04:33,830 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,830 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,831 DEBUG blivet: FileDevice._setFormat: /LiveOS/rootfs.img ; current: None ; type: None ; >21:04:33,832 INFO blivet: added file /LiveOS/rootfs.img (id 7) to device tree >21:04:33,833 DEBUG blivet: FileDevice.addChild: kids: 0 ; name: /LiveOS/rootfs.img ; >21:04:33,833 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,834 DEBUG blivet: LoopDevice._setFormat: loop1 ; current: None ; type: None ; >21:04:33,835 INFO blivet: added loop loop1 (id 8) to device tree >21:04:33,836 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: loop1 ; >21:04:33,837 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: loop1 ; label_type: None ; >21:04:33,838 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,838 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,839 DEBUG blivet: device loop1 does not contain a disklabel >21:04:33,839 INFO blivet: type detected on 'loop1' is 'ext4' >21:04:33,871 DEBUG blivet: using current size 0 as min size >21:04:33,873 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,873 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,875 DEBUG blivet: LoopDevice._setFormat: loop1 ; current: None ; type: ext4 ; >21:04:33,875 INFO blivet: got device: LoopDevice instance (0x7fcd46070e10) -- > name = loop1 status = False kids = 0 id = 8 > parents = ['existing 0MB file /LiveOS/rootfs.img (7)'] > 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 >21:04:33,877 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,878 INFO blivet: got format: Ext4FS instance (0x7fcd46070b90) -- > type = ext4 name = ext4 status = False > device = /dev/loop1 uuid = 428d3c2b-6923-48bb-8e46-31a394d3b490 exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 2048.0 targetSize = 2048.0 > >21:04:33,880 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop2', > 'DEVPATH': '/devices/virtual/block/loop2', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '2', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '900314', > 'name': 'loop2', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop2'} ; name: loop2 ; >21:04:33,880 INFO blivet: scanning loop2 (/devices/virtual/block/loop2)... >21:04:33,882 DEBUG blivet: DeviceTree.getDeviceByName: name: loop2 ; >21:04:33,883 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,883 INFO blivet: loop2 is a loop device >21:04:33,885 DEBUG blivet: DeviceTree.addUdevLoopDevice: name: loop2 ; >21:04:33,886 DEBUG blivet: DeviceTree.getDeviceByName: name: /overlay (deleted) ; >21:04:33,887 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,888 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,889 DEBUG blivet: FileDevice._setFormat: /overlay (deleted) ; current: None ; type: None ; >21:04:33,890 INFO blivet: added file /overlay (deleted) (id 9) to device tree >21:04:33,892 DEBUG blivet: FileDevice.addChild: kids: 0 ; name: /overlay (deleted) ; >21:04:33,892 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,894 DEBUG blivet: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >21:04:33,894 INFO blivet: added loop loop2 (id 10) to device tree >21:04:33,895 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: loop2 ; >21:04:33,897 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: loop2 ; label_type: None ; >21:04:33,897 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,899 DEBUG blivet: LoopDevice.setup: loop2 ; status: False ; controllable: False ; orig: False ; >21:04:33,900 DEBUG blivet: DiskLabel.__init__: device: /dev/loop2 ; labelType: None ; exists: True ; >21:04:33,903 WARN blivet: disklabel detected but not usable on loop2 >21:04:33,903 DEBUG blivet: no type or existing type for loop2, bailing >21:04:33,904 INFO blivet: got device: LoopDevice instance (0x7fcd46070c50) -- > name = loop2 status = False kids = 0 id = 10 > parents = ['existing 0MB file /overlay (deleted) (9)'] > 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 >21:04:33,906 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop3', > 'DEVPATH': '/devices/virtual/block/loop3', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '3', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '900562', > 'name': 'loop3', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop3'} ; name: loop3 ; >21:04:33,907 INFO blivet: ignoring loop3 (/devices/virtual/block/loop3) >21:04:33,907 DEBUG blivet: lvm filter: adding loop3 to the reject list >21:04:33,909 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop4', > 'DEVPATH': '/devices/virtual/block/loop4', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '4', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '900819', > 'name': 'loop4', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop4'} ; name: loop4 ; >21:04:33,910 INFO blivet: ignoring loop4 (/devices/virtual/block/loop4) >21:04:33,911 DEBUG blivet: lvm filter: adding loop4 to the reject list >21:04:33,913 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop5', > 'DEVPATH': '/devices/virtual/block/loop5', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '5', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '901224', > 'name': 'loop5', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop5'} ; name: loop5 ; >21:04:33,914 INFO blivet: ignoring loop5 (/devices/virtual/block/loop5) >21:04:33,915 DEBUG blivet: lvm filter: adding loop5 to the reject list >21:04:33,917 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop6', > 'DEVPATH': '/devices/virtual/block/loop6', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '6', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '901487', > 'name': 'loop6', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop6'} ; name: loop6 ; >21:04:33,917 INFO blivet: ignoring loop6 (/devices/virtual/block/loop6) >21:04:33,917 DEBUG blivet: lvm filter: adding loop6 to the reject list >21:04:33,919 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop7', > 'DEVPATH': '/devices/virtual/block/loop7', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '7', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '901757', > 'name': 'loop7', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop7'} ; name: loop7 ; >21:04:33,920 INFO blivet: ignoring loop7 (/devices/virtual/block/loop7) >21:04:33,920 DEBUG blivet: lvm filter: adding loop7 to the reject list >21:04:33,926 DEBUG blivet: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/dm-name-live-rw /dev/disk/by-label/Anaconda /dev/disk/by-uuid/428d3c2b-6923-48bb-8e46-31a394d3b490 /dev/mapper/live-rw', > 'DEVNAME': 'dm-0', > 'DEVPATH': '/devices/virtual/block/dm-0', > 'DEVTYPE': 'disk', > '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': '428d3c2b-6923-48bb-8e46-31a394d3b490', > 'ID_FS_UUID_ENC': '428d3c2b-6923-48bb-8e46-31a394d3b490', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '253', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '104903', > 'name': 'dm-0', > 'symlinks': ['/dev/disk/by-id/dm-name-live-rw', > '/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/428d3c2b-6923-48bb-8e46-31a394d3b490', > '/dev/mapper/live-rw'], > 'sysfs_path': '/devices/virtual/block/dm-0'} ; name: live-rw ; >21:04:33,927 INFO blivet: scanning live-rw (/devices/virtual/block/dm-0)... >21:04:33,928 DEBUG blivet: DeviceTree.getDeviceByName: name: live-rw ; >21:04:33,930 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,931 INFO blivet: live-rw is a device-mapper device >21:04:33,932 DEBUG blivet: DeviceTree.addUdevDMDevice: name: live-rw ; >21:04:33,934 DEBUG blivet: DeviceTree.getDeviceByName: name: loop1 ; >21:04:33,936 DEBUG blivet: DeviceTree.getDeviceByName returned existing 0MB loop loop1 (8) with existing ext4 filesystem >21:04:33,938 DEBUG blivet: DeviceTree.getDeviceByName: name: loop2 ; >21:04:33,940 DEBUG blivet: DeviceTree.getDeviceByName returned existing 0MB loop loop2 (10) >21:04:33,942 DEBUG blivet: DeviceTree.getDeviceByName: name: live-rw ; >21:04:33,943 DEBUG blivet: DeviceTree.getDeviceByName returned None >21:04:33,945 DEBUG blivet: LoopDevice.addChild: kids: 0 ; name: loop2 ; >21:04:33,945 DEBUG blivet: getFormat('None') returning DeviceFormat instance >21:04:33,947 DEBUG blivet: DMDevice._setFormat: live-rw ; current: None ; type: None ; >21:04:33,947 INFO blivet: added dm live-rw (id 11) to device tree >21:04:33,948 DEBUG blivet: DeviceTree.handleUdevDeviceFormat: name: live-rw ; >21:04:33,950 DEBUG blivet: DeviceTree.handleUdevDiskLabelFormat: device: live-rw ; label_type: None ; >21:04:33,951 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,952 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,952 DEBUG blivet: device live-rw does not contain a disklabel >21:04:33,953 INFO blivet: type detected on 'live-rw' is 'ext4' >21:04:33,980 DEBUG blivet: padding min size from 774 up to 851 >21:04:33,982 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,983 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:33,984 DEBUG blivet: DMDevice._setFormat: live-rw ; current: None ; type: ext4 ; >21:04:33,985 DEBUG blivet: looking up parted Device: /dev/mapper/live-rw >21:04:33,990 INFO blivet: got device: DMDevice instance (0x7fcd46063cd0) -- > name = live-rw status = True kids = 0 id = 11 > parents = ['existing 0MB loop loop2 (10)'] > uuid = None size = 2048.0 > 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 0x7fcd46100b00> > target size = 0 path = /dev/mapper/live-rw > format args = [] originalFormat = None target = None dmUuid = None >21:04:33,992 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:33,992 INFO blivet: got format: Ext4FS instance (0x7fcd46070fd0) -- > type = ext4 name = ext4 status = False > device = /dev/mapper/live-rw uuid = 428d3c2b-6923-48bb-8e46-31a394d3b490 exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 2048.0 targetSize = 2048.0 > >21:04:34,015 DEBUG blivet: PartitionDevice.teardown: sda1 ; status: True ; controllable: True ; >21:04:34,032 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >21:04:34,034 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:34,036 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:34,052 DEBUG blivet: PartitionDevice.teardown: sda2 ; status: True ; controllable: True ; >21:04:34,054 DEBUG blivet: SwapSpace.teardown: device: /dev/sda2 ; status: False ; type: swap ; >21:04:34,056 DEBUG blivet: SwapSpace.teardown: device: /dev/sda2 ; status: False ; type: swap ; >21:04:34,073 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >21:04:34,074 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:34,077 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:34,093 DEBUG blivet: PartitionDevice.teardown: sdb1 ; status: True ; controllable: True ; >21:04:34,111 DEBUG blivet: DiskDevice.teardown: sdb ; status: True ; controllable: True ; >21:04:34,112 DEBUG blivet: DiskLabel.teardown: device: /dev/sdb ; status: False ; type: disklabel ; >21:04:34,115 DEBUG blivet: DiskLabel.teardown: device: /dev/sdb ; status: False ; type: disklabel ; >21:04:34,131 DEBUG blivet: LoopDevice.teardown: loop0 ; status: False ; controllable: False ; >21:04:34,132 DEBUG blivet: LoopDevice.teardown: loop1 ; status: False ; controllable: False ; >21:04:34,133 INFO blivet: not going to restore from backup of non-existent /etc/mdadm.conf >21:04:34,134 INFO blivet: edd: collected mbr signatures: {'sda': '0x000b31bc', 'sdb': '0x000ef59a'} >21:04:34,134 DEBUG blivet: edd: data extracted from 0x80: > type: ATA, ata_device: 0 > channel: 0, mbr_signature: 0x000b31bc > pci_dev: 00:1f.2, scsi_id: None > scsi_lun: None, sectors: 976773168 >21:04:34,135 WARN blivet: edd: directory does not exist: /sys/devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block >21:04:34,135 INFO blivet: edd: matched 0x80 to sda using MBR sig >21:04:34,135 DEBUG blivet: edd: data extracted from 0x81: > type: ATA, ata_device: 0 > channel: 1, mbr_signature: 0x000ef59a > pci_dev: 00:1f.2, scsi_id: None > scsi_lun: None, sectors: 976773168 >21:04:34,135 WARN blivet: edd: directory does not exist: /sys/devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0/block >21:04:34,136 INFO blivet: edd: matched 0x81 to sdb using MBR sig >21:04:34,138 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >21:04:34,139 INFO blivet: set SELinux context for mountpoint /mnt/sysimage to system_u:object_r:mnt_t:s0 >21:04:34,194 DEBUG blivet: PartitionDevice.teardown: sda1 ; status: True ; controllable: True ; >21:04:34,245 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >21:04:34,246 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:34,249 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:34,265 DEBUG blivet: PartitionDevice.setup: sdb1 ; status: True ; controllable: True ; orig: False ; >21:04:34,266 INFO blivet: set SELinux context for mountpoint /mnt/sysimage to system_u:object_r:mnt_t:s0 >21:04:35,005 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >21:04:35,005 INFO blivet: error parsing blkid.tab: [Errno 2] No such file or directory: '/mnt/sysimage/etc/blkid/blkid.tab' >21:04:35,005 DEBUG blivet: parsing /mnt/sysimage/etc/crypttab >21:04:35,006 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >21:04:35,006 DEBUG blivet: crypttab maps: [] >21:04:35,006 DEBUG blivet: parsing /mnt/sysimage/etc/fstab >21:04:35,027 DEBUG blivet: resolved 'UUID=e7fd758b-fa43-45cd-8338-8a30c6ea9ae9' to 'sdb1' (partition) >21:04:35,027 DEBUG blivet: resolved 'UUID=627457ea-642a-46fb-8a0a-8cf64f7f2c6f' to 'sda1' (partition) >21:04:35,027 DEBUG blivet: resolved 'UUID=dc6d5131-811f-4c72-af13-b9e95640b4f4' to 'sda2' (partition) >21:04:35,028 DEBUG blivet: PartitionDevice.teardown: sdb1 ; status: True ; controllable: True ; >21:04:35,175 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:35,177 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:35,179 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:35,182 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:35,184 DEBUG blivet: onlyuse is now: sda,sdb >21:04:35,185 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >21:04:35,186 INFO blivet: set SELinux context for mountpoint /mnt/sysimage to system_u:object_r:mnt_t:s0 >21:04:35,209 DEBUG blivet: PartitionDevice.teardown: sda1 ; status: True ; controllable: True ; >21:04:35,252 DEBUG blivet: DiskDevice.teardown: sda ; status: True ; controllable: True ; >21:04:35,253 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:35,255 DEBUG blivet: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; >21:04:35,272 DEBUG blivet: PartitionDevice.setup: sdb1 ; status: True ; controllable: True ; orig: False ; >21:04:35,273 INFO blivet: set SELinux context for mountpoint /mnt/sysimage to system_u:object_r:mnt_t:s0 >21:04:35,431 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >21:04:35,431 INFO blivet: error parsing blkid.tab: [Errno 2] No such file or directory: '/mnt/sysimage/etc/blkid/blkid.tab' >21:04:35,432 DEBUG blivet: parsing /mnt/sysimage/etc/crypttab >21:04:35,432 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >21:04:35,433 DEBUG blivet: crypttab maps: [] >21:04:35,433 DEBUG blivet: parsing /mnt/sysimage/etc/fstab >21:04:35,434 DEBUG blivet: resolved 'UUID=e7fd758b-fa43-45cd-8338-8a30c6ea9ae9' to 'sdb1' (partition) >21:04:35,434 DEBUG blivet: resolved 'UUID=627457ea-642a-46fb-8a0a-8cf64f7f2c6f' to 'sda1' (partition) >21:04:35,435 DEBUG blivet: resolved 'UUID=dc6d5131-811f-4c72-af13-b9e95640b4f4' to 'sda2' (partition) >21:04:35,436 DEBUG blivet: PartitionDevice.teardown: sdb1 ; status: True ; controllable: True ; >21:04:35,477 DEBUG blivet: PartitionDevice.setup: sdb1 ; status: True ; controllable: True ; orig: False ; >21:04:35,478 INFO blivet: set SELinux context for mountpoint / to system_u:object_r:root_t:s0 >21:04:35,523 INFO blivet: set SELinux context for newly mounted filesystem root at / to system_u:object_r:root_t:s0 >21:04:35,525 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >21:04:35,525 INFO blivet: error parsing blkid.tab: [Errno 2] No such file or directory: '/mnt/sysimage/etc/blkid/blkid.tab' >21:04:35,525 DEBUG blivet: parsing /mnt/sysimage/etc/crypttab >21:04:35,526 DEBUG blivet: parsing /mnt/sysimage/etc/blkid/blkid.tab >21:04:35,526 DEBUG blivet: crypttab maps: [] >21:04:35,526 DEBUG blivet: parsing /mnt/sysimage/etc/fstab >21:04:35,526 DEBUG blivet: resolved 'UUID=e7fd758b-fa43-45cd-8338-8a30c6ea9ae9' to 'sdb1' (partition) >21:04:35,527 DEBUG blivet: PartitionDevice.setup: sdb1 ; status: True ; controllable: True ; orig: False ; >21:04:35,555 DEBUG blivet: padding min size from 1132 up to 1245 >21:04:35,556 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:35,557 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:35,557 DEBUG blivet: resolved 'UUID=627457ea-642a-46fb-8a0a-8cf64f7f2c6f' to 'sda1' (partition) >21:04:35,558 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >21:04:35,584 DEBUG blivet: padding min size from 10 up to 11 >21:04:35,586 DEBUG blivet: Ext4FS.supported: supported: True ; >21:04:35,587 DEBUG blivet: getFormat('ext4') returning Ext4FS instance >21:04:35,588 DEBUG blivet: resolved 'UUID=dc6d5131-811f-4c72-af13-b9e95640b4f4' to 'sda2' (partition) >21:04:35,589 DEBUG blivet: PartitionDevice.setup: sda2 ; status: True ; controllable: True ; orig: False ; >21:04:35,591 DEBUG blivet: SwapSpace.__init__: device: /dev/sda2 ; exists: True ; >21:04:35,591 DEBUG blivet: getFormat('swap') returning SwapSpace instance >21:04:35,593 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >21:04:35,595 DEBUG blivet: PartitionDevice.setup: sdb1 ; status: True ; controllable: True ; orig: False ; >21:04:35,597 DEBUG blivet: BindFS.supported: supported: False ; >21:04:35,598 DEBUG blivet: getFormat('bind') returning BindFS instance >21:04:35,599 DEBUG blivet: DirectoryDevice._setFormat: /dev ; current: None ; type: bind ; >21:04:35,601 DEBUG blivet: TmpFS.supported: supported: False ; >21:04:35,601 DEBUG blivet: getFormat('tmpfs') returning TmpFS instance >21:04:35,603 DEBUG blivet: NoDevice._setFormat: tmpfs ; current: None ; type: tmpfs ; >21:04:35,604 DEBUG blivet: DevPtsFS.supported: supported: False ; >21:04:35,605 DEBUG blivet: getFormat('devpts') returning DevPtsFS instance >21:04:35,606 DEBUG blivet: NoDevice._setFormat: devpts ; current: None ; type: devpts ; >21:04:35,608 DEBUG blivet: SysFS.supported: supported: False ; >21:04:35,608 DEBUG blivet: getFormat('sysfs') returning SysFS instance >21:04:35,609 DEBUG blivet: NoDevice._setFormat: sysfs ; current: None ; type: sysfs ; >21:04:35,611 DEBUG blivet: ProcFS.supported: supported: False ; >21:04:35,611 DEBUG blivet: getFormat('proc') returning ProcFS instance >21:04:35,612 DEBUG blivet: NoDevice._setFormat: proc ; current: None ; type: proc ; >21:04:35,614 DEBUG blivet: SELinuxFS.supported: supported: False ; >21:04:35,614 DEBUG blivet: getFormat('selinuxfs') returning SELinuxFS instance >21:04:35,616 DEBUG blivet: NoDevice._setFormat: selinuxfs ; current: None ; type: selinuxfs ; >21:04:35,617 DEBUG blivet: USBFS.supported: supported: False ; >21:04:35,617 DEBUG blivet: getFormat('usbfs') returning USBFS instance >21:04:35,619 DEBUG blivet: NoDevice._setFormat: usbfs ; current: None ; type: usbfs ; >21:04:35,620 DEBUG blivet: BindFS.supported: supported: False ; >21:04:35,620 DEBUG blivet: getFormat('bind') returning BindFS instance >21:04:35,622 DEBUG blivet: DirectoryDevice._setFormat: /run ; current: None ; type: bind ; >21:04:35,623 DEBUG blivet: PartitionDevice.setup: sda1 ; status: True ; controllable: True ; orig: False ; >21:04:35,645 INFO blivet: set SELinux context for mountpoint /boot to system_u:object_r:boot_t:s0 >21:04:35,659 INFO blivet: set SELinux context for newly mounted filesystem root at /boot to system_u:object_r:boot_t:s0 >21:04:35,660 DEBUG blivet: DirectoryDevice.setup: /dev ; status: True ; controllable: True ; orig: False ; >21:04:35,677 INFO blivet: set SELinux context for mountpoint /dev to system_u:object_r:device_t:s0 >21:04:35,685 INFO blivet: set SELinux context for newly mounted filesystem root at /dev to system_u:object_r:device_t:s0 >21:04:35,687 DEBUG blivet: NoDevice.setup: devpts ; status: False ; controllable: True ; orig: False ; >21:04:35,688 INFO blivet: set SELinux context for mountpoint /dev/pts to system_u:object_r:devpts_t:s0 >21:04:35,697 INFO blivet: set SELinux context for newly mounted filesystem root at /dev/pts to system_u:object_r:devpts_t:s0 >21:04:35,698 DEBUG blivet: NoDevice.setup: tmpfs ; status: False ; controllable: True ; orig: False ; >21:04:35,699 INFO blivet: set SELinux context for mountpoint /dev/shm to system_u:object_r:tmpfs_t:s0 >21:04:35,708 INFO blivet: set SELinux context for newly mounted filesystem root at /dev/shm to system_u:object_r:tmpfs_t:s0 >21:04:35,709 DEBUG blivet: NoDevice.setup: proc ; status: False ; controllable: True ; orig: False ; >21:04:35,724 INFO blivet: failed to get default SELinux context for /proc: [Errno 2] No such file or directory >21:04:35,724 INFO blivet: set SELinux context for mountpoint /proc to None >21:04:35,732 INFO blivet: failed to get default SELinux context for /proc: [Errno 2] No such file or directory >21:04:35,733 INFO blivet: set SELinux context for newly mounted filesystem root at /proc to None >21:04:35,790 DEBUG blivet: DirectoryDevice.setup: /run ; status: True ; controllable: True ; orig: False ; >21:04:35,801 INFO blivet: set SELinux context for mountpoint /run to system_u:object_r:var_run_t:s0 >21:04:35,810 INFO blivet: set SELinux context for newly mounted filesystem root at /run to system_u:object_r:var_run_t:s0 >21:04:35,811 DEBUG blivet: NoDevice.setup: sysfs ; status: False ; controllable: True ; orig: False ; >21:04:35,821 INFO blivet: set SELinux context for mountpoint /sys to system_u:object_r:sysfs_t:s0 >21:04:35,830 INFO blivet: set SELinux context for newly mounted filesystem root at /sys to system_u:object_r:sysfs_t:s0 >21:04:35,832 DEBUG blivet: NoDevice.setup: selinuxfs ; status: False ; controllable: True ; orig: False ; >21:04:35,832 INFO blivet: set SELinux context for mountpoint /sys/fs/selinux to system_u:object_r:sysfs_t:s0 >21:04:35,841 INFO blivet: failed to set SELinux context for /mnt/sysimage/sys/fs/selinux: [Errno 95] Operation not supported >21:04:35,841 INFO blivet: set SELinux context for newly mounted filesystem root at /sys/fs/selinux to None > > >/tmp/ifcfg.log: > > >/proc/cmdline: >initrd=/images/link.idm.lab.eng.rdu2.redhat.com/initrd console=ttyS0,19200 ks=http://beaker.engineering.redhat.com/kickstart/620007 ksdevice=00:30:48:8B:FF:E5 rescue netboot_method=pxe BOOT_IMAGE=/images/link.idm.lab.eng.rdu2.redhat.com/kernel BOOTIF=01-00-30-48-8b-ff-e5 > > >/tmp/syslog: >21:04:27,009 INFO rsyslogd: [origin software="rsyslogd" swVersion="7.2.6" x-pid="768" x-info="http://www.rsyslog.com"] start >21:04:27,012 INFO kernel:[ 0.000000] Initializing cgroup subsys cpuset >21:04:27,012 INFO kernel:[ 0.000000] Initializing cgroup subsys cpu >21:04:27,012 NOTICE kernel:[ 0.000000] Linux version 3.9.5-301.fc19.x86_64 (mockbuild@bkernel01.phx2.fedoraproject.org) (gcc version 4.8.1 20130603 (Red Hat 4.8.1-1) (GCC) ) #1 SMP Tue Jun 11 19:39:38 UTC 2013 >21:04:27,012 INFO kernel:[ 0.000000] Command line: initrd=/images/link.idm.lab.eng.rdu2.redhat.com/initrd console=ttyS0,19200 ks=http://beaker.engineering.redhat.com/kickstart/620007 ksdevice=00:30:48:8B:FF:E5 rescue netboot_method=pxe BOOT_IMAGE=/images/link.idm.lab.eng.rdu2.redhat.com/kernel BOOTIF=01-00-30-48-8b-ff-e5 >21:04:27,012 INFO kernel:[ 0.000000] e820: BIOS-provided physical RAM map: >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cbff] usable >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x000000000009cc00-0x000000000009ffff] reserved >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000dfedffff] usable >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000dfee0000-0x00000000dfee8fff] ACPI data >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000dfee9000-0x00000000dfefffff] ACPI NVS >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000dff00000-0x00000000dfffffff] reserved >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved >21:04:27,012 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021fffffff] usable >21:04:27,012 INFO kernel:[ 0.000000] NX (Execute Disable) protection: active >21:04:27,012 INFO kernel:[ 0.000000] SMBIOS 2.6 present. >21:04:27,012 DEBUG kernel:[ 0.000000] DMI: Supermicro PDSMi/PDSMi+, BIOS 6.00 10/30/2006 >21:04:27,012 DEBUG kernel:[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved >21:04:27,012 DEBUG kernel:[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable >21:04:27,012 INFO kernel:[ 0.000000] No AGP bridge found >21:04:27,012 INFO kernel:[ 0.000000] e820: last_pfn = 0x220000 max_arch_pfn = 0x400000000 >21:04:27,012 DEBUG kernel:[ 0.000000] MTRR default type: uncachable >21:04:27,012 DEBUG kernel:[ 0.000000] MTRR fixed ranges enabled: >21:04:27,012 DEBUG kernel:[ 0.000000] 00000-9FFFF write-back >21:04:27,012 DEBUG kernel:[ 0.000000] A0000-BFFFF uncachable >21:04:27,012 DEBUG kernel:[ 0.000000] C0000-C7FFF write-protect >21:04:27,012 DEBUG kernel:[ 0.000000] C8000-DFFFF uncachable >21:04:27,012 DEBUG kernel:[ 0.000000] E0000-FFFFF write-protect >21:04:27,012 DEBUG kernel:[ 0.000000] MTRR variable ranges enabled: >21:04:27,012 DEBUG kernel:[ 0.000000] 0 base 0E0000000 mask FE0000000 uncachable >21:04:27,012 DEBUG kernel:[ 0.000000] 1 base 000000000 mask E00000000 write-back >21:04:27,012 DEBUG kernel:[ 0.000000] 2 base 200000000 mask FE0000000 write-back >21:04:27,012 DEBUG kernel:[ 0.000000] 3 base 0DFF00000 mask FFFF00000 uncachable >21:04:27,012 DEBUG kernel:[ 0.000000] 4 disabled >21:04:27,012 DEBUG kernel:[ 0.000000] 5 disabled >21:04:27,012 DEBUG kernel:[ 0.000000] 6 disabled >21:04:27,012 DEBUG kernel:[ 0.000000] 7 disabled >21:04:27,012 INFO kernel:[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 >21:04:27,012 DEBUG kernel:[ 0.000000] original variable MTRRs >21:04:27,012 DEBUG kernel:[ 0.000000] reg 0, base: 3584MB, range: 512MB, type UC >21:04:27,012 DEBUG kernel:[ 0.000000] reg 1, base: 0GB, range: 8GB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] reg 2, base: 8GB, range: 512MB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] reg 3, base: 3583MB, range: 1MB, type UC >21:04:27,012 INFO kernel:[ 0.000000] total RAM covered: 8191M >21:04:27,012 INFO kernel:[ 0.000000] Found optimal setting for mtrr clean up >21:04:27,012 INFO kernel:[ 0.000000] gran_size: 64K chunk_size: 2M num_reg: 6 lose cover RAM: 0G >21:04:27,012 DEBUG kernel:[ 0.000000] New variable MTRRs >21:04:27,012 DEBUG kernel:[ 0.000000] reg 0, base: 0GB, range: 2GB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] reg 1, base: 2GB, range: 1GB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] reg 2, base: 3GB, range: 512MB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] reg 3, base: 3583MB, range: 1MB, type UC >21:04:27,012 DEBUG kernel:[ 0.000000] reg 4, base: 4GB, range: 4GB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] reg 5, base: 8GB, range: 512MB, type WB >21:04:27,012 DEBUG kernel:[ 0.000000] e820: update [mem 0xdff00000-0xffffffff] usable ==> reserved >21:04:27,012 INFO kernel:[ 0.000000] e820: last_pfn = 0xdfee0 max_arch_pfn = 0x400000000 >21:04:27,012 INFO kernel:[ 0.000000] found SMP MP-table at [mem 0x000f5ed0-0x000f5edf] mapped at [ffff8800000f5ed0] >21:04:27,012 DEBUG kernel:[ 0.000000] Base memory trampoline at [ffff880000096000] 96000 size 24576 >21:04:27,012 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x00000000-0x000fffff] page 4k >21:04:27,012 DEBUG kernel:[ 0.000000] BRK [0x01fc4000, 0x01fc4fff] PGTABLE >21:04:27,012 DEBUG kernel:[ 0.000000] BRK [0x01fc5000, 0x01fc5fff] PGTABLE >21:04:27,012 DEBUG kernel:[ 0.000000] BRK [0x01fc6000, 0x01fc6fff] PGTABLE >21:04:27,012 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x21fe00000-0x21fffffff] >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x21fe00000-0x21fffffff] page 2M >21:04:27,012 DEBUG kernel:[ 0.000000] BRK [0x01fc7000, 0x01fc7fff] PGTABLE >21:04:27,012 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x21c000000-0x21fdfffff] >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x21c000000-0x21fdfffff] page 2M >21:04:27,012 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x200000000-0x21bffffff] >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x200000000-0x21bffffff] page 2M >21:04:27,012 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x00100000-0xdfedffff] >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x00100000-0x001fffff] page 4k >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x00200000-0xdfdfffff] page 2M >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0xdfe00000-0xdfedffff] page 4k >21:04:27,012 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff] >21:04:27,012 DEBUG kernel:[ 0.000000] [mem 0x100000000-0x1ffffffff] page 2M >21:04:27,012 DEBUG kernel:[ 0.000000] BRK [0x01fc8000, 0x01fc8fff] PGTABLE >21:04:27,012 INFO kernel:[ 0.000000] RAMDISK: [mem 0x7e0b0000-0x7fffffff] >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: RSDP 00000000000f5e50 00014 (v00 PTLTD ) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: RSDT 00000000dfee216e 0003C (v01 PTLTD RSDT 06040000 LTP 00000000) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: FACP 00000000dfee8e51 00074 (v01 INTEL 06040000 PTL 00000003) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: DSDT 00000000dfee39dc 05475 (v01 INTEL GLENWOOD 06040000 MSFT 0100000E) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: FACS 00000000dfee9fc0 00040 >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: MCFG 00000000dfee8ec5 0003C (v01 PTLTD MCFG 06040000 LTP 00000000) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: APIC 00000000dfee8f01 00074 (v01 PTLTD ? APIC 06040000 LTP 00000000) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: BOOT 00000000dfee8f75 00028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: ASF! 00000000dfee8f9d 00063 (v32 CETP CETP 06040000 PTL 00000001) >21:04:27,012 WARNING kernel:[ 0.000000] ACPI: SSDT 00000000dfee21aa 013EC (v01 PmRef CpuPm 00003000 INTL 20050228) >21:04:27,012 DEBUG kernel:[ 0.000000] ACPI: Local APIC address 0xfee00000 >21:04:27,012 INFO kernel:[ 0.000000] No NUMA configuration found >21:04:27,012 INFO kernel:[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000021fffffff] >21:04:27,012 INFO kernel:[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x21fffffff] >21:04:27,012 INFO kernel:[ 0.000000] NODE_DATA [mem 0x21ffe5000-0x21fff8fff] >21:04:27,012 DEBUG kernel:[ 0.000000] [ffffea0000000000-ffffea00087fffff] PMD -> [ffff880217600000-ffff88021f5fffff] on node 0 >21:04:27,012 WARNING kernel:[ 0.000000] Zone ranges: >21:04:27,012 WARNING kernel:[ 0.000000] DMA [mem 0x00001000-0x00ffffff] >21:04:27,012 WARNING kernel:[ 0.000000] DMA32 [mem 0x01000000-0xffffffff] >21:04:27,012 WARNING kernel:[ 0.000000] Normal [mem 0x100000000-0x21fffffff] >21:04:27,012 WARNING kernel:[ 0.000000] Movable zone start for each node >21:04:27,012 WARNING kernel:[ 0.000000] Early memory node ranges >21:04:27,012 WARNING kernel:[ 0.000000] node 0: [mem 0x00001000-0x0009bfff] >21:04:27,012 WARNING kernel:[ 0.000000] node 0: [mem 0x00100000-0xdfedffff] >21:04:27,012 WARNING kernel:[ 0.000000] node 0: [mem 0x100000000-0x21fffffff] >21:04:27,012 DEBUG kernel:[ 0.000000] On node 0 totalpages: 2096763 >21:04:27,012 DEBUG kernel:[ 0.000000] DMA zone: 64 pages used for memmap >21:04:27,012 DEBUG kernel:[ 0.000000] DMA zone: 21 pages reserved >21:04:27,012 DEBUG kernel:[ 0.000000] DMA zone: 3995 pages, LIFO batch:0 >21:04:27,012 DEBUG kernel:[ 0.000000] DMA32 zone: 14268 pages used for memmap >21:04:27,012 DEBUG kernel:[ 0.000000] DMA32 zone: 913120 pages, LIFO batch:31 >21:04:27,012 DEBUG kernel:[ 0.000000] Normal zone: 18432 pages used for memmap >21:04:27,012 DEBUG kernel:[ 0.000000] Normal zone: 1179648 pages, LIFO batch:31 >21:04:27,012 INFO kernel:[ 0.000000] ACPI: PM-Timer IO Port: 0x1008 >21:04:27,012 DEBUG kernel:[ 0.000000] ACPI: Local APIC address 0xfee00000 >21:04:27,012 INFO kernel:[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) >21:04:27,012 INFO kernel:[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled) >21:04:27,012 INFO kernel:[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1]) >21:04:27,012 INFO kernel:[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) >21:04:27,012 INFO kernel:[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) >21:04:27,012 INFO kernel:[ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23 >21:04:27,012 INFO kernel:[ 0.000000] ACPI: IOAPIC (id[0x03] address[0xfec10000] gsi_base[24]) >21:04:27,012 INFO kernel:[ 0.000000] IOAPIC[1]: apic_id 3, version 32, address 0xfec10000, GSI 24-47 >21:04:27,012 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge) >21:04:27,012 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) >21:04:27,012 DEBUG kernel:[ 0.000000] ACPI: IRQ0 used by override. >21:04:27,012 DEBUG kernel:[ 0.000000] ACPI: IRQ2 used by override. >21:04:27,012 DEBUG kernel:[ 0.000000] ACPI: IRQ9 used by override. >21:04:27,012 INFO kernel:[ 0.000000] Using ACPI (MADT) for SMP configuration information >21:04:27,012 INFO kernel:[ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs >21:04:27,012 DEBUG kernel:[ 0.000000] nr_irqs_gsi: 64 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 000000000009c000 - 000000000009d000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 00000000000a0000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e4000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000dfee0000 - 00000000dfee9000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000dfee9000 - 00000000dff00000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000e0000000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000fec00000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec10000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000fec10000 - 00000000fee00000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ff000000 >21:04:27,012 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000ff000000 - 0000000100000000 >21:04:27,012 INFO kernel:[ 0.000000] e820: [mem 0xe0000000-0xfebfffff] available for PCI devices >21:04:27,012 INFO kernel:[ 0.000000] Booting paravirtualized kernel on bare hardware >21:04:27,012 INFO kernel:[ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:2 nr_node_ids:1 >21:04:27,012 INFO kernel:[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88021fc00000 s85120 r8192 d21376 u1048576 >21:04:27,012 DEBUG kernel:[ 0.000000] pcpu-alloc: s85120 r8192 d21376 u1048576 alloc=1*2097152 >21:04:27,012 DEBUG kernel:[ 0.000000] pcpu-alloc: [0] 0 1 >21:04:27,012 WARNING kernel:[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2063978 >21:04:27,012 WARNING kernel:[ 0.000000] Policy zone: Normal >21:04:27,012 NOTICE kernel:[ 0.000000] Kernel command line: initrd=/images/link.idm.lab.eng.rdu2.redhat.com/initrd console=ttyS0,19200 ks=http://beaker.engineering.redhat.com/kickstart/620007 ksdevice=00:30:48:8B:FF:E5 rescue netboot_method=pxe BOOT_IMAGE=/images/link.idm.lab.eng.rdu2.redhat.com/kernel BOOTIF=01-00-30-48-8b-ff-e5 >21:04:27,012 INFO kernel:[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) >21:04:27,012 NOTICE kernel:[ 0.000000] __ex_table already sorted, skipping sort >21:04:27,012 INFO kernel:[ 0.000000] Checking aperture... >21:04:27,012 INFO kernel:[ 0.000000] No AGP bridge found >21:04:27,012 INFO kernel:[ 0.000000] Memory: 8141132k/8912896k available (6473k kernel code, 525844k absent, 245920k reserved, 6764k data, 1352k init) >21:04:27,012 INFO kernel:[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 >21:04:27,012 INFO kernel:[ 0.000000] Hierarchical RCU implementation. >21:04:27,012 INFO kernel:[ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=2. >21:04:27,012 INFO kernel:[ 0.000000] NR_IRQS:8448 nr_irqs:512 16 >21:04:27,012 INFO kernel:[ 0.000000] Console: colour VGA+ 80x25 >21:04:27,012 INFO kernel:[ 0.000000] console [ttyS0] enabled >21:04:27,012 INFO kernel:[ 0.000000] allocated 33554432 bytes of page_cgroup >21:04:27,012 INFO kernel:[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups >21:04:27,012 INFO kernel:[ 0.000000] tsc: Fast TSC calibration using PIT >21:04:27,012 INFO kernel:[ 0.000000] tsc: Detected 2393.843 MHz processor >21:04:27,012 INFO kernel:[ 0.003004] Calibrating delay loop (skipped), value calculated using timer frequency.. 4787.68 BogoMIPS (lpj=2393843) >21:04:27,012 INFO kernel:[ 0.005003] pid_max: default: 32768 minimum: 301 >21:04:27,012 INFO kernel:[ 0.006040] Security Framework initialized >21:04:27,012 INFO kernel:[ 0.007014] SELinux: Initializing. >21:04:27,012 DEBUG kernel:[ 0.008012] SELinux: Starting in permissive mode >21:04:27,012 INFO kernel:[ 0.009443] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes) >21:04:27,012 INFO kernel:[ 0.016101] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes) >21:04:27,012 INFO kernel:[ 0.020628] Mount-cache hash table entries: 256 >21:04:27,012 INFO kernel:[ 0.022050] Initializing cgroup subsys cpuacct >21:04:27,012 INFO systemd: systemd 204 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ) >21:04:27,012 INFO systemd: Initializing machine ID from random generator. >21:04:27,012 ERR systemd: /usr/lib/systemd/system-generators/lvm2-activation-generator exited with exit status 127. >21:04:27,012 WARNING systemd: Cannot add dependency job for unit lvm2-monitor.service, ignoring: Unit dm-event.socket failed to load: No such file or directory. See system logs and 'systemctl status dm-event.socket' for details. >21:04:27,012 INFO systemd: Started Remount Root and Kernel File Systems. >21:04:27,012 INFO systemd: Starting Import network configuration from initramfs... >21:04:27,012 INFO systemd: Starting Configure read-only root support... >21:04:27,012 INFO systemd: Started Apply Kernel Variables. >21:04:27,012 INFO systemd: Mounted Huge Pages File System. >21:04:27,012 INFO systemd: Mounted Temporary Directory. >21:04:27,012 INFO systemd: Mounted POSIX Message Queue File System. >21:04:27,012 INFO kernel:[ 0.023004] Initializing cgroup subsys memory >21:04:27,012 INFO kernel:[ 0.024020] Initializing cgroup subsys devices >21:04:27,012 INFO kernel:[ 0.025003] Initializing cgroup subsys freezer >21:04:27,012 INFO kernel:[ 0.026003] Initializing cgroup subsys net_cls >21:04:27,012 INFO kernel:[ 0.027003] Initializing cgroup subsys blkio >21:04:27,012 INFO kernel:[ 0.028003] Initializing cgroup subsys perf_event >21:04:27,012 INFO kernel:[ 0.029040] CPU: Physical Processor ID: 0 >21:04:27,012 INFO kernel:[ 0.030003] CPU: Processor Core ID: 0 >21:04:27,012 INFO kernel:[ 0.031003] mce: CPU supports 6 MCE banks >21:04:27,012 DEBUG kernel:[ 0.032008] CPU0: Thermal monitoring handled by SMI >21:04:27,012 INFO kernel:[ 0.032018] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4 >21:04:27,012 INFO kernel:[ 0.032018] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32 >21:04:27,012 INFO kernel:[ 0.032018] tlb_flushall_shift: -1 >21:04:27,012 INFO kernel:[ 0.033084] Freeing SMP alternatives: 24k freed >21:04:27,012 INFO kernel:[ 0.036157] ACPI: Core revision 20130117 >21:04:27,012 WARNING kernel:[ 0.039232] ACPI: All ACPI Tables successfully acquired >21:04:27,012 INFO kernel:[ 0.042200] ftrace: allocating 24409 entries in 96 pages >21:04:27,012 INFO kernel:[ 0.050593] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 >21:04:27,012 INFO kernel:[ 0.061027] smpboot: CPU0: Intel(R) Xeon(R) CPU 3060 @ 2.40GHz (fam: 06, model: 0f, stepping: 06) >21:04:27,012 INFO kernel:[ 0.066000] Performance Events: PEBS fmt0-, 4-deep LBR, Core2 events, Intel PMU driver. >21:04:27,012 WARNING kernel:[ 0.070001] perf_event_intel: PEBS disabled due to CPU errata >21:04:27,012 INFO kernel:[ 0.071003] ... version: 2 >21:04:27,012 INFO kernel:[ 0.072001] ... bit width: 40 >21:04:27,012 INFO kernel:[ 0.073001] ... generic registers: 2 >21:04:27,012 INFO kernel:[ 0.074001] ... value mask: 000000ffffffffff >21:04:27,012 INFO kernel:[ 0.075001] ... max period: 000000007fffffff >21:04:27,012 INFO kernel:[ 0.076001] ... fixed-purpose events: 3 >21:04:27,012 INFO kernel:[ 0.077001] ... event mask: 0000000700000003 >21:04:27,012 INFO kernel:[ 0.080042] smpboot: Booting Node 0, Processors #1 OK >21:04:27,012 DEBUG kernel:[ 0.004000] CPU1: Thermal monitoring handled by SMI >21:04:27,012 INFO kernel:[ 0.095027] Brought up 2 CPUs >21:04:27,012 INFO kernel:[ 0.096002] smpboot: Total of 2 processors activated (9575.37 BogoMIPS) >21:04:27,012 INFO kernel:[ 0.097083] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter. >21:04:27,012 INFO kernel:[ 0.099092] devtmpfs: initialized >21:04:27,012 INFO kernel:[ 0.100177] PM: Registering ACPI NVS region [mem 0xdfee9000-0xdfefffff] (94208 bytes) >21:04:27,012 INFO kernel:[ 0.147733] atomic64 test passed for x86-64 platform with CX8 and with SSE >21:04:27,012 INFO kernel:[ 0.189026] RTC time: 21:03:47, date: 01/31/14 >21:04:27,012 INFO kernel:[ 0.215025] NET: Registered protocol family 16 >21:04:27,012 INFO kernel:[ 0.242154] ACPI: bus type PCI registered >21:04:27,012 INFO kernel:[ 0.266057] PCI: MMCONFIG for domain 0000 [bus 00-0e] at [mem 0xf0000000-0xf0efffff] (base 0xf0000000) >21:04:27,012 INFO kernel:[ 0.322003] PCI: not using MMCONFIG >21:04:27,012 INFO kernel:[ 0.343002] PCI: Using configuration type 1 for base access >21:04:27,012 INFO kernel:[ 0.377032] bio: create slab <bio-0> at 0 >21:04:27,012 INFO kernel:[ 0.401034] ACPI: Added _OSI(Module Device) >21:04:27,012 INFO kernel:[ 0.402002] ACPI: Added _OSI(Processor Device) >21:04:27,012 INFO kernel:[ 0.403002] ACPI: Added _OSI(3.0 _SCP Extensions) >21:04:27,012 INFO kernel:[ 0.404002] ACPI: Added _OSI(Processor Aggregator Device) >21:04:27,012 DEBUG kernel:[ 0.406391] ACPI: EC: Look up EC in DSDT >21:04:27,012 WARNING kernel:[ 0.407774] ACPI: SSDT 00000000dfee3596 0017C (v01 PmRef Cpu0Ist 00003000 INTL 20050228) >21:04:27,012 WARNING kernel:[ 0.410148] ACPI: Dynamic OEM Table Load: >21:04:27,012 WARNING kernel:[ 0.413001] ACPI: SSDT (null) 0017C (v01 PmRef Cpu0Ist 00003000 INTL 20050228) >21:04:27,012 WARNING kernel:[ 0.416171] ACPI: SSDT 00000000dfee3712 00066 (v01 PmRef Cpu1Ist 00003000 INTL 20050228) >21:04:27,012 WARNING kernel:[ 0.420100] ACPI: Dynamic OEM Table Load: >21:04:27,012 WARNING kernel:[ 0.423001] ACPI: SSDT (null) 00066 (v01 PmRef Cpu1Ist 00003000 INTL 20050228) >21:04:27,012 INFO kernel:[ 0.426182] ACPI: Interpreter enabled >21:04:27,012 WARNING kernel:[ 0.427007] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568) >21:04:27,012 WARNING kernel:[ 0.430002] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20130117/hwxface-568) >21:04:27,012 INFO kernel:[ 0.433006] ACPI: (supports S0 S1 S4 S5) >21:04:27,012 INFO kernel:[ 0.434001] ACPI: Using IOAPIC for interrupt routing >21:04:27,012 INFO kernel:[ 0.435015] PCI: MMCONFIG for domain 0000 [bus 00-0e] at [mem 0xf0000000-0xf0efffff] (base 0xf0000000) >21:04:27,012 INFO kernel:[ 0.436427] PCI: MMCONFIG at [mem 0xf0000000-0xf0efffff] reserved in ACPI motherboard resources >21:04:27,012 INFO kernel:[ 0.439050] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug >21:04:27,012 INFO kernel:[ 0.444266] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) >21:04:27,012 DEBUG kernel:[ 0.446108] acpi PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446111] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446114] acpi PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446116] acpi PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446118] acpi PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446120] acpi PNP0A03:00: host bridge window [mem 0x000dc000-0x000dffff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446122] acpi PNP0A03:00: host bridge window [mem 0x000e0000-0x000e3fff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446125] acpi PNP0A03:00: host bridge window [mem 0xe0000000-0xefffffff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446127] acpi PNP0A03:00: host bridge window [io 0x0d00-0xfdff] (ignored) >21:04:27,012 DEBUG kernel:[ 0.446129] PCI: root bus 00: using default resources >21:04:27,012 INFO kernel:[ 0.446132] acpi PNP0A03:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-0e] only partially covers this bridge >21:04:27,012 INFO kernel:[ 0.447027] PCI host bridge to bus 0000:00 >21:04:27,012 INFO kernel:[ 0.448003] pci_bus 0000:00: root bus resource [bus 00-ff] >21:04:27,012 INFO kernel:[ 0.449002] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] >21:04:27,012 INFO kernel:[ 0.450002] pci_bus 0000:00: root bus resource [mem 0x00000000-0xfffffffff] >21:04:27,012 DEBUG kernel:[ 0.451010] pci 0000:00:00.0: [8086:2778] type 00 class 0x060000 >21:04:27,012 DEBUG kernel:[ 0.451095] pci 0000:00:01.0: [8086:2779] type 01 class 0x060400 >21:04:27,012 DEBUG kernel:[ 0.451134] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold >21:04:27,012 INFO kernel:[ 0.451165] pci 0000:00:01.0: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.452061] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400 >21:04:27,012 DEBUG kernel:[ 0.452126] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold >21:04:27,012 INFO kernel:[ 0.452165] pci 0000:00:1c.0: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.453042] pci 0000:00:1c.4: [8086:27e0] type 01 class 0x060400 >21:04:27,012 DEBUG kernel:[ 0.453107] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold >21:04:27,012 INFO kernel:[ 0.453144] pci 0000:00:1c.4: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.454037] pci 0000:00:1c.5: [8086:27e2] type 01 class 0x060400 >21:04:27,012 DEBUG kernel:[ 0.454102] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold >21:04:27,012 INFO kernel:[ 0.454141] pci 0000:00:1c.5: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.455043] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300 >21:04:27,012 DEBUG kernel:[ 0.455081] pci 0000:00:1d.0: reg 20: [io 0x3000-0x301f] >21:04:27,012 INFO kernel:[ 0.455137] pci 0000:00:1d.0: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.456034] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300 >21:04:27,012 DEBUG kernel:[ 0.456071] pci 0000:00:1d.1: reg 20: [io 0x3020-0x303f] >21:04:27,012 INFO kernel:[ 0.456128] pci 0000:00:1d.1: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.457036] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300 >21:04:27,012 DEBUG kernel:[ 0.457074] pci 0000:00:1d.2: reg 20: [io 0x3040-0x305f] >21:04:27,012 INFO kernel:[ 0.457132] pci 0000:00:1d.2: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.458033] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300 >21:04:27,012 DEBUG kernel:[ 0.458071] pci 0000:00:1d.3: reg 20: [io 0x3060-0x307f] >21:04:27,012 INFO kernel:[ 0.458129] pci 0000:00:1d.3: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.459042] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320 >21:04:27,012 DEBUG kernel:[ 0.459061] pci 0000:00:1d.7: reg 10: [mem 0xe0000000-0xe00003ff] >21:04:27,012 DEBUG kernel:[ 0.459138] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold >21:04:27,012 INFO kernel:[ 0.459174] pci 0000:00:1d.7: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.460035] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 >21:04:27,012 INFO kernel:[ 0.460099] pci 0000:00:1e.0: System wakeup disabled by ACPI >21:04:27,012 DEBUG kernel:[ 0.461040] pci 0000:00:1f.0: [8086:27b8] type 00 class 0x060100 >21:04:27,012 DEBUG kernel:[ 0.461117] pci 0000:00:1f.0: Force enabled HPET at 0xfed00000 >21:04:27,012 INFO kernel:[ 0.461124] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO >21:04:27,012 INFO kernel:[ 0.462005] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH6 GPIO >21:04:27,012 INFO kernel:[ 0.463003] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0290 (mask 0097) >21:04:27,012 INFO kernel:[ 0.464004] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca8 (mask 00af) >21:04:27,012 DEBUG kernel:[ 0.465073] pci 0000:00:1f.1: [8086:27df] type 00 class 0x01018a >21:04:27,013 DEBUG kernel:[ 0.465085] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007] >21:04:27,013 DEBUG kernel:[ 0.465094] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003] >21:04:27,013 DEBUG kernel:[ 0.465103] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007] >21:04:27,013 DEBUG kernel:[ 0.465112] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003] >21:04:27,013 DEBUG kernel:[ 0.465121] pci 0000:00:1f.1: reg 20: [io 0x30a0-0x30af] >21:04:27,013 DEBUG kernel:[ 0.465189] pci 0000:00:1f.2: [8086:27c1] type 00 class 0x010601 >21:04:27,013 DEBUG kernel:[ 0.465204] pci 0000:00:1f.2: reg 10: [io 0x30e8-0x30ef] >21:04:27,013 DEBUG kernel:[ 0.465212] pci 0000:00:1f.2: reg 14: [io 0x30dc-0x30df] >21:04:27,013 DEBUG kernel:[ 0.465219] pci 0000:00:1f.2: reg 18: [io 0x30e0-0x30e7] >21:04:27,013 DEBUG kernel:[ 0.465227] pci 0000:00:1f.2: reg 1c: [io 0x30d8-0x30db] >21:04:27,013 DEBUG kernel:[ 0.465235] pci 0000:00:1f.2: reg 20: [io 0x30b0-0x30bf] >21:04:27,013 DEBUG kernel:[ 0.465243] pci 0000:00:1f.2: reg 24: [mem 0xe0000400-0xe00007ff] >21:04:27,013 DEBUG kernel:[ 0.465277] pci 0000:00:1f.2: PME# supported from D3hot >21:04:27,013 DEBUG kernel:[ 0.465333] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500 >21:04:27,013 DEBUG kernel:[ 0.465381] pci 0000:00:1f.3: reg 20: [io 0x1100-0x111f] >21:04:27,013 INFO kernel:[ 0.465485] pci 0000:00:01.0: PCI bridge to [bus 01] >21:04:27,013 DEBUG kernel:[ 0.466066] pci 0000:09:00.0: [8086:032c] type 01 class 0x060400 >21:04:27,013 WARNING kernel:[ 0.466088] pci 0000:09:00.0: PXH quirk detected; SHPC device MSI disabled >21:04:27,013 DEBUG kernel:[ 0.467080] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold >21:04:27,013 INFO kernel:[ 0.467111] pci 0000:09:00.0: System wakeup disabled by ACPI >21:04:27,013 DEBUG kernel:[ 0.468038] pci 0000:09:00.1: [8086:0326] type 00 class 0x080020 >21:04:27,013 DEBUG kernel:[ 0.468051] pci 0000:09:00.1: reg 10: [mem 0xe0100000-0xe0100fff] >21:04:27,013 INFO kernel:[ 0.468174] pci 0000:09:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' >21:04:27,013 INFO kernel:[ 0.469008] pci 0000:00:1c.0: PCI bridge to [bus 09-0a] >21:04:27,013 DEBUG kernel:[ 0.470005] pci 0000:00:1c.0: bridge window [mem 0xe0100000-0xe01fffff] >21:04:27,013 INFO kernel:[ 0.470102] pci 0000:09:00.0: PCI bridge to [bus 0a] >21:04:27,013 DEBUG kernel:[ 0.471096] pci 0000:0d:00.0: [8086:108c] type 00 class 0x020000 >21:04:27,013 DEBUG kernel:[ 0.471120] pci 0000:0d:00.0: reg 10: [mem 0xe0200000-0xe021ffff] >21:04:27,013 DEBUG kernel:[ 0.471152] pci 0000:0d:00.0: reg 18: [io 0x4000-0x401f] >21:04:27,013 DEBUG kernel:[ 0.472109] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold >21:04:27,013 INFO kernel:[ 0.472166] pci 0000:0d:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' >21:04:27,013 INFO kernel:[ 0.473011] pci 0000:00:1c.4: PCI bridge to [bus 0d] >21:04:27,013 DEBUG kernel:[ 0.474004] pci 0000:00:1c.4: bridge window [io 0x4000-0x4fff] >21:04:27,013 DEBUG kernel:[ 0.474008] pci 0000:00:1c.4: bridge window [mem 0xe0200000-0xe02fffff] >21:04:27,013 DEBUG kernel:[ 0.474090] pci 0000:0e:00.0: [8086:109a] type 00 class 0x020000 >21:04:27,013 DEBUG kernel:[ 0.474113] pci 0000:0e:00.0: reg 10: [mem 0xe0300000-0xe031ffff] >21:04:27,013 DEBUG kernel:[ 0.474146] pci 0000:0e:00.0: reg 18: [io 0x5000-0x501f] >21:04:27,013 DEBUG kernel:[ 0.475083] pci 0000:0e:00.0: PME# supported from D0 D3hot D3cold >21:04:27,013 INFO kernel:[ 0.475141] pci 0000:0e:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force' >21:04:27,013 INFO kernel:[ 0.476013] pci 0000:00:1c.5: PCI bridge to [bus 0e] >21:04:27,013 DEBUG kernel:[ 0.477004] pci 0000:00:1c.5: bridge window [io 0x5000-0x5fff] >21:04:27,013 DEBUG kernel:[ 0.477007] pci 0000:00:1c.5: bridge window [mem 0xe0300000-0xe03fffff] >21:04:27,013 DEBUG kernel:[ 0.477052] pci 0000:0f:00.0: [1002:515e] type 00 class 0x030000 >21:04:27,013 DEBUG kernel:[ 0.477070] pci 0000:0f:00.0: reg 10: [mem 0xe8000000-0xefffffff pref] >21:04:27,013 DEBUG kernel:[ 0.477079] pci 0000:0f:00.0: reg 14: [io 0x6000-0x60ff] >21:04:27,013 DEBUG kernel:[ 0.477089] pci 0000:0f:00.0: reg 18: [mem 0xe0400000-0xe040ffff] >21:04:27,013 DEBUG kernel:[ 0.477122] pci 0000:0f:00.0: reg 30: [mem 0x00000000-0x0001ffff pref] >21:04:27,013 DEBUG kernel:[ 0.477150] pci 0000:0f:00.0: supports D1 D2 >21:04:27,013 INFO kernel:[ 0.477217] pci 0000:00:1e.0: PCI bridge to [bus 0f] (subtractive decode) >21:04:27,013 DEBUG kernel:[ 0.478004] pci 0000:00:1e.0: bridge window [io 0x6000-0x6fff] >21:04:27,013 DEBUG kernel:[ 0.478008] pci 0000:00:1e.0: bridge window [mem 0xe0400000-0xe04fffff] >21:04:27,013 DEBUG kernel:[ 0.478013] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff 64bit pref] >21:04:27,013 DEBUG kernel:[ 0.478016] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode) >21:04:27,013 DEBUG kernel:[ 0.478018] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xfffffffff] (subtractive decode) >21:04:27,013 INFO kernel:[ 0.478038] acpi PNP0A03:00: ACPI _OSC support notification failed, disabling PCIe ASPM >21:04:27,013 INFO kernel:[ 0.479002] acpi PNP0A03:00: Unable to request _OSC control (_OSC support mask: 0x08) >21:04:27,013 INFO kernel:[ 0.480164] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 10 11 14 15) *7 >21:04:27,013 INFO kernel:[ 0.488048] ACPI: PCI Interrupt Link [LNKB] (IRQs *3 10 11 14 15) >21:04:27,013 INFO kernel:[ 0.496046] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 10 11 14 15) *5 >21:04:27,013 INFO kernel:[ 0.504046] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 10 *11 14 15) >21:04:27,013 INFO kernel:[ 0.512049] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 10 11 14 15) *0, disabled. >21:04:27,013 INFO kernel:[ 0.522049] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 10 11 14 15) *0, disabled. >21:04:27,013 INFO kernel:[ 0.532048] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 10 11 14 15) *0, disabled. >21:04:27,013 INFO kernel:[ 0.542048] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 *10 11 14 15) >21:04:27,013 DEBUG kernel:[ 0.550352] acpi root: \_SB_.PCI0 notify handler is installed >21:04:27,013 DEBUG kernel:[ 0.550380] Found 1 acpi root devices >21:04:27,013 INFO kernel:[ 0.550456] ACPI: No dock devices found. >21:04:27,013 INFO kernel:[ 0.551041] vgaarb: device added: PCI:0000:0f:00.0,decodes=io+mem,owns=io+mem,locks=none >21:04:27,013 INFO kernel:[ 0.552002] vgaarb: loaded >21:04:27,013 INFO kernel:[ 0.553001] vgaarb: bridge control possible 0000:0f:00.0 >21:04:27,013 NOTICE kernel:[ 0.554077] SCSI subsystem initialized >21:04:27,013 INFO kernel:[ 0.555003] ACPI: bus type ATA registered >21:04:27,013 DEBUG kernel:[ 0.556015] libata version 3.00 loaded. >21:04:27,013 INFO kernel:[ 0.556040] ACPI: bus type USB registered >21:04:27,013 INFO kernel:[ 0.580019] usbcore: registered new interface driver usbfs >21:04:27,013 INFO kernel:[ 0.613009] usbcore: registered new interface driver hub >21:04:27,013 INFO kernel:[ 0.645013] usbcore: registered new device driver usb >21:04:27,013 INFO kernel:[ 0.646038] PCI: Using ACPI for IRQ routing >21:04:27,013 DEBUG kernel:[ 0.671207] PCI: pci_cache_line_size set to 64 bytes >21:04:27,013 DEBUG kernel:[ 0.671260] e820: reserve RAM buffer [mem 0x0009cc00-0x0009ffff] >21:04:27,013 DEBUG kernel:[ 0.671262] e820: reserve RAM buffer [mem 0xdfee0000-0xdfffffff] >21:04:27,013 INFO kernel:[ 0.671354] NetLabel: Initializing >21:04:27,013 INFO kernel:[ 0.692002] NetLabel: domain hash size = 128 >21:04:27,013 INFO kernel:[ 0.718001] NetLabel: protocols = UNLABELED CIPSOv4 >21:04:27,013 INFO kernel:[ 0.747012] NetLabel: unlabeled traffic allowed by default >21:04:27,013 DEBUG kernel:[ 0.781134] hpet clockevent registered >21:04:27,013 INFO kernel:[ 0.781137] HPET: 3 timers in total, 0 timers will be used for per-cpu timer >21:04:27,013 INFO kernel:[ 0.823004] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 >21:04:27,013 INFO kernel:[ 0.853002] hpet0: 3 comparators, 64-bit 14.318180 MHz counter >21:04:27,013 INFO kernel:[ 0.889014] Switching to clocksource hpet >21:04:27,013 INFO kernel:[ 0.897421] pnp: PnP ACPI init >21:04:27,013 INFO kernel:[ 0.915704] ACPI: bus type PNP registered >21:04:27,013 INFO kernel:[ 0.939906] system 00:00: [io 0x0295-0x0296] has been reserved >21:04:27,013 INFO kernel:[ 0.975335] system 00:00: [io 0x0800-0x083f] has been reserved >21:04:27,013 INFO kernel:[ 1.010746] system 00:00: [io 0x0900-0x090f] has been reserved >21:04:27,013 INFO kernel:[ 1.046158] system 00:00: [io 0x1000-0x107f] has been reserved >21:04:27,013 INFO kernel:[ 1.081572] system 00:00: [io 0x1180-0x11bf] has been reserved >21:04:27,013 INFO kernel:[ 1.116991] system 00:00: [io 0x04d0-0x04d1] has been reserved >21:04:27,013 INFO kernel:[ 1.152450] system 00:00: [io 0xfe00] has been reserved >21:04:27,013 INFO kernel:[ 1.184223] system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved >21:04:27,013 INFO kernel:[ 1.223798] system 00:00: [mem 0xfed13000-0xfed13fff] has been reserved >21:04:27,013 INFO kernel:[ 1.263368] system 00:00: [mem 0xfed18000-0xfed1bfff] has been reserved >21:04:27,013 INFO kernel:[ 1.302943] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved >21:04:27,013 INFO kernel:[ 1.342516] system 00:00: [mem 0xfed20000-0xfed8ffff] has been reserved >21:04:27,013 INFO kernel:[ 1.382090] system 00:00: [mem 0xfef00000-0xfeffffff] has been reserved >21:04:27,013 DEBUG kernel:[ 1.421664] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active) >21:04:27,013 DEBUG kernel:[ 1.421675] pnp 00:01: [dma 4] >21:04:27,013 DEBUG kernel:[ 1.421694] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active) >21:04:27,013 DEBUG kernel:[ 1.421733] pnp 00:02: Plug and Play ACPI device, IDs PNP0c04 (active) >21:04:27,013 DEBUG kernel:[ 1.421775] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) >21:04:27,013 DEBUG kernel:[ 1.421803] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active) >21:04:27,013 DEBUG kernel:[ 1.421940] pnp 00:05: Plug and Play ACPI device, IDs INT0800 (active) >21:04:27,013 DEBUG kernel:[ 1.421980] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 PNP030b (active) >21:04:27,013 DEBUG kernel:[ 1.422022] pnp 00:07: Plug and Play ACPI device, IDs PNP0f13 (active) >21:04:27,013 DEBUG kernel:[ 1.422218] pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active) >21:04:27,013 INFO kernel:[ 1.422397] pnp: PnP ACPI: found 9 devices >21:04:27,013 INFO kernel:[ 1.446937] ACPI: bus type PNP unregistered >21:04:27,013 DEBUG kernel:[ 1.478790] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 09-0a] add_size 1000 >21:04:27,013 DEBUG kernel:[ 1.478794] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 09-0a] add_size 200000 >21:04:27,013 DEBUG kernel:[ 1.478802] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0d] add_size 200000 >21:04:27,013 DEBUG kernel:[ 1.478811] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0e] add_size 200000 >21:04:27,013 DEBUG kernel:[ 1.478823] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000 >21:04:27,013 DEBUG kernel:[ 1.478826] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000 >21:04:27,013 DEBUG kernel:[ 1.478828] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000 >21:04:27,013 DEBUG kernel:[ 1.478831] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000 >21:04:27,013 INFO kernel:[ 1.478836] pci 0000:00:1c.0: BAR 15: assigned [mem 0xe0500000-0xe06fffff 64bit pref] >21:04:27,013 INFO kernel:[ 1.525721] pci 0000:00:1c.4: BAR 15: assigned [mem 0xe0700000-0xe08fffff 64bit pref] >21:04:27,013 INFO kernel:[ 1.572572] pci 0000:00:1c.5: BAR 15: assigned [mem 0xe0900000-0xe0afffff 64bit pref] >21:04:27,013 INFO kernel:[ 1.619427] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff] >21:04:27,013 INFO kernel:[ 1.656398] pci 0000:00:01.0: PCI bridge to [bus 01] >21:04:27,013 INFO kernel:[ 1.686099] pci 0000:09:00.0: PCI bridge to [bus 0a] >21:04:27,013 INFO kernel:[ 1.715845] pci 0000:00:1c.0: PCI bridge to [bus 09-0a] >21:04:27,013 INFO kernel:[ 1.747142] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff] >21:04:27,013 INFO kernel:[ 1.783597] pci 0000:00:1c.0: bridge window [mem 0xe0100000-0xe01fffff] >21:04:27,013 INFO kernel:[ 1.824210] pci 0000:00:1c.0: bridge window [mem 0xe0500000-0xe06fffff 64bit pref] >21:04:27,013 INFO kernel:[ 1.870544] pci 0000:00:1c.4: PCI bridge to [bus 0d] >21:04:27,013 INFO kernel:[ 1.900235] pci 0000:00:1c.4: bridge window [io 0x4000-0x4fff] >21:04:27,013 INFO kernel:[ 1.936690] pci 0000:00:1c.4: bridge window [mem 0xe0200000-0xe02fffff] >21:04:27,013 INFO kernel:[ 1.977302] pci 0000:00:1c.4: bridge window [mem 0xe0700000-0xe08fffff 64bit pref] >21:04:27,013 INFO kernel:[ 2.023637] pci 0000:00:1c.5: PCI bridge to [bus 0e] >21:04:27,013 INFO kernel:[ 2.053327] pci 0000:00:1c.5: bridge window [io 0x5000-0x5fff] >21:04:27,013 INFO kernel:[ 2.089781] pci 0000:00:1c.5: bridge window [mem 0xe0300000-0xe03fffff] >21:04:27,013 INFO kernel:[ 2.130396] pci 0000:00:1c.5: bridge window [mem 0xe0900000-0xe0afffff 64bit pref] >21:04:27,013 INFO kernel:[ 2.176733] pci 0000:0f:00.0: BAR 6: assigned [mem 0xe0420000-0xe043ffff pref] >21:04:27,013 INFO kernel:[ 2.219993] pci 0000:00:1e.0: PCI bridge to [bus 0f] >21:04:27,013 INFO kernel:[ 2.249686] pci 0000:00:1e.0: bridge window [io 0x6000-0x6fff] >21:04:27,013 INFO kernel:[ 2.286141] pci 0000:00:1e.0: bridge window [mem 0xe0400000-0xe04fffff] >21:04:27,013 INFO kernel:[ 2.326753] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff 64bit pref] >21:04:27,013 DEBUG kernel:[ 2.373311] pci 0000:00:1e.0: setting latency timer to 64 >21:04:27,013 DEBUG kernel:[ 2.373315] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] >21:04:27,013 DEBUG kernel:[ 2.373318] pci_bus 0000:00: resource 5 [mem 0x00000000-0xfffffffff] >21:04:27,013 DEBUG kernel:[ 2.373320] pci_bus 0000:09: resource 0 [io 0x2000-0x2fff] >21:04:27,013 DEBUG kernel:[ 2.373322] pci_bus 0000:09: resource 1 [mem 0xe0100000-0xe01fffff] >21:04:27,013 DEBUG kernel:[ 2.373325] pci_bus 0000:09: resource 2 [mem 0xe0500000-0xe06fffff 64bit pref] >21:04:27,013 DEBUG kernel:[ 2.373327] pci_bus 0000:0d: resource 0 [io 0x4000-0x4fff] >21:04:27,013 DEBUG kernel:[ 2.373329] pci_bus 0000:0d: resource 1 [mem 0xe0200000-0xe02fffff] >21:04:27,013 DEBUG kernel:[ 2.373331] pci_bus 0000:0d: resource 2 [mem 0xe0700000-0xe08fffff 64bit pref] >21:04:27,013 DEBUG kernel:[ 2.373333] pci_bus 0000:0e: resource 0 [io 0x5000-0x5fff] >21:04:27,013 DEBUG kernel:[ 2.373335] pci_bus 0000:0e: resource 1 [mem 0xe0300000-0xe03fffff] >21:04:27,013 DEBUG kernel:[ 2.373337] pci_bus 0000:0e: resource 2 [mem 0xe0900000-0xe0afffff 64bit pref] >21:04:27,013 DEBUG kernel:[ 2.373340] pci_bus 0000:0f: resource 0 [io 0x6000-0x6fff] >21:04:27,013 DEBUG kernel:[ 2.373342] pci_bus 0000:0f: resource 1 [mem 0xe0400000-0xe04fffff] >21:04:27,013 DEBUG kernel:[ 2.373344] pci_bus 0000:0f: resource 2 [mem 0xe8000000-0xefffffff 64bit pref] >21:04:27,013 DEBUG kernel:[ 2.373346] pci_bus 0000:0f: resource 4 [io 0x0000-0xffff] >21:04:27,013 DEBUG kernel:[ 2.373348] pci_bus 0000:0f: resource 5 [mem 0x00000000-0xfffffffff] >21:04:27,013 INFO kernel:[ 2.373387] NET: Registered protocol family 2 >21:04:27,013 INFO kernel:[ 2.399702] TCP established hash table entries: 65536 (order: 8, 1048576 bytes) >21:04:27,013 INFO kernel:[ 2.443965] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) >21:04:27,013 INFO kernel:[ 2.484460] TCP: Hash tables configured (established 65536 bind 65536) >21:04:27,013 INFO kernel:[ 2.523580] TCP: reno registered >21:04:27,013 INFO kernel:[ 2.542886] UDP hash table entries: 4096 (order: 5, 131072 bytes) >21:04:27,013 INFO kernel:[ 2.579461] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes) >21:04:27,013 INFO kernel:[ 2.618690] NET: Registered protocol family 1 >21:04:27,013 INFO kernel:[ 2.645388] pci 0000:09:00.0: rerouting interrupts for [8086:032c] >21:04:27,013 DEBUG kernel:[ 2.682395] PCI: CLS mismatch (32 != 64), using 64 bytes >21:04:27,013 DEBUG kernel:[ 2.682405] pci 0000:0f:00.0: Boot video device >21:04:27,013 INFO kernel:[ 2.682465] Unpacking initramfs... >21:04:27,013 INFO kernel:[ 6.669819] Freeing initrd memory: 32064k freed >21:04:27,013 INFO kernel:[ 6.710597] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) >21:04:27,013 INFO kernel:[ 6.749189] software IO TLB [mem 0xdbee0000-0xdfee0000] (64MB) mapped at [ffff8800dbee0000-ffff8800dfedffff] >21:04:27,013 INFO kernel:[ 6.808104] Simple Boot Flag at 0x38 set to 0x1 >21:04:27,013 NOTICE kernel:[ 6.835793] Initialise system trusted keyring >21:04:27,013 INFO kernel:[ 6.861934] audit: initializing netlink socket (disabled) >21:04:27,013 NOTICE kernel:[ 6.894281] type=2000 audit(1391202228.893:1): initialized >21:04:27,013 INFO kernel:[ 6.950679] HugeTLB registered 2 MB page size, pre-allocated 0 pages >21:04:27,013 NOTICE kernel:[ 6.990682] VFS: Disk quotas dquot_6.5.2 >21:04:27,013 WARNING kernel:[ 7.014182] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) >21:04:27,013 INFO kernel:[ 7.053140] msgmni has been set to 15963 >21:04:27,013 DEBUG kernel:[ 7.076700] SELinux: Registering netfilter hooks >21:04:27,013 INFO kernel:[ 7.077287] alg: No test for stdrng (krng) >21:04:27,013 INFO kernel:[ 7.101818] NET: Registered protocol family 38 >21:04:27,013 NOTICE kernel:[ 7.128436] Key type asymmetric registered >21:04:27,013 NOTICE kernel:[ 7.152976] Asymmetric key parser 'x509' registered >21:04:27,013 NOTICE kernel:[ 7.182149] Asymmetric key parser 'pefile' registered >21:04:27,013 INFO kernel:[ 7.212397] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) >21:04:27,013 INFO kernel:[ 7.256699] io scheduler noop registered >21:04:27,013 INFO kernel:[ 7.280176] io scheduler deadline registered >21:04:27,013 INFO kernel:[ 7.305715] io scheduler cfq registered (default) >21:04:27,013 DEBUG kernel:[ 7.334025] pcieport 0000:00:01.0: irq 64 for MSI/MSI-X >21:04:27,013 DEBUG kernel:[ 7.334098] pcieport 0000:00:1c.0: irq 65 for MSI/MSI-X >21:04:27,013 DEBUG kernel:[ 7.334188] pcieport 0000:00:1c.4: irq 66 for MSI/MSI-X >21:04:27,013 DEBUG kernel:[ 7.334271] pcieport 0000:00:1c.5: irq 67 for MSI/MSI-X >21:04:27,013 WARNING kernel:[ 7.334349] ioapic: probe of 0000:09:00.1 failed with error -22 >21:04:27,013 INFO kernel:[ 7.369781] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 >21:04:27,013 INFO kernel:[ 7.403171] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 >21:04:27,013 INFO kernel:[ 7.442782] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 >21:04:27,013 DEBUG kernel:[ 7.481476] intel_idle: does not run on family 6 model 15 >21:04:27,013 INFO kernel:[ 7.481551] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/PNP0C0C:00/input/input0 >21:04:27,013 INFO kernel:[ 7.537273] ACPI: Power Button [PWRB] >21:04:27,013 INFO kernel:[ 7.559197] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 >21:04:27,013 INFO kernel:[ 7.603468] ACPI: Power Button [PWRF] >21:04:27,013 INFO kernel:[ 7.625434] ACPI: Requesting acpi_cpufreq >21:04:27,013 INFO kernel:[ 7.651809] GHES: HEST is not enabled! >21:04:27,013 INFO kernel:[ 7.674315] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled >21:04:27,013 INFO kernel:[ 7.732380] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A >21:04:27,013 INFO kernel:[ 7.766111] Non-volatile memory driver v1.3 >21:04:27,013 INFO kernel:[ 7.791149] Linux agpgart interface v0.103 >21:04:27,013 INFO kernel:[ 7.816479] loop: module loaded >21:04:27,013 DEBUG kernel:[ 7.835353] ahci 0000:00:1f.2: version 3.0 >21:04:27,013 DEBUG kernel:[ 7.835465] ahci 0000:00:1f.2: irq 68 for MSI/MSI-X >21:04:27,013 INFO kernel:[ 7.835525] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode >21:04:27,013 INFO kernel:[ 7.883969] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part >21:04:27,013 DEBUG kernel:[ 7.924583] ahci 0000:00:1f.2: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 7.924596] tsc: Refined TSC clocksource calibration: 2393.999 MHz >21:04:27,013 INFO kernel:[ 7.925098] scsi0 : ahci >21:04:27,013 INFO kernel:[ 7.925168] scsi1 : ahci >21:04:27,013 INFO kernel:[ 7.925222] scsi2 : ahci >21:04:27,013 INFO kernel:[ 7.925274] scsi3 : ahci >21:04:27,013 INFO kernel:[ 7.925312] ata1: SATA max UDMA/133 abar m1024@0xe0000400 port 0xe0000500 irq 68 >21:04:27,013 INFO kernel:[ 7.925314] ata2: SATA max UDMA/133 abar m1024@0xe0000400 port 0xe0000580 irq 68 >21:04:27,013 INFO kernel:[ 7.925316] ata3: SATA max UDMA/133 abar m1024@0xe0000400 port 0xe0000600 irq 68 >21:04:27,013 INFO kernel:[ 7.925318] ata4: SATA max UDMA/133 abar m1024@0xe0000400 port 0xe0000680 irq 68 >21:04:27,013 DEBUG kernel:[ 7.925347] ata_piix 0000:00:1f.1: version 2.13 >21:04:27,013 DEBUG kernel:[ 7.925446] ata_piix 0000:00:1f.1: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 7.925809] scsi4 : ata_piix >21:04:27,013 INFO kernel:[ 7.926031] scsi5 : ata_piix >21:04:27,013 INFO kernel:[ 7.926206] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x30a0 irq 14 >21:04:27,013 INFO kernel:[ 7.926207] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x30a8 irq 15 >21:04:27,013 INFO kernel:[ 7.926256] libphy: Fixed MDIO Bus: probed >21:04:27,013 INFO kernel:[ 7.926322] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver >21:04:27,013 INFO kernel:[ 7.926322] ehci-pci: EHCI PCI platform driver >21:04:27,013 DEBUG kernel:[ 7.926402] ehci-pci 0000:00:1d.7: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 7.926405] ehci-pci 0000:00:1d.7: EHCI Host Controller >21:04:27,013 INFO kernel:[ 7.926448] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1 >21:04:27,013 INFO kernel:[ 7.926464] ehci-pci 0000:00:1d.7: debug port 1 >21:04:27,013 DEBUG kernel:[ 7.930370] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported >21:04:27,013 INFO kernel:[ 7.930391] ehci-pci 0000:00:1d.7: irq 23, io mem 0xe0000000 >21:04:27,013 INFO kernel:[ 8.543469] Switching to clocksource tsc >21:04:27,013 INFO kernel:[ 8.543501] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00 >21:04:27,013 INFO kernel:[ 8.543523] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 >21:04:27,013 INFO kernel:[ 8.543525] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >21:04:27,013 INFO kernel:[ 8.543526] usb usb1: Product: EHCI Host Controller >21:04:27,013 INFO kernel:[ 8.543528] usb usb1: Manufacturer: Linux 3.9.5-301.fc19.x86_64 ehci_hcd >21:04:27,013 INFO kernel:[ 8.543529] usb usb1: SerialNumber: 0000:00:1d.7 >21:04:27,013 INFO kernel:[ 8.543702] hub 1-0:1.0: USB hub found >21:04:27,013 INFO kernel:[ 8.543708] hub 1-0:1.0: 8 ports detected >21:04:27,013 INFO kernel:[ 8.543856] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver >21:04:27,013 INFO kernel:[ 8.543867] uhci_hcd: USB Universal Host Controller Interface driver >21:04:27,013 DEBUG kernel:[ 8.543941] uhci_hcd 0000:00:1d.0: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 8.543943] uhci_hcd 0000:00:1d.0: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.555901] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2 >21:04:27,013 INFO kernel:[ 8.555929] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00003000 >21:04:27,013 INFO kernel:[ 8.555963] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 >21:04:27,013 INFO kernel:[ 8.555965] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >21:04:27,013 INFO kernel:[ 8.555967] usb usb2: Product: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.555968] usb usb2: Manufacturer: Linux 3.9.5-301.fc19.x86_64 uhci_hcd >21:04:27,013 INFO kernel:[ 8.555970] usb usb2: SerialNumber: 0000:00:1d.0 >21:04:27,013 INFO kernel:[ 8.556055] hub 2-0:1.0: USB hub found >21:04:27,013 INFO kernel:[ 8.556058] hub 2-0:1.0: 2 ports detected >21:04:27,013 DEBUG kernel:[ 8.556195] uhci_hcd 0000:00:1d.1: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 8.556197] uhci_hcd 0000:00:1d.1: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.556238] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3 >21:04:27,013 INFO kernel:[ 8.556276] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00003020 >21:04:27,013 INFO kernel:[ 8.556307] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001 >21:04:27,013 INFO kernel:[ 8.556309] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >21:04:27,013 INFO kernel:[ 8.556310] usb usb3: Product: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.556311] usb usb3: Manufacturer: Linux 3.9.5-301.fc19.x86_64 uhci_hcd >21:04:27,013 INFO kernel:[ 8.556313] usb usb3: SerialNumber: 0000:00:1d.1 >21:04:27,013 INFO kernel:[ 8.556389] hub 3-0:1.0: USB hub found >21:04:27,013 INFO kernel:[ 8.556394] hub 3-0:1.0: 2 ports detected >21:04:27,013 DEBUG kernel:[ 8.556523] uhci_hcd 0000:00:1d.2: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 8.556525] uhci_hcd 0000:00:1d.2: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.556563] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4 >21:04:27,013 INFO kernel:[ 8.556601] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00003040 >21:04:27,013 INFO kernel:[ 8.556635] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 >21:04:27,013 INFO kernel:[ 8.556637] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >21:04:27,013 INFO kernel:[ 8.556638] usb usb4: Product: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.556640] usb usb4: Manufacturer: Linux 3.9.5-301.fc19.x86_64 uhci_hcd >21:04:27,013 INFO kernel:[ 8.556641] usb usb4: SerialNumber: 0000:00:1d.2 >21:04:27,013 INFO kernel:[ 8.556726] hub 4-0:1.0: USB hub found >21:04:27,013 INFO kernel:[ 8.556729] hub 4-0:1.0: 2 ports detected >21:04:27,013 DEBUG kernel:[ 8.556859] uhci_hcd 0000:00:1d.3: setting latency timer to 64 >21:04:27,013 INFO kernel:[ 8.556861] uhci_hcd 0000:00:1d.3: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.556893] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5 >21:04:27,013 INFO kernel:[ 8.556932] uhci_hcd 0000:00:1d.3: irq 16, io base 0x00003060 >21:04:27,013 INFO kernel:[ 8.556963] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001 >21:04:27,013 INFO kernel:[ 8.556965] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >21:04:27,013 INFO kernel:[ 8.556967] usb usb5: Product: UHCI Host Controller >21:04:27,013 INFO kernel:[ 8.556968] usb usb5: Manufacturer: Linux 3.9.5-301.fc19.x86_64 uhci_hcd >21:04:27,013 INFO kernel:[ 8.556969] usb usb5: SerialNumber: 0000:00:1d.3 >21:04:27,013 INFO kernel:[ 8.557056] hub 5-0:1.0: USB hub found >21:04:27,013 INFO kernel:[ 8.557059] hub 5-0:1.0: 2 ports detected >21:04:27,013 INFO kernel:[ 8.557173] usbcore: registered new interface driver usbserial >21:04:27,013 INFO kernel:[ 8.557183] usbcore: registered new interface driver usbserial_generic >21:04:27,013 INFO kernel:[ 8.557189] usbserial: USB Serial support registered for generic >21:04:27,013 INFO kernel:[ 8.557223] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12 >21:04:27,013 INFO kernel:[ 10.410829] serio: i8042 KBD port at 0x60,0x64 irq 1 >21:04:27,013 INFO kernel:[ 10.440707] serio: i8042 AUX port at 0x60,0x64 irq 12 >21:04:27,013 INFO kernel:[ 10.471024] mousedev: PS/2 mouse device common for all mice >21:04:27,013 INFO kernel:[ 10.504543] rtc_cmos 00:03: RTC can wake from S4 >21:04:27,013 INFO kernel:[ 10.532318] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 >21:04:27,013 INFO kernel:[ 10.546020] ata4: SATA link down (SStatus 0 SControl 300) >21:04:27,013 INFO kernel:[ 10.546042] ata3: SATA link down (SStatus 0 SControl 300) >21:04:27,013 INFO kernel:[ 10.546063] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300) >21:04:27,013 INFO kernel:[ 10.559251] ata2.00: ATA-7: HDS725050KLA360, K2AOA60A, max UDMA/133 >21:04:27,013 INFO kernel:[ 10.559252] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA >21:04:27,013 INFO kernel:[ 10.560137] ata2.00: configured for UDMA/133 >21:04:27,013 INFO kernel:[ 10.776112] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) >21:04:27,013 INFO kernel:[ 10.776143] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs >21:04:27,013 INFO kernel:[ 10.776214] device-mapper: uevent: version 1.0.3 >21:04:27,013 INFO kernel:[ 10.776273] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com >21:04:27,013 INFO kernel:[ 10.776311] cpuidle: using governor ladder >21:04:27,013 INFO kernel:[ 10.776312] cpuidle: using governor menu >21:04:27,013 INFO kernel:[ 10.776511] EFI Variables Facility v0.08 2004-May-17 >21:04:27,013 INFO kernel:[ 10.776522] hidraw: raw HID events driver (C) Jiri Kosina >21:04:27,013 INFO kernel:[ 10.776607] usbcore: registered new interface driver usbhid >21:04:27,013 INFO kernel:[ 10.776608] usbhid: USB HID core driver >21:04:27,013 INFO kernel:[ 10.776629] drop_monitor: Initializing network drop monitor service >21:04:27,013 INFO kernel:[ 10.776708] ip_tables: (C) 2000-2006 Netfilter Core Team >21:04:27,013 WARNING kernel:[ 11.172517] hpet1: lost 24 rtc interrupts >21:04:27,013 INFO kernel:[ 11.196546] TCP: cubic registered >21:04:27,013 INFO kernel:[ 11.214334] ata1.00: ATA-7: HDS725050KLA360, K2AOA60A, max UDMA/133 >21:04:27,013 INFO kernel:[ 11.214336] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA >21:04:27,013 INFO kernel:[ 11.215219] ata1.00: configured for UDMA/133 >21:04:27,013 NOTICE kernel:[ 11.215313] scsi 0:0:0:0: Direct-Access ATA HDS725050KLA360 K2AO PQ: 0 ANSI: 5 >21:04:27,013 NOTICE kernel:[ 11.215451] sd 0:0:0:0: Attached scsi generic sg0 type 0 >21:04:27,013 NOTICE kernel:[ 11.215562] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB) >21:04:27,013 NOTICE kernel:[ 11.215575] scsi 1:0:0:0: Direct-Access ATA HDS725050KLA360 K2AO PQ: 0 ANSI: 5 >21:04:27,013 NOTICE kernel:[ 11.215693] sd 1:0:0:0: Attached scsi generic sg1 type 0 >21:04:27,013 NOTICE kernel:[ 11.215776] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB) >21:04:27,013 NOTICE kernel:[ 11.215788] sd 0:0:0:0: [sda] Write Protect is off >21:04:27,013 DEBUG kernel:[ 11.215790] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 >21:04:27,013 NOTICE kernel:[ 11.215821] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA >21:04:27,013 NOTICE kernel:[ 11.215915] sd 1:0:0:0: [sdb] Write Protect is off >21:04:27,013 DEBUG kernel:[ 11.215917] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00 >21:04:27,013 NOTICE kernel:[ 11.215951] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA >21:04:27,013 INFO kernel:[ 11.233431] sdb: sdb1 >21:04:27,013 NOTICE kernel:[ 11.233613] sd 1:0:0:0: [sdb] Attached SCSI disk >21:04:27,013 INFO kernel:[ 11.233693] sda: sda1 sda2 >21:04:27,013 NOTICE kernel:[ 11.233876] sd 0:0:0:0: [sda] Attached SCSI disk >21:04:27,013 INFO kernel:[ 11.824679] Initializing XFRM netlink socket >21:04:27,013 INFO kernel:[ 11.850349] NET: Registered protocol family 10 >21:04:27,013 INFO kernel:[ 11.877148] mip6: Mobile IPv6 >21:04:27,013 INFO kernel:[ 11.894907] NET: Registered protocol family 17 >21:04:27,013 DEBUG kernel:[ 11.921694] PM: Hibernation image not present or could not be loaded. >21:04:27,013 NOTICE kernel:[ 11.921696] Loading compiled-in X.509 certificates >21:04:27,013 NOTICE kernel:[ 11.951463] Loaded X.509 cert 'Fedora kernel signing key: 78fb4a79e920e6faab7a0c9f59d1d38942b01496' >21:04:27,013 INFO kernel:[ 12.005638] registered taskstats version 1 >21:04:27,013 INFO kernel:[ 12.030971] Magic number: 14:41:97 >21:04:27,013 INFO kernel:[ 12.052376] usb 2-2: new low-speed USB device number 2 using uhci_hcd >21:04:27,013 INFO kernel:[ 12.091053] rtc_cmos 00:03: setting system clock to 2014-01-31 21:04:02 UTC (1391202242) >21:04:27,013 INFO kernel:[ 12.140755] Freeing unused kernel memory: 1352k freed >21:04:27,013 INFO kernel:[ 12.171384] Write protecting the kernel read-only data: 12288k >21:04:27,013 INFO kernel:[ 12.210149] Freeing unused kernel memory: 1708k freed >21:04:27,013 INFO kernel:[ 12.243637] Freeing unused kernel memory: 1332k freed >21:04:27,013 INFO kernel:[ 12.459303] usb 2-2: New USB device found, idVendor=0624, idProduct=0294 >21:04:27,013 INFO kernel:[ 12.568186] usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 >21:04:27,013 INFO kernel:[ 12.610928] usb 2-2: Product: Dell 03R874 >21:04:27,013 INFO kernel:[ 12.658354] usb 2-2: Manufacturer: Avocent >21:04:27,013 INFO kernel:[ 12.717361] input: Avocent Dell 03R874 as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input2 >21:04:27,013 INFO kernel:[ 12.717437] hid-generic 0003:0624:0294.0001: input,hidraw0: USB HID v1.10 Keyboard [Avocent Dell 03R874] on usb-0000:00:1d.0-2/input0 >21:04:27,013 INFO kernel:[ 12.750478] input: Avocent Dell 03R874 as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.1/input/input3 >21:04:27,013 INFO kernel:[ 12.750554] hid-generic 0003:0624:0294.0002: input,hidraw1: USB HID v1.10 Mouse [Avocent Dell 03R874] on usb-0000:00:1d.0-2/input1 >21:04:27,013 INFO kernel:[ 13.276684] BIOS EDD facility v0.16 2004-Jun-25, 2 devices found >21:04:27,013 INFO kernel:[ 13.792183] device-mapper: multipath: version 1.5.1 loaded >21:04:27,013 INFO kernel:[ 14.152332] squashfs: version 4.0 (2009/01/31) Phillip Lougher >21:04:27,013 INFO kernel:[ 14.198192] Loading iSCSI transport class v2.0-870. >21:04:27,013 NOTICE kernel:[ 14.277284] iscsi: registered transport (tcp) >21:04:27,013 INFO kernel:[ 14.305885] alua: device handler registered >21:04:27,013 INFO kernel:[ 14.339281] emc: device handler registered >21:04:27,013 INFO kernel:[ 14.372029] hp_sw: device handler registered >21:04:27,016 INFO kernel:[ 14.435818] rdac: device handler registered >21:04:27,016 INFO kernel:[ 17.480122] floppy0: no floppy controllers found >21:04:27,016 INFO kernel:[ 17.517085] No iBFT detected. >21:04:27,016 INFO kernel:[ 17.537287] md: raid0 personality registered for level 0 >21:04:27,016 INFO kernel:[ 17.571822] md: raid1 personality registered for level 1 >21:04:27,016 INFO kernel:[ 17.606010] async_tx: api initialized (async) >21:04:27,016 INFO kernel:[ 17.633402] xor: measuring software checksum speed >21:04:27,016 INFO kernel:[ 17.672003] prefetch64-sse: 9532.000 MB/sec >21:04:27,016 INFO kernel:[ 17.709003] generic_sse: 8460.000 MB/sec >21:04:27,016 INFO kernel:[ 17.734582] xor: using function: prefetch64-sse (9532.000 MB/sec) >21:04:27,016 WARNING kernel:[ 17.791018] raid6: sse2x1 3511 MB/s >21:04:27,016 WARNING kernel:[ 17.830008] raid6: sse2x2 3609 MB/s >21:04:27,016 WARNING kernel:[ 17.869007] raid6: sse2x4 7109 MB/s >21:04:27,016 WARNING kernel:[ 17.891419] raid6: using algorithm sse2x4 (7109 MB/s) >21:04:27,016 WARNING kernel:[ 17.921635] raid6: using ssse3x2 recovery algorithm >21:04:27,016 INFO kernel:[ 17.956902] md: raid6 personality registered for level 6 >21:04:27,016 INFO kernel:[ 17.988717] md: raid5 personality registered for level 5 >21:04:27,016 INFO kernel:[ 18.020488] md: raid4 personality registered for level 4 >21:04:27,016 INFO kernel:[ 18.057442] md: raid10 personality registered for level 10 >21:04:27,016 INFO kernel:[ 18.092637] md: linear personality registered for level -1 >21:04:27,016 INFO kernel:[ 18.132886] device-mapper: multipath round-robin: version 1.0.0 loaded >21:04:27,016 INFO kernel:[ 18.194018] RPC: Registered named UNIX socket transport module. >21:04:27,016 INFO kernel:[ 18.229451] RPC: Registered udp transport module. >21:04:27,016 INFO kernel:[ 18.257619] RPC: Registered tcp transport module. >21:04:27,016 INFO kernel:[ 18.285800] RPC: Registered tcp NFSv4.1 backchannel transport module. >21:04:27,016 INFO kernel:[ 18.604530] pps_core: LinuxPPS API ver. 1 registered >21:04:27,016 INFO kernel:[ 18.634297] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> >21:04:27,016 INFO kernel:[ 18.690441] PTP clock support registered >21:04:27,016 INFO kernel:[ 18.722591] e1000e: Intel(R) PRO/1000 Network Driver - 2.2.14-k >21:04:27,016 INFO kernel:[ 18.758056] e1000e: Copyright(c) 1999 - 2013 Intel Corporation. >21:04:27,016 INFO kernel:[ 18.793626] [drm] Initialized drm 1.1.0 20060810 >21:04:27,016 INFO kernel:[ 18.796025] e1000e 0000:0d:00.0: Disabling ASPM L0s L1 >21:04:27,016 INFO kernel:[ 18.796226] e1000e 0000:0d:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode >21:04:27,016 DEBUG kernel:[ 18.796313] e1000e 0000:0d:00.0: irq 69 for MSI/MSI-X >21:04:27,016 WARNING kernel:[ 18.849792] e1000e 0000:0d:00.0: Warning: detected DSPD enabled in EEPROM >21:04:27,016 INFO kernel:[ 18.906895] e1000e 0000:0d:00.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:30:48:8b:ff:e4 >21:04:27,016 INFO kernel:[ 18.906896] e1000e 0000:0d:00.0 eth0: Intel(R) PRO/1000 Network Connection >21:04:27,016 INFO kernel:[ 18.907077] e1000e 0000:0d:00.0 eth0: MAC: 2, PHY: 2, PBA No: FFFFFF-0FF >21:04:27,016 INFO kernel:[ 18.907094] e1000e 0000:0e:00.0: Disabling ASPM L0s L1 >21:04:27,016 INFO kernel:[ 18.907249] e1000e 0000:0e:00.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode >21:04:27,016 DEBUG kernel:[ 18.907331] e1000e 0000:0e:00.0: irq 70 for MSI/MSI-X >21:04:27,016 INFO kernel:[ 19.009691] e1000e 0000:0e:00.0 eth1: (PCI Express:2.5GT/s:Width x1) 00:30:48:8b:ff:e5 >21:04:27,016 INFO kernel:[ 19.009693] e1000e 0000:0e:00.0 eth1: Intel(R) PRO/1000 Network Connection >21:04:27,016 INFO kernel:[ 19.009774] e1000e 0000:0e:00.0 eth1: MAC: 2, PHY: 2, PBA No: FFFFFF-0FF >21:04:27,016 INFO kernel:[ 19.317045] [drm] radeon kernel modesetting enabled. >21:04:27,016 INFO kernel:[ 19.386214] [drm] initializing kernel modesetting (RV100 0x1002:0x515E 0x15D9:0x7980). >21:04:27,016 INFO kernel:[ 19.433618] [drm] register mmio base: 0xE0400000 >21:04:27,016 INFO kernel:[ 19.461263] [drm] register mmio size: 65536 >21:04:27,016 INFO kernel:[ 19.486566] radeon 0000:0f:00.0: VRAM: 128M 0x00000000E8000000 - 0x00000000EFFFFFFF (16M used) >21:04:27,016 INFO kernel:[ 19.538117] radeon 0000:0f:00.0: GTT: 512M 0x00000000C8000000 - 0x00000000E7FFFFFF >21:04:27,016 INFO kernel:[ 19.583465] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010). >21:04:27,016 INFO kernel:[ 19.623083] [drm] Driver supports precise vblank timestamp query. >21:04:27,016 INFO kernel:[ 19.659545] [drm] radeon: irq initialized. >21:04:27,016 INFO kernel:[ 19.685556] [drm] Detected VRAM RAM=128M, BAR=128M >21:04:27,016 INFO kernel:[ 19.753318] [drm] RAM width 16bits DDR >21:04:27,016 INFO kernel:[ 19.775822] [TTM] Zone kernel: Available graphics memory: 4088806 kiB >21:04:27,016 INFO kernel:[ 19.814922] [TTM] Zone dma32: Available graphics memory: 2097152 kiB >21:04:27,016 INFO kernel:[ 19.854030] [TTM] Initializing pool allocator >21:04:27,016 INFO kernel:[ 19.880151] [TTM] Initializing DMA pool allocator >21:04:27,016 INFO kernel:[ 19.908340] [drm] radeon: 16M of VRAM memory ready >21:04:27,016 INFO kernel:[ 19.937067] [drm] radeon: 512M of GTT memory ready. >21:04:27,016 INFO kernel:[ 19.966281] [drm] GART: num cpu pages 131072, num gpu pages 131072 >21:04:27,016 INFO kernel:[ 20.024677] [drm] PCI GART of 512M enabled (table at 0x000000007F880000). >21:04:27,016 INFO kernel:[ 20.065366] radeon 0000:0f:00.0: WB disabled >21:04:27,016 INFO kernel:[ 20.090947] radeon 0000:0f:00.0: fence driver on ring 0 use gpu addr 0x00000000c8000000 and cpu addr 0xffff88007f816000 >21:04:27,016 INFO kernel:[ 20.155595] [drm] Loading R100 Microcode >21:04:27,016 INFO kernel:[ 20.179634] [drm] radeon: ring at 0x00000000C8001000 >21:04:27,016 INFO kernel:[ 20.209392] [drm] ring test succeeded in 1 usecs >21:04:27,016 INFO kernel:[ 20.237465] [drm] ib test succeeded in 0 usecs >21:04:27,016 INFO kernel:[ 20.264276] [drm] Radeon Display Connectors >21:04:27,016 INFO kernel:[ 20.289332] [drm] Connector 0: >21:04:27,016 INFO kernel:[ 20.307581] [drm] VGA-1 >21:04:27,016 INFO kernel:[ 20.323235] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60 >21:04:27,016 INFO kernel:[ 20.359167] [drm] Encoders: >21:04:27,016 INFO kernel:[ 20.376900] [drm] CRT1: INTERNAL_DAC1 >21:04:27,016 INFO kernel:[ 20.400872] [drm] Connector 1: >21:04:27,016 INFO kernel:[ 20.419125] [drm] DVI-I-1 >21:04:27,016 INFO kernel:[ 20.435817] [drm] HPD2 >21:04:27,016 INFO kernel:[ 20.450949] [drm] DDC: 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c 0x6c >21:04:27,016 INFO kernel:[ 20.486884] [drm] Encoders: >21:04:27,016 INFO kernel:[ 20.504615] [drm] CRT2: INTERNAL_DAC2 >21:04:27,016 INFO kernel:[ 20.528587] [drm] DFP2: INTERNAL_DVO1 >21:04:27,016 INFO kernel:[ 20.622569] [drm] fb mappable at 0xE8040000 >21:04:27,016 INFO kernel:[ 20.647622] [drm] vram apper at 0xE8000000 >21:04:27,016 INFO kernel:[ 20.672113] [drm] size 786432 >21:04:27,016 INFO kernel:[ 20.689845] [drm] fb depth is 8 >21:04:27,016 INFO kernel:[ 20.708622] [drm] pitch is 1024 >21:04:27,016 INFO kernel:[ 20.729062] fbcon: radeondrmfb (fb0) is primary device >21:04:27,016 INFO kernel:[ 20.888244] Console: switching to colour frame buffer device 128x48 >21:04:27,016 INFO kernel:[ 20.964012] radeon 0000:0f:00.0: fb0: radeondrmfb frame buffer device >21:04:27,016 INFO kernel:[ 21.002595] radeon 0000:0f:00.0: registered panic notifier >21:04:27,016 INFO kernel:[ 21.035470] [drm] Initialized radeon 2.30.0 20080528 for 0000:0f:00.0 on minor 0 >21:04:27,016 DEBUG kernel:[ 21.512863] e1000e 0000:0e:00.0: irq 70 for MSI/MSI-X >21:04:27,016 DEBUG kernel:[ 21.613251] e1000e 0000:0e:00.0: irq 70 for MSI/MSI-X >21:04:27,016 INFO kernel:[ 21.613735] IPv6: ADDRCONF(NETDEV_UP): p6p1: link is not ready >21:04:27,016 INFO kernel:[ 23.981977] e1000e: p6p1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx >21:04:27,016 INFO kernel:[ 24.027409] IPv6: ADDRCONF(NETDEV_CHANGE): p6p1: link becomes ready >21:04:27,016 NOTICE kernel:[ 32.868032] FS-Cache: Loaded >21:04:27,016 NOTICE kernel:[ 32.886682] Key type dns_resolver registered >21:04:27,016 NOTICE kernel:[ 32.920051] FS-Cache: Netfs 'nfs' registered for caching >21:04:27,016 INFO kernel:[ 33.107221] bio: create slab <bio-1> at 1 >21:04:27,016 INFO kernel:[ 33.200145] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) >21:04:27,016 DEBUG kernel:[ 34.277222] SELinux: 2048 avtab hash slots, 100052 rules. >21:04:27,016 DEBUG kernel:[ 34.293829] SELinux: 2048 avtab hash slots, 100052 rules. >21:04:27,016 DEBUG kernel:[ 34.625484] SELinux: 8 users, 82 roles, 4468 types, 252 bools, 1 sens, 1024 cats >21:04:27,016 DEBUG kernel:[ 34.625489] SELinux: 83 classes, 100052 rules >21:04:27,016 DEBUG kernel:[ 34.631533] SELinux: Completing initialization. >21:04:27,016 DEBUG kernel:[ 34.631537] SELinux: Setting up existing superblocks. >21:04:27,016 DEBUG kernel:[ 34.631545] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.631551] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.631565] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.631571] SELinux: initialized (dev proc, type proc), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.631584] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.631613] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.632411] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs >21:04:27,016 DEBUG kernel:[ 34.632416] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.634500] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs >21:04:27,016 DEBUG kernel:[ 34.634508] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.634512] SELinux: initialized (dev devpts, type devpts), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.634532] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.634539] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.634547] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.634574] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635458] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635461] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.635467] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.635632] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 34.635662] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635675] SELinux: initialized (dev pstore, type pstore), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635678] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635688] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635749] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635764] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635771] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635776] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635782] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635799] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635806] SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635816] SELinux: initialized (dev 0:30, type nfs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 34.635832] SELinux: initialized (dev loop0, type squashfs), uses xattr >21:04:27,016 DEBUG kernel:[ 34.635855] SELinux: initialized (dev dm-0, type ext4), uses xattr >21:04:27,016 NOTICE kernel:[ 34.653104] type=1403 audit(1391202265.061:2): policy loaded auid=4294967295 ses=4294967295 >21:04:27,016 DEBUG kernel:[ 35.168042] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts >21:04:27,016 DEBUG kernel:[ 35.435662] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 35.436564] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >21:04:27,016 DEBUG kernel:[ 35.437634] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts >21:04:27,016 INFO kernel:[ 36.025966] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 >21:04:27,016 WARNING kernel:[ 36.072041] ACPI Warning: 0x0000000000001028-0x000000000000102f SystemIO conflicts with Region \_SB_.PCI0.LPC0.PMIO 1 (20130117/utaddress-251) >21:04:27,016 INFO kernel:[ 36.072048] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver >21:04:27,016 WARNING kernel:[ 36.072052] ACPI Warning: 0x0000000000001180-0x00000000000011af SystemIO conflicts with Region \_SB_.PCI0.LPC0.GPOX 1 (20130117/utaddress-251) >21:04:27,016 INFO kernel:[ 36.072055] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver >21:04:27,016 WARNING kernel:[ 36.072076] lpc_ich: Resource conflict(s) found affecting gpio_ich >21:04:27,016 INFO kernel:[ 36.079599] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt >21:04:27,016 INFO kernel:[ 36.136580] leds_ss4200: no LED devices found >21:04:27,016 INFO kernel:[ 36.157665] microcode: CPU0 sig=0x6f6, pf=0x1, revision=0x44 >21:04:27,016 INFO kernel:[ 36.177964] microcode: CPU1 sig=0x6f6, pf=0x1, revision=0x44 >21:04:27,016 INFO kernel:[ 36.178184] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba >21:04:27,016 NOTICE kernel:[ 36.378551] type=1400 audit(1391202266.785:3): avc: denied { create } for pid=759 comm="systemd-tmpfile" name="tmp" scontext=system_u:system_r:systemd_tmpfiles_t:s0 tcontext=system_u:object_r:var_t:s0 tclass=dir >21:04:27,016 NOTICE kernel:[ 36.378626] type=1400 audit(1391202266.785:4): avc: denied { setattr } for pid=759 comm="systemd-tmpfile" name="tmp" dev="dm-0" ino=34185 scontext=system_u:system_r:systemd_tmpfiles_t:s0 tcontext=system_u:object_r:var_t:s0 tclass=dir >21:04:27,016 NOTICE kernel:[ 36.378665] type=1400 audit(1391202266.785:5): avc: denied { relabelfrom } for pid=759 comm="systemd-tmpfile" name="tmp" dev="dm-0" ino=34185 scontext=system_u:system_r:systemd_tmpfiles_t:s0 tcontext=system_u:object_r:var_t:s0 tclass=dir >21:04:27,025 NOTICE kernel:[ 36.617853] type=1400 audit(1391202267.024:6): avc: denied { write } for pid=765 comm="firewalld" name="python2.7" dev="dm-0" ino=124159 scontext=system_u:system_r:firewalld_t:s0 tcontext=unconfined_u:object_r:lib_t:s0 tclass=dir >21:04:27,025 NOTICE kernel:[ 36.617865] type=1400 audit(1391202267.024:7): avc: denied { remove_name } for pid=765 comm="firewalld" name="site.pyc" dev="dm-0" ino=125640 scontext=system_u:system_r:firewalld_t:s0 tcontext=unconfined_u:object_r:lib_t:s0 tclass=dir >21:04:27,025 NOTICE kernel:[ 36.617873] type=1400 audit(1391202267.024:8): avc: denied { unlink } for pid=765 comm="firewalld" name="site.pyc" dev="dm-0" ino=125640 scontext=system_u:system_r:firewalld_t:s0 tcontext=unconfined_u:object_r:lib_t:s0 tclass=lnk_file >21:04:27,027 NOTICE kernel:[ 36.619093] type=1400 audit(1391202267.026:9): avc: denied { add_name } for pid=765 comm="firewalld" name="site.pyc" scontext=system_u:system_r:firewalld_t:s0 tcontext=unconfined_u:object_r:lib_t:s0 tclass=dir >21:04:27,027 NOTICE kernel:[ 36.619175] type=1400 audit(1391202267.026:10): avc: denied { create } for pid=765 comm="firewalld" name="site.pyc" scontext=system_u:system_r:firewalld_t:s0 tcontext=system_u:object_r:lib_t:s0 tclass=file >21:04:27,027 NOTICE kernel:[ 36.619228] type=1400 audit(1391202267.026:11): avc: denied { write } for pid=765 comm="firewalld" path="/usr/lib64/python2.7/site.pyc" dev="dm-0" ino=125640 scontext=system_u:system_r:firewalld_t:s0 tcontext=system_u:object_r:lib_t:s0 tclass=file >21:04:27,833 INFO systemd: Started Wait for Plymouth Boot Screen to Quit. >21:04:27,833 INFO systemd: Started Terminate Plymouth Boot Screen. >21:04:27,833 INFO systemd: Starting Shell on tty2... >21:04:27,833 INFO systemd: Started Shell on tty2. >21:04:28,458 WARNING systemd: Cannot add dependency job for unit lvm2-monitor.service, ignoring: Unit dm-event.socket failed to load: No such file or directory. See system logs and 'systemctl status dm-event.socket' for details. >21:04:28,458 INFO systemd: Starting D-Bus System Message Bus... >21:04:28,459 INFO systemd: Started D-Bus System Message Bus. >21:04:28,531 INFO systemd: Started firewalld - dynamic firewall daemon. >21:04:28,531 INFO systemd: Starting Network Manager... >21:04:28,810 ERR firewalld: 2014-01-31 21:04:28 ERROR: ebtables not usable, disabling ethernet bridge firewall. >21:04:28,811 CRIT firewalld: 2014-01-31 21:04:28 FATAL ERROR: No IPv4 and IPv6 firewall. >21:04:28,811 ERR firewalld: 2014-01-31 21:04:28 ERROR: Raising SystemExit in run_server >21:04:28,861 INFO NetworkManager: <info> NetworkManager (version 0.9.8.2-2.fc19) is starting... >21:04:28,861 INFO NetworkManager: <info> Read config file /etc/NetworkManager/NetworkManager.conf >21:04:28,861 INFO NetworkManager: <info> WEXT support is enabled >21:04:28,871 INFO dbus-daemon: dbus[780]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' >21:04:28,874 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' >21:04:28,874 WARNING systemd: Cannot add dependency job for unit lvm2-monitor.service, ignoring: Unit dm-event.socket failed to load: No such file or directory. See system logs and 'systemctl status dm-event.socket' for details. >21:04:28,874 INFO systemd: Starting Authorization Manager... >21:04:29,030 INFO polkitd: Started polkitd version 0.111 >21:04:29,155 INFO dbus-daemon: dbus[780]: [system] Successfully activated service 'org.freedesktop.PolicyKit1' >21:04:29,156 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.PolicyKit1' >21:04:29,156 INFO systemd: Started Authorization Manager. >21:04:29,186 WARNING NetworkManager: ifcfg-rh: Could not get hostname: failed to read /etc/sysconfig/network >21:04:29,187 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 >21:04:29,187 INFO NetworkManager: <info> Loaded plugin ifcfg-rh: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. >21:04:29,187 INFO NetworkManager: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. >21:04:29,187 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-p6p1 ... >21:04:29,188 NOTICE NetworkManager: ifcfg-rh: read connection 'p6p1' >21:04:29,188 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-lo ... >21:04:29,189 INFO dbus-daemon: dbus[780]: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' >21:04:29,190 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' >21:04:29,190 WARNING systemd: Cannot add dependency job for unit lvm2-monitor.service, ignoring: Unit dm-event.socket failed to load: No such file or directory. See system logs and 'systemctl status dm-event.socket' for details. >21:04:29,192 INFO systemd: Starting Login Service... >21:04:29,215 INFO dbus-daemon: dbus[780]: [system] Successfully activated service 'org.freedesktop.login1' >21:04:29,215 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.login1' >21:04:29,215 INFO systemd: Started Login Service. >21:04:29,216 INFO systemd-logind: New seat seat0. >21:04:29,220 INFO systemd-logind: Watching system buttons on /dev/input/event1 (Power Button) >21:04:29,220 INFO systemd-logind: Watching system buttons on /dev/input/event0 (Power Button) >21:04:29,221 INFO NetworkManager: <info> monitoring kernel firmware directory '/lib/firmware'. >21:04:29,224 INFO systemd: Started Network Manager. >21:04:29,225 INFO systemd: Starting Anaconda System Services. >21:04:29,225 INFO systemd: Reached target Anaconda System Services. >21:04:29,231 INFO systemd: Starting Anaconda... >21:04:29,231 INFO systemd: Starting Network. >21:04:29,231 INFO systemd: Reached target Network. >21:04:29,231 INFO systemd: Started Login and scanning of iSCSI devices. >21:04:29,232 INFO NetworkManager: <info> WiFi enabled by radio killswitch; enabled by state file >21:04:29,232 INFO NetworkManager: <info> WWAN enabled by radio killswitch; enabled by state file >21:04:29,232 INFO NetworkManager: <info> WiMAX enabled by radio killswitch; enabled by state file >21:04:29,232 INFO NetworkManager: <info> Networking is enabled by state file >21:04:29,232 WARNING NetworkManager: <warn> failed to allocate link cache: (-10) Operation not supported >21:04:29,233 INFO NetworkManager: <info> (enp13s0): carrier is OFF >21:04:29,233 INFO NetworkManager: <info> (enp13s0): new Ethernet device (driver: 'e1000e' ifindex: 2) >21:04:29,234 INFO NetworkManager: <info> (enp13s0): exported as /org/freedesktop/NetworkManager/Devices/0 >21:04:29,234 INFO NetworkManager: <info> (enp13s0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2] >21:04:29,234 INFO NetworkManager: <info> (enp13s0): bringing up device. >21:04:29,296 INFO systemd: Started Anaconda. >21:04:29,300 INFO systemd: Starting Anaconda Text Console... >21:04:29,314 DEBUG kernel:[ 38.906635] e1000e 0000:0d:00.0: irq 69 for MSI/MSI-X >21:04:29,331 INFO systemd: Started Anaconda Text Console. >21:04:29,332 INFO systemd: Startup finished in 12.276s (kernel) + 21.664s (initrd) + 4.982s (userspace) = 38.923s. >21:04:29,416 DEBUG kernel:[ 39.007131] e1000e 0000:0d:00.0: irq 69 for MSI/MSI-X >21:04:29,416 INFO kernel:[ 39.007752] IPv6: ADDRCONF(NETDEV_UP): enp13s0: link is not ready >21:04:29,417 INFO NetworkManager: <info> (enp13s0): preparing device. >21:04:29,417 INFO NetworkManager: <info> (enp13s0): deactivating device (reason 'managed') [2] >21:04:29,421 INFO NetworkManager: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.4/0000:0d:00.0/net/enp13s0 >21:04:29,421 WARNING NetworkManager: <warn> failed to allocate link cache: (-10) Operation not supported >21:04:29,421 INFO NetworkManager: <info> (p6p1): carrier is ON >21:04:29,425 INFO NetworkManager: <info> (p6p1): new Ethernet device (driver: 'e1000e' ifindex: 3) >21:04:29,427 INFO NetworkManager: <info> (p6p1): exported as /org/freedesktop/NetworkManager/Devices/1 >21:04:29,427 INFO NetworkManager: <info> (p6p1): device state change: unmanaged -> unavailable (reason 'connection-assumed') [10 20 41] >21:04:29,427 INFO NetworkManager: <info> (p6p1): preparing device. >21:04:29,429 INFO NetworkManager: <info> Activation (p6p1) starting connection 'p6p1' >21:04:29,429 WARNING NetworkManager: (nm-device.c:3894):nm_device_activate: runtime check failed: (priv->state == NM_DEVICE_STATE_DISCONNECTED) >21:04:29,429 INFO NetworkManager: <info> (p6p1): device state change: unavailable -> ip-config (reason 'none') [20 70 0] >21:04:29,429 INFO NetworkManager: <info> Activation (p6p1) Stage 3 of 5 (IP Configure Start) scheduled. >21:04:29,429 WARNING NetworkManager: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring... >21:04:29,430 WARNING NetworkManager: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring... >21:04:29,432 INFO NetworkManager: <info> Activation (p6p1) Stage 3 of 5 (IP Configure Start) started... >21:04:29,433 INFO NetworkManager: <info> Activation (p6p1) Beginning DHCPv4 transaction (timeout in 45 seconds) >21:04:29,462 INFO NetworkManager: <info> dhclient started with pid 815 >21:04:29,468 INFO NetworkManager: <info> Activation (p6p1) Stage 3 of 5 (IP Configure Start) complete. >21:04:29,693 INFO dhclient: Internet Systems Consortium DHCP Client 4.2.5 >21:04:29,693 INFO dhclient: Copyright 2004-2013 Internet Systems Consortium. >21:04:29,693 INFO dhclient: All rights reserved. >21:04:29,693 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ >21:04:29,693 INFO dhclient: >21:04:29,707 INFO NetworkManager: <info> (p6p1): DHCPv4 state changed nbi -> preinit >21:04:29,713 INFO dhclient: Listening on LPF/p6p1/00:30:48:8b:ff:e5 >21:04:29,714 INFO dhclient: Sending on LPF/p6p1/00:30:48:8b:ff:e5 >21:04:29,714 INFO dhclient: Sending on Socket/fallback >21:04:29,715 INFO dhclient: DHCPREQUEST on p6p1 to 255.255.255.255 port 67 (xid=0x3a79dd70) >21:04:29,722 INFO dhclient: DHCPACK from 10.8.61.252 (xid=0x3a79dd70) >21:04:29,727 INFO NetworkManager: <info> (p6p1): DHCPv4 state changed preinit -> reboot >21:04:29,728 INFO NetworkManager: <info> address 10.8.60.28 >21:04:29,728 INFO NetworkManager: <info> prefix 23 (255.255.254.0) >21:04:29,728 INFO NetworkManager: <info> gateway 10.8.61.254 >21:04:29,729 INFO NetworkManager: <info> nameserver '10.10.160.2' >21:04:29,729 INFO NetworkManager: <info> nameserver '10.11.5.19' >21:04:29,729 INFO NetworkManager: <info> nameserver '10.5.30.160' >21:04:29,730 INFO NetworkManager: <info> domain name 'idm.lab.eng.rdu2.redhat.com' >21:04:29,730 INFO NetworkManager: <info> NIS domain 'redhat.com' >21:04:29,731 INFO NetworkManager: <info> Activation (p6p1) Stage 5 of 5 (IPv4 Configure Commit) scheduled... >21:04:29,731 INFO NetworkManager: <info> Activation (p6p1) Stage 5 of 5 (IPv4 Commit) started... >21:04:29,732 INFO NetworkManager: <info> (p6p1): device state change: ip-config -> secondaries (reason 'none') [70 90 0] >21:04:29,732 INFO NetworkManager: <info> Activation (p6p1) Stage 5 of 5 (IPv4 Commit) complete. >21:04:29,733 INFO NetworkManager: <info> (p6p1): device state change: secondaries -> activated (reason 'none') [90 100 0] >21:04:29,734 INFO NetworkManager: <info> Policy set 'p6p1' (p6p1) as default for IPv4 routing and DNS. >21:04:29,734 INFO NetworkManager: <info> Activation (p6p1) successful, device activated. >21:04:29,737 INFO dbus-daemon: dbus[780]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' >21:04:29,738 INFO dbus-daemon: dbus[780]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.nm-dispatcher.service' for details. >21:04:29,738 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' >21:04:29,738 NOTICE dbus: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.nm-dispatcher.service' for details. >21:04:29,739 WARNING NetworkManager: <warn> Dispatcher failed: (32) Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.nm-dispatcher.service' for details. >21:04:29,741 INFO dhclient: bound to 10.8.60.28 -- renewal in 39461 seconds. >21:04:29,748 INFO NetworkManager: <info> Setting system hostname to 'link.idm.lab.eng.rdu2.redhat.com' (from address lookup) >21:04:29,750 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' >21:04:29,750 NOTICE dbus: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.nm-dispatcher.service' for details. >21:04:29,750 WARNING NetworkManager: <warn> Dispatcher failed: (32) Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.nm-dispatcher.service' for details. >21:04:29,750 INFO dbus-daemon: dbus[780]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' >21:04:29,750 INFO dbus-daemon: dbus[780]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.nm-dispatcher.service': Unit dbus-org.freedesktop.nm-dispatcher.service failed to load: No such file or directory. See system logs and 'systemctl status dbus-org.freedesktop.nm-dispatcher.service' for details. >21:04:31,802 WARNING kernel:[ 41.394797] audit_printk_skb: 21 callbacks suppressed >21:04:31,802 NOTICE kernel:[ 41.394801] type=1400 audit(1391202271.801:19): avc: denied { read write } for pid=821 comm="auditd" path="/dev/mapper/control" dev="devtmpfs" ino=1194 scontext=system_u:system_r:auditd_t:s0 tcontext=system_u:object_r:lvm_control_t:s0 tclass=chr_file >21:04:32,750 NOTICE kernel:[ 42.342256] type=1400 audit(1391202272.749:20): avc: denied { read write } for pid=855 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 >21:04:32,751 NOTICE kernel:[ 42.343700] type=1400 audit(1391202272.750:21): avc: denied { open } for pid=855 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 >21:04:32,751 NOTICE kernel:[ 42.343720] type=1400 audit(1391202272.750:22): avc: denied { ioctl } for pid=855 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 >21:04:32,823 INFO dbus-daemon: dbus[780]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' >21:04:32,824 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' >21:04:32,825 WARNING systemd: Cannot add dependency job for unit lvm2-monitor.service, ignoring: Unit dm-event.socket failed to load: No such file or directory. See system logs and 'systemctl status dm-event.socket' for details. >21:04:32,825 INFO systemd: Starting Locale Service... >21:04:32,838 INFO dbus-daemon: dbus[780]: [system] Successfully activated service 'org.freedesktop.locale1' >21:04:32,838 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.locale1' >21:04:32,838 INFO systemd: Started Locale Service. >21:04:32,839 INFO systemd-localed: Changed virtual console keymap to 'us' >21:04:32,842 INFO systemd: Stopping Setup Virtual Console... >21:04:32,848 INFO systemd: Starting Setup Virtual Console... >21:04:32,849 INFO systemd-localed: Changed X11 keyboard layout to 'us' >21:04:32,863 INFO systemd: Started Setup Virtual Console. >21:04:34,149 INFO kernel:[ 43.741035] EXT4-fs (sda1): INFO: recovery required on readonly filesystem >21:04:34,149 INFO kernel:[ 43.741040] EXT4-fs (sda1): write access will be enabled during recovery >21:04:34,166 INFO kernel:[ 43.758182] EXT4-fs (sda1): recovery complete >21:04:34,182 INFO kernel:[ 43.774941] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) >21:04:34,182 DEBUG kernel:[ 43.774959] SELinux: initialized (dev sda1, type ext4), uses xattr >21:04:34,277 INFO kernel:[ 43.869823] EXT4-fs (sdb1): INFO: recovery required on readonly filesystem >21:04:34,277 INFO kernel:[ 43.869827] EXT4-fs (sdb1): write access will be enabled during recovery >21:04:34,976 INFO kernel:[ 44.568895] EXT4-fs (sdb1): recovery complete >21:04:34,994 INFO kernel:[ 44.586538] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) >21:04:34,994 DEBUG kernel:[ 44.586550] SELinux: initialized (dev sdb1, type ext4), uses xattr >21:04:35,207 INFO kernel:[ 44.799803] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) >21:04:35,207 DEBUG kernel:[ 44.799917] SELinux: initialized (dev sda1, type ext4), uses xattr >21:04:35,335 INFO kernel:[ 44.927101] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) >21:04:35,335 DEBUG kernel:[ 44.927112] SELinux: initialized (dev sdb1, type ext4), uses xattr >21:04:35,522 INFO kernel:[ 45.114763] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null) >21:04:35,522 DEBUG kernel:[ 45.114774] SELinux: initialized (dev sdb1, type ext4), uses xattr >21:04:35,658 INFO kernel:[ 45.249854] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) >21:04:35,658 DEBUG kernel:[ 45.249976] SELinux: initialized (dev sda1, type ext4), uses xattr >21:04:35,707 DEBUG kernel:[ 45.299288] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs > > >/run/install/ks.cfg: >nfs --server vtap-eng01.storage.rdu2.redhat.com --dir /vol/engarchive2/released/F-19/GOLD/Fedora/x86_64/os/ >#url --url=nfs://vtap-eng01.storage.rdu2.redhat.com:/vol/engarchive2/released/F-19/GOLD/Fedora/x86_64/os/ > >auth --useshadow --enablemd5 ># System bootloader configuration >bootloader --location=mbr --append="console=ttyS0,19200 rescue" ># Use text mode install >text ># no specific network configuration >services --enabled=chronyd,chrony-wait > >repo --name=fedora-updates --mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=updates-released-f19&arch=x86_64 > >firewall --disabled ># Run the Setup Agent on first boot >firstboot --disable ># System keyboard >keyboard us ># System language >lang en_US.UTF-8 > >reboot >#Root password >rootpw --iscrypted $1$2jtnzPTM$x5u9wo72jloQgL8B7UIVe0 >##Root password >rootpw --iscrypted $1$DceuUICD$GmR9du9OUHgdhluhu0NgB/ ># SELinux configuration >selinux --enforcing ># System timezone >timezone America/New_York ># Install OS instead of upgrade >install > >repo --name=beaker-Fedora-debuginfo --cost=100 --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/debug >repo --name=beaker-Fedora-Everything --cost=100 --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Everything/x86_64/os >repo --name=beaker-Fedora --cost=100 --baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/os/ >zerombr >clearpart --all --initlabel > > >part /boot --size 200 --recommended --asprimary >part / --size 1024 --grow >part swap --recommended > ># no snippet data for Fedora ># no snippet data for system > >%packages --ignoremissing >@desktop-platform-devel >@development >@development-libs >@development-tools >@server-platform-devel >emacs >expect >gcc >libxml2-python >make >nfs-utils >ntp >procmail >psmisc >pyOpenSSL >redhat-lsb >sendmail >unifdef >vim-enhanced >wget >chrony >-ntp ># no snippet data for packages >%end > > > >%pre --log=/dev/console >set -x ># Check in with Beaker Server >wget -O - http://lab-02.rhts.eng.rdu.redhat.com:8000/install_start/1215820 > >wget -O /tmp/anamon 'http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon' >python /tmp/anamon --recipe-id 1215820 --xmlrpc-url 'http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2' ># no snippet data for Fedora_pre ># no snippet data for system_pre >%end > > >%post --log=/dev/console >set -x ># Check in with Beaker Server, let it know our hostname, and ># record our install time. >REPORTED_FQDN=$(hostname -f) >if [[ -z "$REPORTED_FQDN" || $REPORTED_FQDN == localhost || $REPORTED_FQDN == localhost.* ]] ; then > # hostname -f is the most future-proof approach, but it isn't always reliable > if [ -f /etc/hostname ] ; then > # Preferred fallback if the OS is recent enough to provide it > REPORTED_FQDN=$(cat /etc/hostname) > elif grep -q ^HOSTNAME= /etc/sysconfig/network ; then > # Last resort fallback to try to report something sensible > REPORTED_FQDN=$(grep ^HOSTNAME= /etc/sysconfig/network | cut -f2- -d=) > fi >fi >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/install_done/1215820/$REPORTED_FQDN > >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/nopxe/link.idm.lab.eng.rdu2.redhat.com >echo 1215820 > /root/RECIPE.TXT > ># If netboot_method= is found in /proc/cmdline record it to /root >netboot_method=$(perl -n -e'/netboot_method=([^\s]+)/ && print $1' /proc/cmdline) >if [ -n "$netboot_method" ]; then >echo $netboot_method >/root/NETBOOT_METHOD.TXT >fi > ># Enable post-install boot notification > >curl -R "http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon" -o /usr/local/sbin/anamon >curl -R "http://lab-02.rhts.eng.rdu.redhat.com/beaker/anamon.init" -o /etc/rc.d/init.d/anamon > >chmod 755 /etc/rc.d/init.d/anamon /usr/local/sbin/anamon > >if selinuxenabled &>/dev/null; then > restorecon /etc/rc.d/init.d/anamon /usr/local/sbin/anamon >fi > >chkconfig --add anamon > >cat << __EOT__ > /etc/sysconfig/anamon >XMLRPC_URL="http://lab-02.rhts.eng.rdu.redhat.com:8000/RPC2" >RECIPE_ID="1215820" >LOGFILES="/var/log/boot.log /var/log/messages /var/log/dmesg" >__EOT__ > > >if [ -e /etc/sysconfig/ntpdate ] ; then > /sbin/chkconfig ntpdate on >/dev/null 2>&1 || : >fi >if [ -e "/etc/sysconfig/ntpd" ]; then > /sbin/chkconfig ntpd on >/dev/null 2>&1 || : > GOT_G=$(/bin/cat /etc/sysconfig/ntpd | grep -E '^OPTIONS' | grep '\-g') > > if [ -z "$GOT_G" ]; then > /bin/sed -i -r 's/(^OPTIONS\s*=\s*)(['\''|"])(.+)$/\1\2\-x \3 /' /etc/sysconfig/ntpd > fi >fi >if [ -e /etc/chrony.conf ] ; then > cp /etc/chrony.conf{,.orig} > # use only DHCP-provided time servers, no default pool servers > sed -i '/^server /d' /etc/chrony.conf > cp /etc/sysconfig/network{,.orig} > # setting iburst should speed up initial sync > # https://bugzilla.redhat.com/show_bug.cgi?id=787042#c12 > echo NTPSERVERARGS=iburst >>/etc/sysconfig/network > /sbin/chkconfig ntpd off >/dev/null 2>&1 || : > /sbin/chkconfig ntpdate off >/dev/null 2>&1 || : >fi > > >if efibootmgr &>/dev/null ; then > # The installer should have added a new boot entry for the OS > # at the top of the boot order. We move it to the end of the order > # and set it as BootNext instead. > boot_order=$(efibootmgr | awk '/BootOrder/ { print $2 }') > os_boot_entry=$(cut -d, -f1 <<<"$boot_order") > new_boot_order=$(cut -d, -f2- <<<"$boot_order"),"$os_boot_entry" > efibootmgr -o "$new_boot_order" > efibootmgr -n "$os_boot_entry" > # save the boot entry for later, so that rhts-reboot can set BootNext as well > echo "$os_boot_entry" >/root/EFI_BOOT_ENTRY.TXT >fi > > > >#Add Task Repo >cat <<"EOF" >/etc/yum.repos.d/beaker-tasks.repo >[beaker-tasks] >name=beaker-tasks >baseurl=http://beaker.engineering.redhat.com/repos/1215820 >enabled=1 >gpgcheck=0 >EOF > > ># Add Harness Repo >cat <<"EOF" >/etc/yum.repos.d/beaker-harness.repo >[beaker-harness] >name=beaker-harness >baseurl=http://beaker.engineering.redhat.com/harness/Fedora19/ >enabled=1 >gpgcheck=0 >EOF > ># Add distro and custom Repos >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora-debuginfo.repo >[beaker-Fedora-debuginfo] >name=beaker-Fedora-debuginfo >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/debug >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora-Everything.repo >[beaker-Fedora-Everything] >name=beaker-Fedora-Everything >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Everything/x86_64/os >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Fedora.repo >[beaker-Fedora] >name=beaker-Fedora >baseurl=http://download.eng.rdu.redhat.com/released/F-19/GOLD/Fedora/x86_64/os/ >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF > > ># fill the yum cache and redirect output to /dev/null ># This speeds up yum because of a bug where it will update stdout too often. ># http://lists.baseurl.org/pipermail/yum-devel/2011-December/008857.html >yum check-update > /dev/null 2>&1 || true >yum -y install beah rhts-test-env beakerlib ># This may fail if you are outside of Red Hat.. >yum -y install beakerlib-redhat > >cp /etc/beah_beaker.conf{,.default} >cat << EOF > /etc/beah_beaker.conf ># see /etc/beah_beaker.conf.default for commented configuration > >[DEFAULT] ># LAB_CONTROLLER: URI of Beaker's XML-RPC handler >LAB_CONTROLLER=http://lab-02.rhts.eng.rdu.redhat.com:8000 ># ># HOSTNAME: Pretend to be machine with given name. ># NOTE: This is mostly pointless as usually correct name is assigned by DHCP. >HOSTNAME=link.idm.lab.eng.rdu2.redhat.com >RECIPEID=1215820 > ># Turn on hard limits on upload sizes: >FILE_SIZE_LIMIT=200000000 >TASK_SIZE_LIMIT=800000000 > >EOF > >cp /etc/beah.conf{,.default} >cat << EOF > /etc/beah.conf ># see /etc/beah.conf.default for commented configuration > >[DEFAULT] ># Turn on more verbose logging and redirect to console. This is useful for ># debugging harness' problems. >LOG=Info >CONSOLE_LOG=Console ># To turn on debug logging uncomment the following line. Warning: this is ># rather verbose! This also requires LOG to be Debug. >#DEVEL=True > >[TASK] >INTERFACE= > >EOF > >chkconfig --level 345 beah-srv on >chkconfig --level 345 beah-beaker-backend on >chkconfig --level 345 beah-fwd-backend on > >#Add test user account >useradd --password '$6$oIW3o2Mr$XbWZKaM7nA.cQqudfDJScupXOia5h1u517t6Htx/Q/MgXm82Pc/OcytatTeI4ULNWOMJzvpCigWiL4xKP9PX4.' test >cat <<"EOF" >/etc/profile.d/beaker.sh >export BEAKER="https://beaker.engineering.redhat.com/" >export BEAKER_JOB_WHITEBOARD='Provision Fedora-19 Fedora x86_64' >export BEAKER_RECIPE_WHITEBOARD='' >EOF >cat <<"EOF" >/etc/profile.d/beaker.csh >setenv BEAKER "https://beaker.engineering.redhat.com/" >setenv BEAKER_JOB_WHITEBOARD 'Provision Fedora-19 Fedora x86_64' >setenv BEAKER_RECIPE_WHITEBOARD '' >EOF >cat << EOF > /etc/profile.d/rh-env.sh >export LAB_CONTROLLER=lab-02.rhts.eng.rdu.redhat.com >export DUMPSERVER=netdump-01.eng.rdu.redhat.com >export NFSSERVERS="rhel3-nfs.rhts.eng.rdu.redhat.com:/export/home rhel4-nfs.rhts.eng.rdu.redhat.com:/export/home rhel5-nfs.rhts.eng.rdu.redhat.com:/export/home rhel6-nfs.rhts.eng.rdu.redhat.com:/export/home" >export LOOKASIDE=http://download.eng.rdu.redhat.com/qa/rhts/lookaside/ >export BUILDURL=http://download.eng.rdu.redhat.com >EOF >cat << EOF > /etc/profile.d/rh-env.csh >setenv LAB_CONTROLLER lab-02.rhts.eng.rdu.redhat.com >setenv DUMPSERVER netdump-01.eng.rdu.redhat.com >setenv NFSSERVERS "rhel3-nfs.rhts.eng.rdu.redhat.com:/export/home rhel4-nfs.rhts.eng.rdu.redhat.com:/export/home rhel5-nfs.rhts.eng.rdu.redhat.com:/export/home rhel6-nfs.rhts.eng.rdu.redhat.com:/export/home" >setenv LOOKASIDE http://download.eng.rdu.redhat.com/qa/rhts/lookaside/ >setenv BUILDURL http://download.eng.rdu.redhat.com >EOF ># Check in with Beaker Server, record our postinstall time. >curl http://lab-02.rhts.eng.rdu.redhat.com:8000/postinstall_done/1215820 ># Disable rhts-compat for Fedora15/RHEL7 and newer. >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END ># no snippet data for Fedora_post ># no snippet data for system_post >%end > ># Disable rhts-compat for Fedora15 and newer. >%post --log=/dev/console >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END >%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 1060343
: 857970 |
857971
|
857972
|
857973
|
857974
|
857975
|
857976
|
857977
|
857978
|
857979
|
857980