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 631920 Details for
Bug 869171
KickstartValueError: The following problem occurred on line 4 of the kickstart file: Specified unpartitioned disk vda in partition command
[?]
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), 341.15 KB, created by
Jan ONDREJ
on 2012-10-23 08:02:33 UTC
(
hide
)
Description:
File: anaconda-tb
Filename:
MIME Type:
Creator:
Jan ONDREJ
Created:
2012-10-23 08:02:33 UTC
Size:
341.15 KB
patch
obsolete
>anaconda 18.14 exception report >Traceback (most recent call first): > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 1015, in execute > raise KickstartValueError, formatErrorMsg(self.lineno, msg="Specified unpartitioned disk %s in partition command" % self.disk) > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 863, in execute > p.execute(storage, ksdata, instClass) > File "/usr/lib64/python2.7/site-packages/pyanaconda/kickstart.py", line 1558, in doKickstartStorage > ksdata.partition.execute(storage, ksdata, instClass) > File "/usr/lib64/python2.7/site-packages/pyanaconda/ui/gui/spokes/storage.py", line 379, in _doExecute > doKickstartStorage(self.storage, self.data, self.instclass) > File "/usr/lib64/python2.7/threading.py", line 504, in run > self.__target(*self.__args, **self.__kwargs) > File "/usr/lib64/python2.7/site-packages/pyanaconda/threads.py", line 87, in run > threading.Thread.run(self, *args, **kwargs) >KickstartValueError: The following problem occurred on line 4 of the kickstart file: > >Specified unpartitioned disk vda in partition command > > >Local variables in innermost frame: >instClass: <pyanaconda.installclass.DefaultInstall object at 0x7fbbdf1dda50> >should_clear: False >devicetree: <pyanaconda.storage.devicetree.DeviceTree object at 0x7fbbe3578f90> >self: part --fstype="biosboot" --ondisk=vda --size=2 > >storage: <pyanaconda.storage.Storage object at 0x7fbbe3578b10> >n: vda >ksdata: #version=DEVEL ># System authorization information >auth --useshadow --enablemd5 ># Install OS instead of upgrade >install ># Firewall configuration >firewall --enabled ># Use network installation >url --url="http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os" >repo --name="Updates" --baseurl=http://ftp.upjs.sk/pub/fedora/linux/updates/18/x86_64/ ># Network information >network --bootproto=dhcp >network --bootproto=dhcp --hostname=localhost.localdomain ># Reboot after installation >reboot# Run the Setup Agent on first boot >firstboot --enable >ignoredisk --only-use=vda ># Keyboard layouts >keyboard 'us'# System language >lang sk_SK.UTF-8 ># Installation logging level >logging --level=info ># Root password >rootpw --iscrypted $1$Nd.xn29E$ZyPRpRorSV06piZyARGxy/ ># SELinux configuration >selinux --permissive ># System services >services --disabled="netfs" --enabled="network" ># System timezone >timezone Europe/Bratislava --isUtc ># System bootloader configuration >bootloader --location=mbr --timeout=1 --boot-drive=vda ># Clear the Master Boot Record >zerombr ># Partition clearing information >clearpart --none --drives=vda ># Disk partitioning information >part --fstype="biosboot" --ondisk=vda --size=2 >part / --fstype="ext4" --ondisk=vda --size=3072 >part --ondisk=vda --size=1024 > >%pre --interpreter=/usr/bin/python ># SAL's fedora/centos kickstart script > >import os, sys, re, socket, urllib2 > >part_names = dict( > swap='swap', > boot='/boot', > var='/var', > home='/home', > tmp='/tmp', > www='/var/www', > backuppc='/var/lib/BackupPC', > mysql='/var/lib/mysql', > pgsql='/var/lib/pgsql' >) >sys.stdout = open('/tmp/salstar.ks', 'wt') >spare = 2 > ># check distribution (el6 or fc17) >distro, arch = os.popen('uname -r').read().strip().split('.')[-2:] >if distro.startswith("fc"): > biosboot = 2 >else: > biosboot = 0 >if arch.endswith('86'): > arch = "i386" > ># boot command line >cmd_line = {} >for cmd in open('/proc/cmdline').read().strip().split(' '): > arg = None > if '=' in cmd: > cmd, arg = cmd.split('=', 1) > cmd_line[cmd] = arg > >def disksize(*disks): > ds = [ > int(open('/sys/class/block/%s/size' % x).read().strip())/2048 > for x in disks > ] > print "# disksizes: %s = %s" % (disks, ds) > return min(ds) > >def size(s, disks=None, sum=0): > if s in ['', 'max']: > if disks is None: > return "1 --grow" > else: > print "# sum=%d kB" % sum > return disksize(*disks)-sum > if s.endswith('m') or s.endswith('M'): > return int(s[:-1]) > else: > return int(float(s.strip('gG'))*1024) > >class mk_raid: > cntr = -1 > def __init__(self, disks): > self.disks = disks > def add(self, s): > self.cntr += 1 > for i in 0, 1: > print "part raid.%d%d --size=%s --ondisk=%s" \ > % (self.cntr, i+1, s, self.disks[i]) > def add_vg(self, vg, s): > self.add(s) > print "raid pv.01 --level=1 --device=md%d raid.%d1 raid.%d2" \ > % (self.cntr, self.cntr, self.cntr) > print "volgroup %s pv.01" % vg > def add_part(self, mp, s, fstype='--fstype=ext4'): > self.add(s) > print "raid %s --level=1 --device=md%d %s raid.%d1 raid.%d2" \ > % (mp, self.cntr, fstype, self.cntr, self.cntr) > >def not_cdrom_or_lun(hd): > try: > media = open('/sys/block/%s/device/media' % hd, 'r').read().strip() > if media=='cdrom': > return False > except IOError: > pass > try: > model = open('/sys/block/%s/device/model' % hd, 'r').read().strip() > if model=='LUNZ': > return False > except IOError: > pass > return True > >def detect_disks(): > return [x for x in os.listdir('/sys/block') > if (x[0:2] in ['sd','vd','hd']) and not_cdrom_or_lun(x)] > >def initdisks(disks): > if 'zerombr' in cmd_line: > print "zerombr" > if disks: > print "clearpart --all --initlabel --drives=%s" % ','.join(disks) > else: > print "clearpart --all --initlabel" > >def autopartition(disks, parts): > if disks and disks.startswith("iscsi:"): > #print "ignoredisk --interactive" > print "iscsiname iqn.2012-09.test" > print "iscsi --ipaddr=%s --target=%s --user=%s --password=%s" \ > % tuple(disks[6:].split(";", 3)) > return > if not parts: > return > if disks: > print "ignoredisk --only-use=%s" % disks > disks = disks.split(',') > else: > disks = detect_disks() > parts = [x.split('=', 1) for x in parts.split(',')] > vg = None > if len(disks)==1: > # one disk partition scheme > disk0 = disks[0] > for key, value in parts: > if ':' in value: > fstype = "--fstype=%s" % value.split(':', 1)[1] > value = value.split(':', 1)[0] > elif key=='swap': > fstype = '' > else: > fstype = '--fstype=ext4' > if key=='vg': > vg = value > print "part pv.01 --ondisk=%s --size=1 --grow" % disk0 > print "volgroup %s pv.01" % vg > elif key=='root': > initdisks(disks) > if biosboot>0: > print "part biosboot --fstype=biosboot --ondisk=%s --size=%d" \ > % (disk0, biosboot) > print "part / --ondisk=%s %s --size=%d" \ > % (disk0, fstype, size(value)) > elif key in part_names: > if vg: > print "logvol %s --vgname=%s --size=%s --name=%s %s" \ > % (part_names[key], vg, size(value), key, fstype) > else: > print "part %s --ondisk=%s %s --size=%d" \ > % (part_names[key], disk0, fstype, size(value)) > elif len(disks)==2: > # raid 1 partition scheme > sum = spare # 1 > disk0 = disks[0] > disk1 = disks[1] > raid = mk_raid(disks) > for key, value in parts: > if ':' in value: > fstype = "--fstype=%s" %value.split(':', 1)[1] > value = value.split(':', 1)[0] > elif key=='swap': > fstype = '' > else: > fstype = '--fstype=ext4' > print "# key, value, fstype:", key, value, fstype > if key=='vg': > vg = value > # calculate pv size > #s = 0 > #for k, v in parts: > # if k=='vg': > # s = 1 > # elif s>0: > # if v.isdigit(): > # s += int(v)*1024 > # else: > # s += 1 > # add pv > # --grow disabled in F14 for raid partitions :-( > #raid.add_vg(vg, "%d --grow" % s) > print "# disk size: %d-%d" % (disksize(*disks), sum) > raid.add_vg(vg, "%d" % (disksize(*disks)-sum)) > elif key=='root': > initdisks(disks) > if biosboot>0: > print "part biosboot --fstype=biosboot --ondisk=%s --size=%d" \ > % (disk0, biosboot) > print "part biosboot --fstype=biosboot --ondisk=%s --size=%d" \ > % (disk1, biosboot) > sum += biosboot > s = size(value, disks, sum) > raid.add_part("/", s, fstype) > sum += s > elif key in part_names: > if vg: > print "logvol %s --vgname=%s --size=%s --name=%s %s" \ > % (part_names[key], vg, size(value), key, fstype) > else: > s = size(value, disks, sum) > raid.add_part(part_names[key], s, fstype) > sum += s > print "# sum=%d kB" % sum > >class repocfg_class: > fc = dict( > base = [ > 'url --url=%(mirror)s/fedora/linux/%(dir)s/%(ver)d/Fedora/%(arch)s/os/', > 'repo --name=Updates --baseurl=%(mirror)s/fedora/linux/updates/%(ver)d/%(arch)s/' > ], > other = [ > 'repo --name=Everything --baseurl=%(mirror)s/fedora/linux/%(dir)s/%(ver)d/Everything/%(arch)s/os/', > 'repo --name=Salstar --baseurl=http://www.salstar.sk/pub/fedora/%(ver)d/%(arch)s/' > ], > testing = [ > 'repo --name=Updates-testing --baseurl=%(mirror)s/fedora/linux/updates/testing/%(ver)d/%(arch)s/' > ] > ) > el = dict( > base = [ > 'url --url=%(mirror)s/centos/%(ver)d/os/%(arch)s/', > 'repo --name=Updates --baseurl=%(mirror)s/centos/%(ver)d/updates/%(arch)s/', > 'repo --name=EPEL --baseurl=%(mirror)s/mirrors/epel/%(ver)d/%(arch)s/' > ], > other = [ > 'repo --name=Salstar --baseurl=http://www.salstar.sk/pub/epel/%(ver)d/%(arch)s/' > ], > testing = [ > 'repo --name=EPEL-testing --baseurl=%(mirror)s/mirrors/epel/testing/%(ver)d/%(arch)s/' > ] > ) > all_repos = ('pkgs' in cmd_line) or ('packages' in cmd_line) > cmd_line_testing = 'testing' in cmd_line > cmd_line_repo = cmd_line.get('repo') > cmd_line_packages = cmd_line.get('pkgs') or cmd_line.get('packages') > def get(self, distro): > grps = getattr(self, distro) > ret = grps['base'] > if self.cmd_line_testing: > ret.extend(grps['testing']) > if self.all_repos: > ret.extend(grps['other']) > return ret > def repo_update(self, distro, version, arch): > for repo in self.get(distro): > if repo.startswith("url") and self.cmd_line_repo: > print "url --url=%s" % self.cmd_line_repo > else: > print repo % dict( > mirror="http://ftp.upjs.sk/pub", > dir="releases", > ver=version, > arch=arch > ) > def geturl(self, url): > if "://" not in url: > url = os.path.join(os.path.dirname(cmd_line['ks']), url) > return urllib2.urlopen(url).read() > def package_update(self, distro, version): > distro_packages = dict( > fc = ["gdisk"], > el = ["epel-release"] > ) > group_packages = dict( > desktop = 'desktop.pkgs' > ) > print "%packages --ignoremissing" > print "\n".join(distro_packages.get(distro)) > if self.cmd_line_packages: > for pkg in self.cmd_line_packages.split(','): > if pkg in group_packages: > print self.geturl(group_packages[pkg]) > else: > print pkg > print "%end" > >def lang(lang): > if not lang: > return > langs = dict( > en = "en_US", > sk = "sk_SK", > cs = "cs_CZ" > ) > if "_" not in lang and lang in langs: > lang = langs[lang] > if "." not in lang: > lang += ".UTF-8" > print "lang", lang > >if "text" in cmd_line: > print "text" >autopartition( > cmd_line.get('disk') or cmd_line.get('disks'), > cmd_line.get('part') >) >repocfg = repocfg_class() >repocfg.repo_update(distro[:2], int(distro[2:]), arch) >repocfg.package_update(distro[:2], int(distro[2:])) >lang(cmd_line.get('lang')) >%end > >%post --interpreter=/bin/bash >cd /etc/yum.repos.d >#wget -q http://158.197.16.66/pub/yum/yum.repos.d/salstar.repo >if grep -q -E '^(CentOS|Red|Scientific)' /etc/redhat-release; then > distro="-el" >else > distro="-fedora" >fi >cat > /etc/yum.repos.d/salstar.repo << KSEOF >[salstar.sk] >name=Salstar.sk \$releasever - \$basearch - Base >#baseurl=http://ftp.upjs.sk/pub/users/sal/Fedora/\$releasever/ >mirrorlist=http://www.salstar.sk/download/mirrors/salstar$distro >gpgkey=http://www.salstar.sk/pub/sagator/SAGATOR-GPG-KEY >gpgcheck=1 >enabled=1 >metadata_expire=1 > >[salstar.sk-test] >name=Salstar.sk \$releasever - \$basearch - Testing >mirrorlist=http://www.salstar.sk/download/mirrors/salstar$distro-testing >gpgkey=http://www.salstar.sk/pub/sagator/SAGATOR-GPG-KEY >gpgcheck=1 >enabled=0 >metadata_expire=1 > >[salstar.sk-builder] >name=builder.salstar.sk >baseurl=http://builder.salstar.sk/local/\$releasever$distro/\$basearch/ >gpgkey=http://www.salstar.sk/pub/sagator/SAGATOR-GPG-KEY >gpgcheck=0 >enabled=0 >metadata_expire=1 >KSEOF >cd /etc/pki/rpm-gpg >#wget -q http://158.197.16.66/pub/sagator/SAGATOR-GPG-KEY >cat > /etc/pki/rpm-gpg/SAGATOR-GPG-KEY << KSEOF >-----BEGIN PGP PUBLIC KEY BLOCK----- >Version: GnuPG v1.4.6 (GNU/Linux) > >mQGiBEWSfqgRBADu/silyFvlgwCzsu8Ha/llSd4MidiYIeWO8vLszSJn6kVo+xbF >hDlj/UXHQVwp/Q6pqrrNxucJSFaE/qWi6KuZ4XqN2xWyUAjSCJ0BiUJyoTD9NOg3 >yXyzXVLRklHaeOUdNF7e376Vfwsgix1wsehBh66vtyX1znDfWPcqfAZkpwCgsw95 >2f/9qBYhCM61Nd/jFe6HbW0EANmlw/CIS+QNCQQPntXbL2rGD80VLXK6W+yIMuPu >bkSn1PJpeO4BBjOynVqAuW4bERm5gSPDxBqE5vD9Ef8pqsoUHRIVTyj1Z2I1JbXn >OjbUZmFcLdqVNNHNRu3Bkb8YLD3qdtG6CHG6CfowYXZfdaTVgyYIcLiStGNNKaXI >omJQA/9YFv2xvP82xykZvHqx0hnn/NXFrSn+9TJGdDKOo/6/6AA6BwXRBwjHG1x2 >1CCIbnTOmoDeBw5+hpVtLnACannT6VnNvZ+Zm+qoMBZ/E+2m6MkkywyP7oUIsxLp >7FnZHd/e6FGpgzup55mZboAgth/l4+w1ztF1aCGHu6ATsR3VWLQpSmFuIE9ORFJF >SiAoU0FHQVRPUikgPG9uZHJlampAc2Fsc3Rhci5zaz6IYAQTEQIAIAUCRZJ+qAIb >AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEAiqUAZrgi/nW/QAoJfsGDX8h6WH >JqwZbPlWrR9FRP8ZAJ94pSLvMM6rfXlMbeOejfvFcdwc8w== >=R77L >-----END PGP PUBLIC KEY BLOCK----- >KSEOF >mkdir -p /root/.ssh >echo 'from="work.salstar.sk,158.197.240.41" ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAou3n+SuHVsuM5QXAKnIKilPHnJdKm/KP31Ho2VahJIC7mK0+snbXZYXeQmnwYvqQaDVCl8p0ANMonbs189t+RdBZ86Yq6/boc7zhyrj3gqzflsjyGWp5Gfo2AGQ9pgW3JMHefHMMXqF2uB9pT7PRL873gGfMG1WE3W+loFpDYPgg5TQvDifDP+cnlEdT/30JROFBbJ6sJro5la+7vZT/Yd9JOyNSvjizSsqLyva/t1zhQ2Bb37xGJOgVoRc1Hj+fYe1+jaD2ebtGWWIykvfIb33tpoBg3KkN01rrniTiVD8t1yNPGxc9VecqJoK5QJOCZ6zpjeFtvmiZwdd9bgfznQ== ondrejj@work.salstar.sk' >> /root/.ssh/authorized_keys >#chkconfig network on >#chkconfig postfix on >if [ "$distro" = "fedora" ]; then > GRUB_MODULES="part_gpt part_msdos raid mdraid09 mdraid1x" > if [ -e /sys/block/vdb ]; then > GRUB_HD=/dev/vd > fi > if [ -e /sys/block/sdb ]; then > GRUB_HD=/dev/sd > fi > if [ "$GRUB_HD" ]; then > echo "Configuring grub2 on $GRUB_HD*" > /sbin/grub2-install --modules="$GRUB_MODULES" ${GRUB_HD}b > /sbin/grub2-install --modules="$GRUB_MODULES" ${GRUB_HD}a > echo "GRUB_PRELOAD_MODULES='$GRUB_MODULES'" >> /etc/default/grub > fi >> /root/kslog >else # distro=el > if [ -e /sys/block/vdb -o -e /sys/block/sdb ]; then > echo -e 'root (hd0,0)\nsetup (hd0)' \ > | grub --device-map=/boot/grub/device.map > echo -e 'root (hd1,0)\nsetup (hd1)' \ > | grub --device-map=/boot/grub/device.map > fi >fi >sync >%end > >%packages --nobase >@base-x >@core >@dial-up >@firefox >@fonts >@gnome-desktop >@hardware-support >@input-methods >@multimedia >@printing >@standard >dhclient >gdisk >iptables >joe >mc >openssh-clients >openssh-server >parted >rsync >screen >wget >which >yum >yum-utils >-sendmail > >%end > >names: ['vda', 'mapper/vda'] >kwargs: {'format': BIOSBoot instance (0x3941a10) -- > type = biosboot name = BIOS Boot status = False > device = None uuid = None exists = None > options = None supported = True formattable = True resizable = False >} >disk: existing 8192MB disk vda (27) >type: biosboot > > >Anaconda instance, containing members: >_instClass: DefaultInstall instance, containing members: >_intf: GraphicalUserInterface instance, containing members: > _intf.instclass: Already dumped (DefaultInstall instance) > _intf._hubs: [<class 'pyanaconda.ui.gui.hubs.summary.SummaryHub'> >, <class 'pyanaconda.ui.gui.hubs.progress.ProgressHub'> >] > _intf.storage: Storage instance, containing members: > _intf.storage.clearPartChoice: None > _intf.storage.eddDict: {} > _intf.storage.dasd: DASD instance, containing members: > _intf.storage.dasd.dasdfmt: /sbin/dasdfmt > _intf.storage.dasd.commonArgv: [-y, -d, cdl, -b, 4096] > _intf.storage.dasd.started: True > _intf.storage.dasd.totalCylinders: 0 > _intf.storage.dasd._maxFormatJobs: 0 > _intf.storage.dasd._devices: [] > _intf.storage.dasd._completedCylinders: 0.0 > _intf.storage.dasd._dasdlist: [] > _intf.storage.roots: [] > _intf.storage.zfcp: ZFCP instance, containing members: > _intf.storage.zfcp.down: False > _intf.storage.zfcp.hasReadConfig: True > _intf.storage.zfcp.intf: None > _intf.storage.zfcp.fcpdevs: set([]) > _intf.storage.autoPartEscrowCert: None > _intf.storage.autoPartAddBackupPassphrase: False > _intf.storage.escrowCertificates: {} > _intf.storage.fsset: FSSet instance, containing members: > _intf.storage.fsset.origFStab: None > _intf.storage.fsset._usb: None > _intf.storage.fsset.devicetree: DeviceTree instance, containing members: > _intf.storage.fsset.devicetree.populated: True > _intf.storage.fsset.devicetree._hidden: [] > _intf.storage.fsset.devicetree.names: [sr0, vda, loop0, /tmp/curl_fetch_url0/squashfs.img (deleted), loop1, /LiveOS/rootfs.img, loop2, /overlay (deleted), loop3, loop4, loop5, loop6, loop7, live-rw] > _intf.storage.fsset.devicetree.liveBackingDevice: None > _intf.storage.fsset.devicetree.dasd: Already dumped (DASD instance) > _intf.storage.fsset.devicetree._cleanup: False > _intf.storage.fsset.devicetree.iscsi: iscsi instance, containing members: > _intf.storage.fsset.devicetree.iscsi.initiatorSet: False > _intf.storage.fsset.devicetree.iscsi.ifaces: {} > _intf.storage.fsset.devicetree.iscsi.started: False > _intf.storage.fsset.devicetree.iscsi._initiator: Skipped > _intf.storage.fsset.devicetree.iscsi.discovered_targets: {} > _intf.storage.fsset.devicetree.iscsi.ibftNodes: [] > _intf.storage.fsset.devicetree.platform: X86 instance, containing members: > _intf.storage.fsset.devicetree.shouldClear: <bound method Storage.shouldClear of <pyanaconda.storage.Storage object at 0x7fbbe3578b10>> > _intf.storage.fsset.devicetree.exclusiveDisks: [vda] > _intf.storage.fsset.devicetree.unusedRaidMembers: [] > _intf.storage.fsset.devicetree.mpathFriendlyNames: True > _intf.storage.fsset.devicetree.topology: MultipathTopology instance, containing members: > _intf.storage.fsset.devicetree.topology._multipaths: [] > _intf.storage.fsset.devicetree.topology._nondisks: [sr0] > _intf.storage.fsset.devicetree.topology._devmap: {'vda': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/pci0000:00/0000:00:04.0/virtio1/block/vda > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/vda > _intf.storage.fsset.devicetree.topology._devmap.sysname: vda > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: None >, 'sr0': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/sr0 > _intf.storage.fsset.devicetree.topology._devmap.sysname: sr0 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 0 >, 'dm-0': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/dm-0 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/dm-0 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/dm-0 > _intf.storage.fsset.devicetree.topology._devmap.sysname: dm-0 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 0 >, 'loop3': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop3 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop3 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop3 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop3 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 3 >, 'loop2': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop2 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop2 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop2 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop2 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 2 >, 'loop1': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop1 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop1 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop1 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop1 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 1 >, 'loop0': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop0 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop0 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop0 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop0 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 0 >, 'loop7': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop7 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop7 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop7 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop7 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 7 >, 'loop6': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop6 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop6 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop6 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop6 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 6 >, 'loop5': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop5 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop5 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop5 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop5 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 5 >, 'loop4': UdevDevice instance, containing members: > _intf.storage.fsset.devicetree.topology._devmap.subsystem: block > _intf.storage.fsset.devicetree.topology._devmap.syspath: /sys/devices/virtual/block/loop4 > _intf.storage.fsset.devicetree.topology._devmap.devpath: /devices/virtual/block/loop4 > _intf.storage.fsset.devicetree.topology._devmap.devnode: /dev/loop4 > _intf.storage.fsset.devicetree.topology._devmap.sysname: loop4 > _intf.storage.fsset.devicetree.topology._devmap.devtype: disk > _intf.storage.fsset.devicetree.topology._devmap.sysnum: 4 >} > _intf.storage.fsset.devicetree.topology._devices: [Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >, Already dumped (UdevDevice instance) >] > _intf.storage.fsset.devicetree.topology._singlepaths: [vda, loop0, loop1, loop2, loop3, loop4, loop5, loop6, loop7, dm-0] > _intf.storage.fsset.devicetree.topology._mpath_topology: {} > _intf.storage.fsset.devicetree._ignoredDisks: [loop3, loop4, loop5, loop6, loop7] > _intf.storage.fsset.devicetree.protectedDevSpecs: [] > _intf.storage.fsset.devicetree._devices: [OpticalDevice instance, containing members: > _model: QEMU_DVD-ROM > controllable: True > major: 11 > kids: 0 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: existing None > sysfsPath: /devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0 > _vendor: None > _name: sr0 > _targetSize: 0 > protected: False > parents: [] > originalFormat: existing None > bus: Skipped > _size: 0 > _serial: None > id: 26 > minor: 0 >, existing 8192MB disk vda (27) >, FileDevice instance, containing members: > _model: Skipped > controllable: False > major: 0 > kids: 1 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: existing None > sysfsPath: Skipped > _vendor: Skipped > _name: /tmp/curl_fetch_url0/squashfs.img (deleted) > _targetSize: 0 > protected: False > parents: [] > originalFormat: existing None > bus: Skipped > _size: 0 > _serial: None > id: 28 > minor: 0 >, LoopDevice instance, containing members: > _model: Skipped > controllable: False > major: 0 > kids: 0 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: existing None > sysfsPath: Skipped > _vendor: Skipped > _name: loop0 > _targetSize: 0 > protected: False > parents: [Already dumped (FileDevice instance) >] > originalFormat: existing None > bus: Skipped > _size: 0 > _serial: None > id: 29 > minor: 0 >, FileDevice instance, containing members: > _model: Skipped > controllable: False > major: 0 > kids: 1 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: existing None > sysfsPath: Skipped > _vendor: Skipped > _name: /LiveOS/rootfs.img > _targetSize: 0 > protected: False > parents: [] > originalFormat: existing None > bus: Skipped > _size: 0 > _serial: None > id: 30 > minor: 0 >, LoopDevice instance, containing members: > _model: Skipped > controllable: False > major: 0 > kids: 0 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: Ext4FS instance, containing members: > _format.uuid: a5f7360b-4196-454f-8b2e-aa85cbcf660a > _format.exists: True > _format._mountpoint: None > _format._majorminor: None > _format._minInstanceSize: 0 > _format._mountType: ext4 > _format.fsprofile: None > _format.label: Anaconda > _format._targetSize: 1024.0 > _format._size: 1024.0 > _format.mountopts: None > _format.mountpoint: None > _format._migrate: False > _format._device: /dev/loop1 > sysfsPath: Skipped > _vendor: Skipped > _name: loop1 > _targetSize: 0 > protected: False > parents: [Already dumped (FileDevice instance) >] > originalFormat: Ext4FS instance, containing members: > originalFormat.uuid: a5f7360b-4196-454f-8b2e-aa85cbcf660a > originalFormat.exists: True > originalFormat._mountpoint: None > originalFormat.mountpoint: None > originalFormat._majorminor: None > originalFormat._mountType: ext4 > originalFormat.fsprofile: None > originalFormat.label: Anaconda > originalFormat._targetSize: 1024.0 > originalFormat._minInstanceSize: 0 > originalFormat.mountopts: None > originalFormat._size: 1024.0 > originalFormat._migrate: False > originalFormat._device: /dev/loop1 > bus: Skipped > _size: 0 > _serial: None > id: 31 > minor: 0 >, FileDevice instance, containing members: > _model: Skipped > controllable: False > major: 0 > kids: 1 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: existing None > sysfsPath: Skipped > _vendor: Skipped > _name: /overlay (deleted) > _targetSize: 0 > protected: False > parents: [] > originalFormat: existing None > bus: Skipped > _size: 0 > _serial: None > id: 32 > minor: 0 >, LoopDevice instance, containing members: > _model: Skipped > controllable: False > major: 0 > kids: 1 > _partedDevice: None > uuid: None > exists: True > fstabComment: Skipped > _format: existing None > sysfsPath: Skipped > _vendor: Skipped > _name: loop2 > _targetSize: 0 > protected: False > parents: [Already dumped (FileDevice instance) >] > originalFormat: existing None > bus: Skipped > _size: 0 > _serial: None > id: 33 > minor: 0 >, existing 1024MB dm live-rw (34) with existing ext4 filesystem >] > _intf.storage.fsset.devicetree.protectedDevNames: [] > _intf.storage.fsset.devicetree.diskImages: {} > _intf.storage.fsset.devicetree._actions: [] > _intf.storage.fsset.preserveLines: [] > _intf.storage.fsset._devshm: None > _intf.storage.fsset._dev: None > _intf.storage.fsset.blkidTab: None > _intf.storage.fsset._proc: None > _intf.storage.fsset.active: False > _intf.storage.fsset.cryptTab: None > _intf.storage.fsset._devpts: None > _intf.storage.fsset._sysfs: None > _intf.storage.fsset._selinux: None > _intf.storage.platform: X86 instance, containing members: > _intf.storage.config: StorageDiscoveryConfig instance, containing members: > _intf.storage.config.clearPartType: 2 > _intf.storage.config.clearNonExistent: False > _intf.storage.config.ignoredDisks: [] > _intf.storage.config.protectedDevSpecs: [] > _intf.storage.config.ignoreDiskInteractive: False > _intf.storage.config.exclusiveDisks: [vda] > _intf.storage.config.clearPartDevices: [] > _intf.storage.config.zeroMbr: True > _intf.storage.config.diskImages: {} > _intf.storage.config.clearPartDisks: [vda] > _intf.storage.config.mpathFriendlyNames: True > _intf.storage.config.initializeDisks: False > _intf.storage.size_sets: [] > _intf.storage.autoPartType: None > _intf.storage._bootloader: GRUB2 instance, containing members: > _intf.storage._bootloader._disk_order: [] > _intf.storage._bootloader.console_options: Skipped > _intf.storage._bootloader.console: Skipped > _intf.storage._bootloader.skip_bootloader: False > _intf.storage._bootloader.warnings: [] > _intf.storage._bootloader.chain_images: [] > _intf.storage._bootloader.stage2_is_preferred_stage1: False > _intf.storage._bootloader.stage2_device: None > _intf.storage._bootloader.disks: [] > _intf.storage._bootloader._update_only: False > _intf.storage._bootloader._default_image: None > _intf.storage._bootloader.platform: Already dumped (X86 instance) > _intf.storage._bootloader.encrypted_password: Skipped > _intf.storage._bootloader.errors: [] > _intf.storage._bootloader.stage1_device: None > _intf.storage._bootloader._timeout: 1 > _intf.storage._bootloader.stage1_disk: Already dumped (DiskDevice instance) > _intf.storage._bootloader.password: None > _intf.storage._bootloader.dracut_args: > _intf.storage._bootloader.boot_args: $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) > _intf.storage._bootloader.linux_images: [] > _intf.storage.devicetree: Already dumped (DeviceTree instance) > _intf.storage.defaultFSType: ext4 > _intf.storage._dumpFile: /tmp/storage.state > _intf.storage.services: set([]) > _intf.storage.data: Skipped > _intf.storage.encryptionPassphrase: None > _intf.storage.encryptionRetrofit: False > _intf.storage._nextID: 15 > _intf.storage.fcoe: fcoe instance, containing members: > _intf.storage.fcoe.started: True > _intf.storage.fcoe.nics: [] > _intf.storage.fcoe.lldpadStarted: False > _intf.storage.autoPartitionRequests: [PartSpec instance (0x7fbbd61a8710) -- > mountpoint = / lv = True singlePV = False btrfs = True > weight = 0 fstype = ext4 encrypted = True > size = 1024 maxSize = 51200 grow = True > >, PartSpec instance (0x7fbbd61a8750) -- > mountpoint = /home lv = True singlePV = False btrfs = True > weight = 0 fstype = ext4 encrypted = True > size = 500 maxSize = None grow = True > >, PartSpec instance (0x7fbbd61a8790) -- > mountpoint = /boot lv = False singlePV = False btrfs = False > weight = 2000 fstype = ext4 encrypted = False > size = 500 maxSize = None grow = False > >, PartSpec instance (0x7fbbd61a87d0) -- > mountpoint = None lv = False singlePV = False btrfs = False > weight = 5000 fstype = biosboot encrypted = False > size = 1 maxSize = None grow = False > >, PartSpec instance (0x7fbbd61a8810) -- > mountpoint = None lv = True singlePV = False btrfs = False > weight = 0 fstype = swap encrypted = True > size = 2016 maxSize = None grow = False > >] > _intf.storage.doAutoPart: False > _intf.storage.iscsi: Already dumped (iscsi instance) > _intf.storage.encryptedAutoPart: False > _intf._ui: None > _intf._actions: Skipped > _intf.payload: YumPayload instance, containing members: > _intf.payload._groups: Skipped > _intf.payload._yum: Skipped > _intf.payload.install_device: None > _intf.payload._root_dir: /tmp/yum.root > _intf.payload._repos_dir: /etc/yum.repos.d,/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anaconda.repos.d > _intf.payload._packages: [] > _intf.payload._requiredPackages: [] > _intf.payload._requiredGroups: [] > _intf.payload._setup: True > _intf.payload.txID: 1350978662.61 > _intf.payload._createdInitrds: False > _intf.payload._space_required: 2.8 Gb > _intf.payload.data: Skipped > _intf.payload._kernelVersionList: [] >updateSrc: None >firewall: Firewall instance, containing members: > firewall.portlist: [] > firewall.servicelist: [] > firewall.trustdevs: [] > firewall.enabled: 1 >rootParts: None >upgradeRoot: None >_platform: Already dumped (X86 instance) >id: None >rescue: False >mediaDevice: None >upgrade: False >_network: None >methodstr: http://ftp.upjs.sk/pub/fedora/linux/development/18/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: GRUB2 instance, containing members: > _bootloader._disk_order: [] > _bootloader.console_options: Skipped > _bootloader.console: Skipped > _bootloader.skip_bootloader: False > _bootloader.warnings: [] > _bootloader.chain_images: [] > _bootloader.stage2_is_preferred_stage1: False > _bootloader.disks: [] > _bootloader._update_only: False > _bootloader._default_image: None > _bootloader.platform: Already dumped (X86 instance) > _bootloader.encrypted_password: Skipped > _bootloader.errors: [] > _bootloader.stage1_device: None > _bootloader._timeout: None > _bootloader.stage1_disk: None > _bootloader.password: None > _bootloader.dracut_args: > _bootloader.boot_args: $([ -x /usr/sbin/rhcrashkernel-param ] && /usr/sbin/rhcrashkernel-param || :) > _bootloader.linux_images: [] >_payload: Already dumped (YumPayload instance) >displayMode: g >simpleFilter: True >ksdata: Skipped >proxyUsername: None >extraModules: [] >mehConfig: Config instance, containing members: > mehConfig.programName: anaconda > mehConfig.programVersion: 18.14 > mehConfig.attrSkipList: [_intf._actions, _intf.storage.bootloader.password, _intf.storage.data, _bootloader.encrypted_password, _bootloader.password, payload._groups, payload._yum] > mehConfig.localSkipList: [passphrase, password] > 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, /mnt/sysimage/root/upgrade.log, /proc/cmdline, /tmp/syslog, /run/install/ks.cfg] >_backend: None >isHeadless: False >reIPLMessage: None >_storage: Already dumped (Storage instance) >dir: None >opts: {'noipv6': False, 'noipv4': False, 'updateSrc': None, 'selinux': True, 'module': [], 'syslog': None, 'leavebootorder': False, 'images': [], 'serial': False, 'dmraid': True, 'armPlatform': None, 'virtpconsole': None, 'memcheck': True, 'iscsi': False, 'ksfile': '/run/install/ks.cfg', 'kbdtype': None, 'runres': None, 'xdriver': None, 'display_mode': 'g', 'stage2': None, 'method': 'http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os', 'vncpassword': '', 'vnc': False, 'rescue': False, 'noverifyssl': False, 'autostep': False, 'proxy': None, 'dlabel': False, 'vncconnect': None, 'lang': None, 'liveinst': False, 'loglevel': None, 'isHeadless': False, 'multiLib': False, 'rescue_nomount': False, 'keymap': None, 'mpath': True, 'ibft': True, 'debug': False, 'nofb': None, 'targetArch': None} >proxy: None > > >/tmp/anaconda.log: >07:50:40,670 INFO anaconda: /sbin/anaconda 18.14 >07:50:41,689 INFO anaconda: 1048576 kB (1024 MB) are available >07:50:41,689 INFO anaconda: check_memory(): total:1024, needed:512, graphical:512 >07:50:41,707 INFO anaconda: anaconda called with cmdline = ['/sbin/anaconda'] >07:50:41,709 INFO anaconda: Default encoding = utf-8 >07:50:41,821 INFO anaconda: Running kickstart %%pre script(s) >07:50:41,823 INFO anaconda.stdout: Running pre-installation scripts >07:50:41,929 INFO anaconda: All kickstart %%pre script(s) have been run >07:50:41,985 INFO anaconda: ISCSID is /sbin/iscsid >07:50:41,991 INFO anaconda: no initiator set >07:50:42,190 INFO anaconda: No FCoE EDD info found: No FCoE boot disk information is found in EDD! >07:50:42,192 INFO anaconda: no /etc/zfcp.conf; not configuring zfcp >07:50:42,635 INFO anaconda: Display mode = g >07:50:42,638 INFO anaconda: 1048576 kB (1024 MB) are available >07:50:42,639 INFO anaconda: check_memory(): total:1024, needed:512, graphical:512 >07:50:43,332 DEBUG anaconda: X server has signalled a successful start. >07:50:43,345 INFO anaconda: Starting window manager, pid 712. >07:50:44,973 INFO anaconda: using only installclass _Fedora >07:50:46,883 INFO anaconda: Detected 1008M of memory >07:50:46,891 INFO anaconda: Swap attempt of 2016M >07:50:47,553 INFO anaconda: no initiator set >07:50:48,283 DEBUG anaconda: required disklabel type for vda (15) is None >07:50:48,285 DEBUG anaconda: default disklabel type for vda is msdos >07:50:48,286 DEBUG anaconda: selecting msdos disklabel for vda based on size >09:50:52,343 DEBUG anaconda: notifying kernel of 'change' event on device /sys/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0 >09:50:55,016 DEBUG anaconda: required disklabel type for vda (15) is None >09:50:55,018 DEBUG anaconda: default disklabel type for vda is msdos >09:50:55,023 DEBUG anaconda: selecting msdos disklabel for vda based on size >09:50:55,956 WARN anaconda: /usr/lib64/python2.7/site-packages/gi/types.py:47: Warning: g_object_disconnect: invalid signal spec "button-release-event" > return info.invoke(*args, **kwargs) > >09:51:01,171 ERR anaconda: storage configuration failed: not enough free space on disks >09:51:01,177 INFO anaconda: no initiator set >09:51:01,858 DEBUG anaconda: required disklabel type for vda (15) is None >09:51:01,860 DEBUG anaconda: default disklabel type for vda is msdos >09:51:01,862 DEBUG anaconda: selecting msdos disklabel for vda based on size > > >/tmp/packaging.log: >07:50:45,686 DEBUG packaging: getting release version from tree at None (18) >07:50:45,688 DEBUG packaging: got a release version of 18 >07:50:50,040 INFO packaging: updating base repo >09:50:50,017 DEBUG packaging: getting release version from tree at None (18) >09:50:50,023 DEBUG packaging: got a release version of 18 >09:50:50,024 INFO packaging: configuring base repo >09:50:50,025 DEBUG packaging: getting release version from tree at http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os (18) >09:50:50,026 DEBUG packaging: retrieving treeinfo from http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os (proxies: {} ; sslverify: True) >09:50:50,025 DEBUG packaging: got a release version of 18 >09:50:50,089 DEBUG packaging: adding yum repo anaconda with baseurl http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os and mirrorlist None >09:50:50,132 DEBUG packaging: adding yum repo Updates with baseurl http://ftp.upjs.sk/pub/fedora/linux/updates/18/x86_64/ and mirrorlist None >09:50:50,195 DEBUG packaging: disabling repo fedora >09:50:50,196 DEBUG packaging: disabling repo updates-testing >09:50:50,196 DEBUG packaging: disabling repo updates >09:50:50,196 INFO packaging: gathering repo metadata >09:50:50,197 DEBUG packaging: getting repo metadata for anaconda >09:50:50,885 DEBUG packaging: getting group info for anaconda >09:50:50,995 DEBUG packaging: getting repo metadata for Updates >09:50:51,008 DEBUG packaging: getting group info for Updates >09:50:51,009 ERR packaging: failed to get groups for repo Updates >09:50:51,010 INFO packaging: metadata retrieval complete >09:51:02,574 DEBUG packaging: deleting package sacks >09:51:02,603 INFO packaging: checking software selection >09:51:02,605 DEBUG packaging: deleting package sacks >09:51:02,606 DEBUG packaging: deleting yum transaction info >09:51:02,609 DEBUG packaging: select group core >09:51:04,209 DEBUG packaging: select package iptables >09:51:04,223 DEBUG packaging: select package dhclient >09:51:04,224 DEBUG packaging: select package openssh-clients >09:51:04,224 DEBUG packaging: select package mc >09:51:04,225 DEBUG packaging: select package openssh-server >09:51:04,225 DEBUG packaging: select package screen >09:51:04,229 DEBUG packaging: select package gdisk >09:51:04,231 DEBUG packaging: select package rsync >09:51:04,272 DEBUG packaging: select package yum-utils > > >/tmp/program.log: >07:50:41,826 INFO program: Running... /usr/bin/python /tmp/ks-script-mP0qXr >07:50:41,951 INFO program: Running... udevadm trigger --action=change --subsystem-match=block >07:50:41,993 INFO program: Running... modprobe fcoe >07:50:42,111 INFO program: Running... /usr/libexec/fcoe/fcoe_edd.sh -i >07:50:42,188 INFO program: No FCoE boot disk information is found in EDD! >07:50:42,194 INFO program: Running... udevadm settle --timeout=300 >07:50:42,299 INFO program: Running... multipath -d >07:50:42,365 INFO program: Running... multipath -ll >07:50:42,415 INFO program: Running... udevadm settle --timeout=300 >07:50:42,450 INFO program: Running... udevadm settle --timeout=300 >07:50:42,483 INFO program: Running... udevadm settle --timeout=300 >07:50:42,518 INFO program: Running... udevadm settle --timeout=300 >07:50:42,558 INFO program: Running... loadkeys us >07:50:42,618 INFO program: Loading /lib/kbd/keymaps/i386/qwerty/us.map.gz >07:50:43,366 INFO program: Running... metacity --display :1 --sm-disable >07:50:44,213 ERR program: GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. >07:50:44,364 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,382 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,388 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,389 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,394 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,398 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,399 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,401 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,402 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,405 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,407 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,409 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,412 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,414 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,416 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,426 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,428 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,436 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,439 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,442 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,444 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,445 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,449 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:44,451 ERR program: Window manager warning: Log level 16: Unable to locate theme engine in module_path: "pixmap", >07:50:46,968 INFO program: Running... udevadm control --property=ANACONDA=1 >07:50:47,117 INFO program: Running... udevadm trigger --action=change --subsystem-match=block >07:50:47,143 INFO program: Running... systemctl start chronyd.service >07:50:47,624 INFO program: Running... udevadm settle --timeout=300 >07:50:47,951 INFO program: Running... multipath -d >07:50:48,014 INFO program: Running... multipath -ll >07:50:48,750 INFO program: Running... dumpe2fs -h /dev/loop1 >07:50:48,820 INFO program: Filesystem volume name: Anaconda >07:50:48,823 INFO program: Last mounted on: /tmp/lorax.imgutils.WtNuWA >07:50:48,824 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >07:50:48,824 INFO program: Filesystem magic number: 0xEF53 >07:50:48,825 INFO program: Filesystem revision #: 1 (dynamic) >07:50:48,826 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 >07:50:48,827 INFO program: Filesystem flags: signed_directory_hash >07:50:48,827 INFO program: Default mount options: user_xattr acl >07:50:48,828 INFO program: Filesystem state: clean >07:50:48,829 INFO program: Errors behavior: Continue >07:50:48,829 INFO program: Filesystem OS type: Linux >07:50:48,830 INFO program: Inode count: 65536 >07:50:48,830 INFO program: Block count: 1048576 >07:50:48,830 INFO program: Reserved block count: 0 >07:50:48,831 INFO program: Free blocks: 313933 >07:50:48,831 INFO program: Free inodes: 38584 >07:50:48,832 INFO program: First block: 1 >07:50:48,832 INFO program: Block size: 1024 >07:50:48,832 INFO program: Fragment size: 1024 >07:50:48,832 INFO program: Reserved GDT blocks: 256 >07:50:48,833 INFO program: Blocks per group: 8192 >07:50:48,833 INFO program: Fragments per group: 8192 >07:50:48,833 INFO program: Inodes per group: 512 >07:50:48,834 INFO program: Inode blocks per group: 128 >07:50:48,834 INFO program: Flex block group size: 16 >07:50:48,838 INFO program: Filesystem created: Mon Oct 22 12:28:25 2012 >07:50:48,839 INFO program: Last mount time: Mon Oct 22 12:32:18 2012 >07:50:48,839 INFO program: Last write time: Mon Oct 22 12:32:26 2012 >07:50:48,840 INFO program: Mount count: 2 >07:50:48,840 INFO program: Maximum mount count: -1 >07:50:48,841 INFO program: Last checked: Mon Oct 22 12:28:25 2012 >07:50:48,841 INFO program: Check interval: 0 (<none>) >07:50:48,845 INFO program: Lifetime writes: 32 MB >07:50:48,845 INFO program: Reserved blocks uid: 0 (user root) >07:50:48,846 INFO program: Reserved blocks gid: 0 (group root) >07:50:48,846 INFO program: First inode: 11 >07:50:48,848 INFO program: Inode size: 256 >07:50:48,849 INFO program: Required extra isize: 28 >07:50:48,850 INFO program: Desired extra isize: 28 >07:50:48,851 INFO program: Journal inode: 8 >07:50:48,852 INFO program: Default directory hash: half_md4 >07:50:48,853 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >07:50:48,857 INFO program: Journal backup: inode blocks >07:50:48,857 INFO program: Journal features: (none) >07:50:48,857 INFO program: Journal size: 32M >07:50:48,858 INFO program: Journal length: 32768 >07:50:48,858 INFO program: Journal sequence: 0x00000095 >07:50:48,859 INFO program: Journal start: 0 >07:50:48,867 INFO program: >07:50:48,868 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >07:50:48,870 INFO program: Running... dumpe2fs -h /dev/loop1 >07:50:48,910 INFO program: Filesystem volume name: Anaconda >07:50:48,921 INFO program: Last mounted on: /tmp/lorax.imgutils.WtNuWA >07:50:48,922 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >07:50:48,922 INFO program: Filesystem magic number: 0xEF53 >07:50:48,923 INFO program: Filesystem revision #: 1 (dynamic) >07:50:48,924 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 >07:50:48,925 INFO program: Filesystem flags: signed_directory_hash >07:50:48,926 INFO program: Default mount options: user_xattr acl >07:50:48,926 INFO program: Filesystem state: clean >07:50:48,927 INFO program: Errors behavior: Continue >07:50:48,928 INFO program: Filesystem OS type: Linux >07:50:48,928 INFO program: Inode count: 65536 >07:50:48,928 INFO program: Block count: 1048576 >07:50:48,930 INFO program: Reserved block count: 0 >07:50:48,935 INFO program: Free blocks: 313933 >07:50:48,936 INFO program: Free inodes: 38584 >07:50:48,936 INFO program: First block: 1 >07:50:48,936 INFO program: Block size: 1024 >07:50:48,936 INFO program: Fragment size: 1024 >07:50:48,937 INFO program: Reserved GDT blocks: 256 >07:50:48,938 INFO program: Blocks per group: 8192 >07:50:48,938 INFO program: Fragments per group: 8192 >07:50:48,938 INFO program: Inodes per group: 512 >07:50:48,939 INFO program: Inode blocks per group: 128 >07:50:48,939 INFO program: Flex block group size: 16 >07:50:48,939 INFO program: Filesystem created: Mon Oct 22 12:28:25 2012 >07:50:48,940 INFO program: Last mount time: Mon Oct 22 12:32:18 2012 >07:50:48,941 INFO program: Last write time: Mon Oct 22 12:32:26 2012 >07:50:48,941 INFO program: Mount count: 2 >07:50:48,941 INFO program: Maximum mount count: -1 >07:50:48,950 INFO program: Last checked: Mon Oct 22 12:28:25 2012 >07:50:48,950 INFO program: Check interval: 0 (<none>) >07:50:48,950 INFO program: Lifetime writes: 32 MB >07:50:48,950 INFO program: Reserved blocks uid: 0 (user root) >07:50:48,950 INFO program: Reserved blocks gid: 0 (group root) >07:50:48,950 INFO program: First inode: 11 >07:50:48,951 INFO program: Inode size: 256 >07:50:48,960 INFO program: Required extra isize: 28 >07:50:48,960 INFO program: Desired extra isize: 28 >07:50:48,960 INFO program: Journal inode: 8 >07:50:48,960 INFO program: Default directory hash: half_md4 >07:50:48,960 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >07:50:48,960 INFO program: Journal backup: inode blocks >07:50:48,962 INFO program: Journal features: (none) >07:50:48,962 INFO program: Journal size: 32M >07:50:48,963 INFO program: Journal length: 32768 >07:50:48,971 INFO program: Journal sequence: 0x00000095 >07:50:48,971 INFO program: Journal start: 0 >07:50:48,972 INFO program: >07:50:48,972 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >07:50:48,972 INFO program: Running... resize2fs -P /dev/loop1 >07:50:49,033 INFO program: Couldn't find valid filesystem superblock. >07:50:49,036 ERR program: resize2fs 1.42.5 (29-Jul-2012) >07:50:49,037 ERR program: resize2fs: Device or resource busy while trying to open /dev/loop1 >07:50:49,194 INFO program: Running... udevadm settle --timeout=300 >07:50:49,414 INFO program: Running... dumpe2fs -h /dev/mapper/live-rw >07:50:49,455 INFO program: Filesystem volume name: Anaconda >07:50:49,457 INFO program: Last mounted on: /sysroot >07:50:49,458 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >07:50:49,458 INFO program: Filesystem magic number: 0xEF53 >07:50:49,459 INFO program: Filesystem revision #: 1 (dynamic) >07:50:49,460 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 >07:50:49,461 INFO program: Filesystem flags: signed_directory_hash >07:50:49,461 INFO program: Default mount options: user_xattr acl >07:50:49,462 INFO program: Filesystem state: clean >07:50:49,462 INFO program: Errors behavior: Continue >07:50:49,463 INFO program: Filesystem OS type: Linux >07:50:49,463 INFO program: Inode count: 65536 >07:50:49,464 INFO program: Block count: 1048576 >07:50:49,464 INFO program: Reserved block count: 0 >07:50:49,464 INFO program: Free blocks: 313933 >07:50:49,465 INFO program: Free inodes: 38584 >07:50:49,466 INFO program: First block: 1 >07:50:49,466 INFO program: Block size: 1024 >07:50:49,466 INFO program: Fragment size: 1024 >07:50:49,466 INFO program: Reserved GDT blocks: 256 >07:50:49,466 INFO program: Blocks per group: 8192 >07:50:49,467 INFO program: Fragments per group: 8192 >07:50:49,467 INFO program: Inodes per group: 512 >07:50:49,467 INFO program: Inode blocks per group: 128 >07:50:49,468 INFO program: Flex block group size: 16 >07:50:49,468 INFO program: Filesystem created: Mon Oct 22 12:28:25 2012 >07:50:49,476 INFO program: Last mount time: Tue Oct 23 07:50:34 2012 >07:50:49,476 INFO program: Last write time: Tue Oct 23 07:50:34 2012 >07:50:49,477 INFO program: Mount count: 3 >07:50:49,477 INFO program: Maximum mount count: -1 >07:50:49,477 INFO program: Last checked: Mon Oct 22 12:28:25 2012 >07:50:49,477 INFO program: Check interval: 0 (<none>) >07:50:49,478 INFO program: Lifetime writes: 32 MB >07:50:49,479 INFO program: Reserved blocks uid: 0 (user root) >07:50:49,490 INFO program: Reserved blocks gid: 0 (group root) >07:50:49,490 INFO program: First inode: 11 >07:50:49,490 INFO program: Inode size: 256 >07:50:49,490 INFO program: Required extra isize: 28 >07:50:49,490 INFO program: Desired extra isize: 28 >07:50:49,490 INFO program: Journal inode: 8 >07:50:49,490 INFO program: Default directory hash: half_md4 >07:50:49,490 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >07:50:49,490 INFO program: Journal backup: inode blocks >07:50:49,492 INFO program: Journal features: (none) >07:50:49,493 INFO program: Journal size: 32M >07:50:49,493 INFO program: Journal length: 32768 >07:50:49,500 INFO program: Journal sequence: 0x00000096 >07:50:49,500 INFO program: Journal start: 1 >07:50:49,500 INFO program: >07:50:49,500 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >07:50:49,500 INFO program: Running... dumpe2fs -h /dev/mapper/live-rw >07:50:49,537 INFO program: Filesystem volume name: Anaconda >07:50:49,539 INFO program: Last mounted on: /sysroot >07:50:49,539 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >07:50:49,540 INFO program: Filesystem magic number: 0xEF53 >07:50:49,540 INFO program: Filesystem revision #: 1 (dynamic) >07:50:49,540 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 >07:50:49,541 INFO program: Filesystem flags: signed_directory_hash >07:50:49,541 INFO program: Default mount options: user_xattr acl >07:50:49,541 INFO program: Filesystem state: clean >07:50:49,541 INFO program: Errors behavior: Continue >07:50:49,542 INFO program: Filesystem OS type: Linux >07:50:49,542 INFO program: Inode count: 65536 >07:50:49,545 INFO program: Block count: 1048576 >07:50:49,546 INFO program: Reserved block count: 0 >07:50:49,546 INFO program: Free blocks: 313933 >07:50:49,546 INFO program: Free inodes: 38584 >07:50:49,547 INFO program: First block: 1 >07:50:49,547 INFO program: Block size: 1024 >07:50:49,547 INFO program: Fragment size: 1024 >07:50:49,548 INFO program: Reserved GDT blocks: 256 >07:50:49,548 INFO program: Blocks per group: 8192 >07:50:49,548 INFO program: Fragments per group: 8192 >07:50:49,548 INFO program: Inodes per group: 512 >07:50:49,549 INFO program: Inode blocks per group: 128 >07:50:49,549 INFO program: Flex block group size: 16 >07:50:49,549 INFO program: Filesystem created: Mon Oct 22 12:28:25 2012 >07:50:49,550 INFO program: Last mount time: Tue Oct 23 07:50:34 2012 >07:50:49,550 INFO program: Last write time: Tue Oct 23 07:50:34 2012 >07:50:49,550 INFO program: Mount count: 3 >07:50:49,551 INFO program: Maximum mount count: -1 >07:50:49,551 INFO program: Last checked: Mon Oct 22 12:28:25 2012 >07:50:49,551 INFO program: Check interval: 0 (<none>) >07:50:49,551 INFO program: Lifetime writes: 32 MB >07:50:49,552 INFO program: Reserved blocks uid: 0 (user root) >07:50:49,552 INFO program: Reserved blocks gid: 0 (group root) >07:50:49,552 INFO program: First inode: 11 >07:50:49,553 INFO program: Inode size: 256 >07:50:49,553 INFO program: Required extra isize: 28 >07:50:49,553 INFO program: Desired extra isize: 28 >07:50:49,557 INFO program: Journal inode: 8 >07:50:49,558 INFO program: Default directory hash: half_md4 >07:50:49,558 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >07:50:49,558 INFO program: Journal backup: inode blocks >07:50:49,559 INFO program: Journal features: (none) >07:50:49,559 INFO program: Journal size: 32M >07:50:49,559 INFO program: Journal length: 32768 >07:50:49,559 INFO program: Journal sequence: 0x00000096 >07:50:49,560 INFO program: Journal start: 1 >07:50:49,560 INFO program: >07:50:49,560 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >07:50:49,562 INFO program: Running... resize2fs -P /dev/mapper/live-rw >07:50:49,598 INFO program: Estimated minimum size of the filesystem: 732416 >07:50:49,600 ERR program: resize2fs 1.42.5 (29-Jul-2012) >07:50:49,647 INFO program: Running... udevadm settle --timeout=300 >07:50:49,732 INFO program: Running... udevadm settle --timeout=300 >07:50:49,810 INFO program: Running... udevadm settle --timeout=300 >09:50:52,350 INFO program: Running... udevadm settle --timeout=300 >09:50:52,705 INFO program: Running... modprobe btrfs >09:50:52,920 INFO program: Running... modprobe xfs >09:50:53,148 INFO program: Running... modprobe vfat >09:50:55,069 INFO program: Running... udevadm settle --timeout=300 >09:50:55,185 INFO program: Running... udevadm settle --timeout=300 >09:50:55,314 INFO program: Running... udevadm settle --timeout=300 >09:50:55,452 INFO program: Running... udevadm settle --timeout=300 >09:50:55,992 INFO program: Running... udevadm settle --timeout=300 >09:50:56,126 INFO program: Running... udevadm settle --timeout=300 >09:50:56,259 INFO program: Running... udevadm settle --timeout=300 >09:50:56,404 INFO program: Running... udevadm settle --timeout=300 >09:50:56,976 INFO program: Running... udevadm settle --timeout=300 >09:50:57,068 INFO program: Running... udevadm settle --timeout=300 >09:50:57,199 INFO program: Running... udevadm settle --timeout=300 >09:50:57,345 INFO program: Running... udevadm settle --timeout=300 >09:50:57,977 INFO program: Running... udevadm settle --timeout=300 >09:50:58,074 INFO program: Running... udevadm settle --timeout=300 >09:50:58,196 INFO program: Running... udevadm settle --timeout=300 >09:50:58,388 INFO program: Running... udevadm settle --timeout=300 >09:50:59,983 INFO program: Running... udevadm settle --timeout=300 >09:51:00,113 INFO program: Running... udevadm settle --timeout=300 >09:51:00,286 INFO program: Running... udevadm settle --timeout=300 >09:51:00,468 INFO program: Running... udevadm settle --timeout=300 >09:51:01,193 INFO program: Running... udevadm settle --timeout=300 >09:51:01,374 INFO program: Running... multipath -d >09:51:01,466 INFO program: Running... multipath -ll >09:51:02,137 INFO program: Running... dumpe2fs -h /dev/loop1 >09:51:02,187 INFO program: Filesystem volume name: Anaconda >09:51:02,189 INFO program: Last mounted on: /tmp/lorax.imgutils.WtNuWA >09:51:02,190 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >09:51:02,191 INFO program: Filesystem magic number: 0xEF53 >09:51:02,192 INFO program: Filesystem revision #: 1 (dynamic) >09:51:02,193 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 >09:51:02,193 INFO program: Filesystem flags: signed_directory_hash >09:51:02,194 INFO program: Default mount options: user_xattr acl >09:51:02,194 INFO program: Filesystem state: clean >09:51:02,195 INFO program: Errors behavior: Continue >09:51:02,196 INFO program: Filesystem OS type: Linux >09:51:02,196 INFO program: Inode count: 65536 >09:51:02,197 INFO program: Block count: 1048576 >09:51:02,197 INFO program: Reserved block count: 0 >09:51:02,197 INFO program: Free blocks: 313933 >09:51:02,202 INFO program: Free inodes: 38584 >09:51:02,203 INFO program: First block: 1 >09:51:02,203 INFO program: Block size: 1024 >09:51:02,203 INFO program: Fragment size: 1024 >09:51:02,203 INFO program: Reserved GDT blocks: 256 >09:51:02,203 INFO program: Blocks per group: 8192 >09:51:02,203 INFO program: Fragments per group: 8192 >09:51:02,203 INFO program: Inodes per group: 512 >09:51:02,203 INFO program: Inode blocks per group: 128 >09:51:02,203 INFO program: Flex block group size: 16 >09:51:02,203 INFO program: Filesystem created: Mon Oct 22 14:28:25 2012 >09:51:02,206 INFO program: Last mount time: Mon Oct 22 14:32:18 2012 >09:51:02,206 INFO program: Last write time: Mon Oct 22 14:32:26 2012 >09:51:02,206 INFO program: Mount count: 2 >09:51:02,207 INFO program: Maximum mount count: -1 >09:51:02,207 INFO program: Last checked: Mon Oct 22 14:28:25 2012 >09:51:02,216 INFO program: Check interval: 0 (<none>) >09:51:02,216 INFO program: Lifetime writes: 32 MB >09:51:02,216 INFO program: Reserved blocks uid: 0 (user root) >09:51:02,216 INFO program: Reserved blocks gid: 0 (group root) >09:51:02,217 INFO program: First inode: 11 >09:51:02,217 INFO program: Inode size: 256 >09:51:02,217 INFO program: Required extra isize: 28 >09:51:02,217 INFO program: Desired extra isize: 28 >09:51:02,218 INFO program: Journal inode: 8 >09:51:02,218 INFO program: Default directory hash: half_md4 >09:51:02,219 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >09:51:02,234 INFO program: Journal backup: inode blocks >09:51:02,234 INFO program: Journal features: (none) >09:51:02,234 INFO program: Journal size: 32M >09:51:02,234 INFO program: Journal length: 32768 >09:51:02,234 INFO program: Journal sequence: 0x00000095 >09:51:02,234 INFO program: Journal start: 0 >09:51:02,234 INFO program: >09:51:02,234 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >09:51:02,238 INFO program: Running... dumpe2fs -h /dev/loop1 >09:51:02,287 INFO program: Filesystem volume name: Anaconda >09:51:02,289 INFO program: Last mounted on: /tmp/lorax.imgutils.WtNuWA >09:51:02,290 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >09:51:02,290 INFO program: Filesystem magic number: 0xEF53 >09:51:02,291 INFO program: Filesystem revision #: 1 (dynamic) >09:51:02,292 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 >09:51:02,293 INFO program: Filesystem flags: signed_directory_hash >09:51:02,293 INFO program: Default mount options: user_xattr acl >09:51:02,294 INFO program: Filesystem state: clean >09:51:02,294 INFO program: Errors behavior: Continue >09:51:02,295 INFO program: Filesystem OS type: Linux >09:51:02,295 INFO program: Inode count: 65536 >09:51:02,296 INFO program: Block count: 1048576 >09:51:02,296 INFO program: Reserved block count: 0 >09:51:02,296 INFO program: Free blocks: 313933 >09:51:02,296 INFO program: Free inodes: 38584 >09:51:02,297 INFO program: First block: 1 >09:51:02,297 INFO program: Block size: 1024 >09:51:02,303 INFO program: Fragment size: 1024 >09:51:02,303 INFO program: Reserved GDT blocks: 256 >09:51:02,303 INFO program: Blocks per group: 8192 >09:51:02,304 INFO program: Fragments per group: 8192 >09:51:02,304 INFO program: Inodes per group: 512 >09:51:02,304 INFO program: Inode blocks per group: 128 >09:51:02,304 INFO program: Flex block group size: 16 >09:51:02,304 INFO program: Filesystem created: Mon Oct 22 14:28:25 2012 >09:51:02,304 INFO program: Last mount time: Mon Oct 22 14:32:18 2012 >09:51:02,304 INFO program: Last write time: Mon Oct 22 14:32:26 2012 >09:51:02,307 INFO program: Mount count: 2 >09:51:02,307 INFO program: Maximum mount count: -1 >09:51:02,307 INFO program: Last checked: Mon Oct 22 14:28:25 2012 >09:51:02,308 INFO program: Check interval: 0 (<none>) >09:51:02,308 INFO program: Lifetime writes: 32 MB >09:51:02,317 INFO program: Reserved blocks uid: 0 (user root) >09:51:02,317 INFO program: Reserved blocks gid: 0 (group root) >09:51:02,317 INFO program: First inode: 11 >09:51:02,317 INFO program: Inode size: 256 >09:51:02,317 INFO program: Required extra isize: 28 >09:51:02,317 INFO program: Desired extra isize: 28 >09:51:02,319 INFO program: Journal inode: 8 >09:51:02,319 INFO program: Default directory hash: half_md4 >09:51:02,324 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >09:51:02,324 INFO program: Journal backup: inode blocks >09:51:02,325 INFO program: Journal features: (none) >09:51:02,326 INFO program: Journal size: 32M >09:51:02,326 INFO program: Journal length: 32768 >09:51:02,327 INFO program: Journal sequence: 0x00000095 >09:51:02,335 INFO program: Journal start: 0 >09:51:02,335 INFO program: >09:51:02,335 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >09:51:02,336 INFO program: Running... resize2fs -P /dev/loop1 >09:51:02,389 INFO program: Couldn't find valid filesystem superblock. >09:51:02,391 ERR program: resize2fs 1.42.5 (29-Jul-2012) >09:51:02,392 ERR program: resize2fs: Device or resource busy while trying to open /dev/loop1 >09:51:02,657 INFO program: Running... udevadm settle --timeout=300 >09:51:02,833 INFO program: Running... dumpe2fs -h /dev/mapper/live-rw >09:51:02,878 INFO program: Filesystem volume name: Anaconda >09:51:02,882 INFO program: Last mounted on: /sysroot >09:51:02,882 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >09:51:02,883 INFO program: Filesystem magic number: 0xEF53 >09:51:02,885 INFO program: Filesystem revision #: 1 (dynamic) >09:51:02,886 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 >09:51:02,886 INFO program: Filesystem flags: signed_directory_hash >09:51:02,887 INFO program: Default mount options: user_xattr acl >09:51:02,888 INFO program: Filesystem state: clean >09:51:02,888 INFO program: Errors behavior: Continue >09:51:02,889 INFO program: Filesystem OS type: Linux >09:51:02,889 INFO program: Inode count: 65536 >09:51:02,889 INFO program: Block count: 1048576 >09:51:02,890 INFO program: Reserved block count: 0 >09:51:02,891 INFO program: Free blocks: 313933 >09:51:02,891 INFO program: Free inodes: 38584 >09:51:02,891 INFO program: First block: 1 >09:51:02,891 INFO program: Block size: 1024 >09:51:02,892 INFO program: Fragment size: 1024 >09:51:02,892 INFO program: Reserved GDT blocks: 256 >09:51:02,892 INFO program: Blocks per group: 8192 >09:51:02,892 INFO program: Fragments per group: 8192 >09:51:02,893 INFO program: Inodes per group: 512 >09:51:02,894 INFO program: Inode blocks per group: 128 >09:51:02,902 INFO program: Flex block group size: 16 >09:51:02,903 INFO program: Filesystem created: Mon Oct 22 14:28:25 2012 >09:51:02,903 INFO program: Last mount time: Tue Oct 23 09:50:34 2012 >09:51:02,903 INFO program: Last write time: Tue Oct 23 09:50:34 2012 >09:51:02,903 INFO program: Mount count: 3 >09:51:02,911 INFO program: Maximum mount count: -1 >09:51:02,911 INFO program: Last checked: Mon Oct 22 14:28:25 2012 >09:51:02,911 INFO program: Check interval: 0 (<none>) >09:51:02,911 INFO program: Lifetime writes: 32 MB >09:51:02,911 INFO program: Reserved blocks uid: 0 (user root) >09:51:02,911 INFO program: Reserved blocks gid: 0 (group root) >09:51:02,912 INFO program: First inode: 11 >09:51:02,914 INFO program: Inode size: 256 >09:51:02,922 INFO program: Required extra isize: 28 >09:51:02,922 INFO program: Desired extra isize: 28 >09:51:02,922 INFO program: Journal inode: 8 >09:51:02,922 INFO program: Default directory hash: half_md4 >09:51:02,922 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >09:51:02,922 INFO program: Journal backup: inode blocks >09:51:02,923 INFO program: Journal features: (none) >09:51:02,933 INFO program: Journal size: 32M >09:51:02,933 INFO program: Journal length: 32768 >09:51:02,933 INFO program: Journal sequence: 0x00000096 >09:51:02,933 INFO program: Journal start: 1 >09:51:02,933 INFO program: >09:51:02,933 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >09:51:02,935 INFO program: Running... dumpe2fs -h /dev/mapper/live-rw >09:51:02,999 INFO program: Filesystem volume name: Anaconda >09:51:03,003 INFO program: Last mounted on: /sysroot >09:51:03,004 INFO program: Filesystem UUID: a5f7360b-4196-454f-8b2e-aa85cbcf660a >09:51:03,005 INFO program: Filesystem magic number: 0xEF53 >09:51:03,006 INFO program: Filesystem revision #: 1 (dynamic) >09:51:03,007 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 >09:51:03,008 INFO program: Filesystem flags: signed_directory_hash >09:51:03,008 INFO program: Default mount options: user_xattr acl >09:51:03,009 INFO program: Filesystem state: clean >09:51:03,010 INFO program: Errors behavior: Continue >09:51:03,011 INFO program: Filesystem OS type: Linux >09:51:03,011 INFO program: Inode count: 65536 >09:51:03,011 INFO program: Block count: 1048576 >09:51:03,011 INFO program: Reserved block count: 0 >09:51:03,012 INFO program: Free blocks: 313933 >09:51:03,012 INFO program: Free inodes: 38584 >09:51:03,013 INFO program: First block: 1 >09:51:03,013 INFO program: Block size: 1024 >09:51:03,014 INFO program: Fragment size: 1024 >09:51:03,014 INFO program: Reserved GDT blocks: 256 >09:51:03,014 INFO program: Blocks per group: 8192 >09:51:03,014 INFO program: Fragments per group: 8192 >09:51:03,015 INFO program: Inodes per group: 512 >09:51:03,015 INFO program: Inode blocks per group: 128 >09:51:03,015 INFO program: Flex block group size: 16 >09:51:03,022 INFO program: Filesystem created: Mon Oct 22 14:28:25 2012 >09:51:03,023 INFO program: Last mount time: Tue Oct 23 09:50:34 2012 >09:51:03,023 INFO program: Last write time: Tue Oct 23 09:50:34 2012 >09:51:03,023 INFO program: Mount count: 3 >09:51:03,023 INFO program: Maximum mount count: -1 >09:51:03,023 INFO program: Last checked: Mon Oct 22 14:28:25 2012 >09:51:03,024 INFO program: Check interval: 0 (<none>) >09:51:03,025 INFO program: Lifetime writes: 32 MB >09:51:03,034 INFO program: Reserved blocks uid: 0 (user root) >09:51:03,034 INFO program: Reserved blocks gid: 0 (group root) >09:51:03,034 INFO program: First inode: 11 >09:51:03,034 INFO program: Inode size: 256 >09:51:03,034 INFO program: Required extra isize: 28 >09:51:03,034 INFO program: Desired extra isize: 28 >09:51:03,034 INFO program: Journal inode: 8 >09:51:03,035 INFO program: Default directory hash: half_md4 >09:51:03,043 INFO program: Directory Hash Seed: 83475a4e-6505-48af-b2f9-bd131d9d2964 >09:51:03,043 INFO program: Journal backup: inode blocks >09:51:03,043 INFO program: Journal features: (none) >09:51:03,043 INFO program: Journal size: 32M >09:51:03,043 INFO program: Journal length: 32768 >09:51:03,043 INFO program: Journal sequence: 0x00000096 >09:51:03,044 INFO program: Journal start: 1 >09:51:03,052 INFO program: >09:51:03,052 ERR program: dumpe2fs 1.42.5 (29-Jul-2012) >09:51:03,053 INFO program: Running... resize2fs -P /dev/mapper/live-rw >09:51:03,104 INFO program: Estimated minimum size of the filesystem: 732416 >09:51:03,106 ERR program: resize2fs 1.42.5 (29-Jul-2012) >09:51:03,141 INFO program: Running... udevadm settle --timeout=300 >09:51:03,245 INFO program: Running... udevadm settle --timeout=300 >09:51:03,328 INFO program: Running... udevadm settle --timeout=300 >09:51:04,222 INFO program: Running... udevadm settle --timeout=300 >09:51:04,325 INFO program: Running... udevadm settle --timeout=300 > > >/tmp/storage.log: >07:50:41,183 DEBUG storage: registered device format class LUKS as luks >07:50:41,188 DEBUG storage: registered device format class DiskLabel as disklabel >07:50:41,190 DEBUG storage: registered device format class PPCPRePBoot as prepboot >07:50:41,192 DEBUG storage: registered device format class DMRaidMember as dmraidmember >07:50:41,220 DEBUG storage: registered device format class Ext2FS as ext2 >07:50:41,221 DEBUG storage: registered device format class Ext3FS as ext3 >07:50:41,222 DEBUG storage: registered device format class Ext4FS as ext4 >07:50:41,223 DEBUG storage: registered device format class FATFS as vfat >07:50:41,224 DEBUG storage: registered device format class EFIFS as efi >07:50:41,225 DEBUG storage: registered device format class BTRFS as btrfs >07:50:41,226 DEBUG storage: registered device format class GFS2 as gfs2 >07:50:41,226 DEBUG storage: registered device format class JFS as jfs >07:50:41,226 DEBUG storage: registered device format class ReiserFS as reiserfs >07:50:41,227 DEBUG storage: registered device format class XFS as xfs >07:50:41,228 DEBUG storage: registered device format class HFS as hfs >07:50:41,229 DEBUG storage: registered device format class AppleBootstrapFS as appleboot >07:50:41,229 DEBUG storage: registered device format class HFSPlus as hfs+ >07:50:41,230 DEBUG storage: registered device format class NTFS as ntfs >07:50:41,230 DEBUG storage: registered device format class NFS as nfs >07:50:41,231 DEBUG storage: registered device format class NFSv4 as nfs4 >07:50:41,231 DEBUG storage: registered device format class Iso9660FS as iso9660 >07:50:41,231 DEBUG storage: registered device format class NoDevFS as nodev >07:50:41,232 DEBUG storage: registered device format class DevPtsFS as devpts >07:50:41,232 DEBUG storage: registered device format class ProcFS as proc >07:50:41,233 DEBUG storage: registered device format class SysFS as sysfs >07:50:41,234 DEBUG storage: registered device format class TmpFS as tmpfs >07:50:41,234 DEBUG storage: registered device format class BindFS as bind >07:50:41,235 DEBUG storage: registered device format class SELinuxFS as selinuxfs >07:50:41,235 DEBUG storage: registered device format class USBFS as usbfs >07:50:41,236 DEBUG storage: registered device format class BIOSBoot as biosboot >07:50:41,242 DEBUG storage: registered device format class SwapSpace as swap >07:50:41,247 DEBUG storage: registered device format class MDRaidMember as mdmember >07:50:41,251 DEBUG storage: registered device format class LVMPhysicalVolume as lvmpv >07:50:41,253 DEBUG storage: registered device format class MultipathMember as multipath_member >07:50:42,267 DEBUG storage: MultipathTopology._build_topology: >07:50:42,276 DEBUG storage: /etc/multipath.conf contents: >07:50:42,277 DEBUG storage: # multipath.conf written by anaconda >07:50:42,278 DEBUG storage: >07:50:42,279 DEBUG storage: defaults { >07:50:42,280 DEBUG storage: user_friendly_names yes >07:50:42,280 DEBUG storage: } >07:50:42,281 DEBUG storage: blacklist { >07:50:42,282 DEBUG storage: devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*" >07:50:42,283 DEBUG storage: devnode "^hd[a-z]" >07:50:42,283 DEBUG storage: devnode "^dcssblk[0-9]*" >07:50:42,284 DEBUG storage: device { >07:50:42,285 DEBUG storage: vendor "DGC" >07:50:42,286 DEBUG storage: product "LUNZ" >07:50:42,286 DEBUG storage: } >07:50:42,286 DEBUG storage: device { >07:50:42,286 DEBUG storage: vendor "IBM" >07:50:42,287 DEBUG storage: product "S/390.*" >07:50:42,287 DEBUG storage: } >07:50:42,288 DEBUG storage: # don't count normal SATA devices as multipaths >07:50:42,288 DEBUG storage: device { >07:50:42,288 DEBUG storage: vendor "ATA" >07:50:42,289 DEBUG storage: } >07:50:42,289 DEBUG storage: # don't count 3ware devices as multipaths >07:50:42,290 DEBUG storage: device { >07:50:42,290 DEBUG storage: vendor "3ware" >07:50:42,290 DEBUG storage: } >07:50:42,291 DEBUG storage: device { >07:50:42,291 DEBUG storage: vendor "AMCC" >07:50:42,292 DEBUG storage: } >07:50:42,293 DEBUG storage: # nor highpoint devices >07:50:42,293 DEBUG storage: device { >07:50:42,294 DEBUG storage: vendor "HPT" >07:50:42,295 DEBUG storage: } >07:50:42,296 DEBUG storage: } >07:50:42,296 DEBUG storage: multipaths { >07:50:42,297 DEBUG storage: } >07:50:42,298 DEBUG storage: (end of /etc/multipath.conf) >07:50:42,391 INFO storage: MultipathTopology: found non-disk device: sr0 >07:50:42,394 INFO storage: MultipathTopology: found singlepath device: vda >07:50:42,395 INFO storage: MultipathTopology: found singlepath device: loop0 >07:50:42,396 INFO storage: MultipathTopology: found singlepath device: loop1 >07:50:42,397 INFO storage: MultipathTopology: found singlepath device: loop2 >07:50:42,398 INFO storage: MultipathTopology: found singlepath device: loop3 >07:50:42,399 INFO storage: MultipathTopology: found singlepath device: loop4 >07:50:42,400 INFO storage: MultipathTopology: found singlepath device: loop5 >07:50:42,401 INFO storage: MultipathTopology: found singlepath device: loop6 >07:50:42,401 INFO storage: MultipathTopology: found singlepath device: loop7 >07:50:42,402 INFO storage: MultipathTopology: found singlepath device: dm-0 >07:50:47,591 INFO storage: not going to create backup copy of non-existent /etc/mdadm.conf >07:50:47,611 INFO storage: DeviceTree.populate: ignoredDisks is [] ; exclusiveDisks is ['vda'] >07:50:47,893 DEBUG storage: MultipathTopology._build_topology: >07:50:47,909 DEBUG storage: /etc/multipath.conf contents: >07:50:47,911 DEBUG storage: # multipath.conf written by anaconda >07:50:47,913 DEBUG storage: >07:50:47,913 DEBUG storage: defaults { >07:50:47,915 DEBUG storage: user_friendly_names yes >07:50:47,916 DEBUG storage: } >07:50:47,916 DEBUG storage: blacklist { >07:50:47,917 DEBUG storage: devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*" >07:50:47,917 DEBUG storage: devnode "^hd[a-z]" >07:50:47,918 DEBUG storage: devnode "^dcssblk[0-9]*" >07:50:47,919 DEBUG storage: device { >07:50:47,919 DEBUG storage: vendor "DGC" >07:50:47,919 DEBUG storage: product "LUNZ" >07:50:47,936 DEBUG storage: } >07:50:47,937 DEBUG storage: device { >07:50:47,937 DEBUG storage: vendor "IBM" >07:50:47,938 DEBUG storage: product "S/390.*" >07:50:47,939 DEBUG storage: } >07:50:47,939 DEBUG storage: # don't count normal SATA devices as multipaths >07:50:47,940 DEBUG storage: device { >07:50:47,940 DEBUG storage: vendor "ATA" >07:50:47,940 DEBUG storage: } >07:50:47,940 DEBUG storage: # don't count 3ware devices as multipaths >07:50:47,940 DEBUG storage: device { >07:50:47,940 DEBUG storage: vendor "3ware" >07:50:47,940 DEBUG storage: } >07:50:47,942 DEBUG storage: device { >07:50:47,942 DEBUG storage: vendor "AMCC" >07:50:47,943 DEBUG storage: } >07:50:47,943 DEBUG storage: # nor highpoint devices >07:50:47,943 DEBUG storage: device { >07:50:47,944 DEBUG storage: vendor "HPT" >07:50:47,944 DEBUG storage: } >07:50:47,944 DEBUG storage: } >07:50:47,945 DEBUG storage: multipaths { >07:50:47,951 DEBUG storage: } >07:50:47,951 DEBUG storage: (end of /etc/multipath.conf) >07:50:48,082 INFO storage: MultipathTopology: found non-disk device: sr0 >07:50:48,086 INFO storage: MultipathTopology: found singlepath device: vda >07:50:48,087 INFO storage: MultipathTopology: found singlepath device: loop0 >07:50:48,088 INFO storage: MultipathTopology: found singlepath device: loop1 >07:50:48,090 INFO storage: MultipathTopology: found singlepath device: loop2 >07:50:48,091 INFO storage: MultipathTopology: found singlepath device: loop3 >07:50:48,092 INFO storage: MultipathTopology: found singlepath device: loop4 >07:50:48,093 INFO storage: MultipathTopology: found singlepath device: loop5 >07:50:48,094 INFO storage: MultipathTopology: found singlepath device: loop6 >07:50:48,101 INFO storage: MultipathTopology: found singlepath device: loop7 >07:50:48,102 INFO storage: MultipathTopology: found singlepath device: dm-0 >07:50:48,103 INFO storage: devices to scan: ['sr0', 'vda', 'loop0', 'loop1', 'loop2', 'loop3', 'loop4', 'loop5', 'loop6', 'loop7', 'dm-0'] >07:50:48,107 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVLINKS': '/dev/cdrom /dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003', > 'DEVNAME': 'sr0', > 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0', > 'DEVTYPE': 'disk', > 'ID_ATA': '1', > 'ID_BUS': 'ata', > 'ID_CDROM': '1', > 'ID_CDROM_DVD': '1', > 'ID_CDROM_MRW': '1', > 'ID_CDROM_MRW_W': '1', > 'ID_MODEL': 'QEMU_DVD-ROM', > 'ID_MODEL_ENC': 'QEMU\\x20DVD-ROM\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', > 'ID_REVISION': '1.0.1', > 'ID_SERIAL': 'QEMU_DVD-ROM_QM00003', > 'ID_SERIAL_SHORT': 'QM00003', > 'ID_TYPE': 'cd', > 'MAJOR': '11', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':seat:systemd:uaccess:', > 'USEC_INITIALIZED': '701939', > 'name': 'sr0', > 'symlinks': ['/dev/cdrom', '/dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003'], > 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0'} ; name: sr0 ; >07:50:48,120 INFO storage: scanning sr0 (/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0)... >07:50:48,123 DEBUG storage: DeviceTree.getDeviceByName: name: sr0 ; >07:50:48,125 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:48,127 INFO storage: sr0 is a cdrom >07:50:48,145 DEBUG storage: DeviceTree.addUdevOpticalDevice: >07:50:48,147 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,156 DEBUG storage: OpticalDevice._setFormat: sr0 ; current: None ; type: None ; >07:50:48,158 INFO storage: added cdrom sr0 (id 0) to device tree >07:50:48,160 DEBUG storage: OpticalDevice.mediaPresent: sr0 ; status: True ; >07:50:48,168 DEBUG storage: no device or no media present >07:50:48,170 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'vda', > 'DEVPATH': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda', > 'DEVTYPE': 'disk', > 'MAJOR': '252', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '900334', > 'name': 'vda', > 'symlinks': [], > 'sysfs_path': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda'} ; name: vda ; >07:50:48,172 INFO storage: scanning vda (/devices/pci0000:00/0000:00:04.0/virtio1/block/vda)... >07:50:48,173 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >07:50:48,176 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:48,179 DEBUG storage: DeviceTree.addUdevDiskDevice: name: vda ; >07:50:48,182 INFO storage: vda is a disk >07:50:48,184 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,190 DEBUG storage: DiskDevice._setFormat: vda ; current: None ; type: None ; >07:50:48,191 INFO storage: added disk vda (id 1) to device tree >07:50:48,192 DEBUG storage: looking up parted Device: /dev/vda >07:50:48,264 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: vda ; >07:50:48,267 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: vda ; label_type: None ; >07:50:48,278 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,281 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >07:50:48,290 DEBUG storage: DiskLabel.__init__: device: /dev/vda ; labelType: msdos ; exists: True ; >07:50:48,394 INFO storage: no usable disklabel on vda >07:50:48,396 DEBUG storage: no type or existing type for vda, bailing >07:50:48,399 INFO storage: got device: DiskDevice instance (0x7fbbd5ff3650) -- > name = vda status = True kids = 0 id = 1 > parents = [] > uuid = None size = 8192.0 > format = existing None > major = 252 minor = 0 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:04.0/virtio1/block/vda partedDevice = parted.Device instance -- > model: Virtio Block Device path: /dev/vda type: 15 > sectorSize: 512 physicalSectorSize: 512 > length: 16777216 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (16644, 16, 63) biosGeometry: (1044, 255, 63) > PedDevice: <_ped.Device object at 0x7fbbd6026e60> > target size = 0 path = /dev/vda > format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x7fbbd5ff37d0> >07:50:48,404 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > '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': '126405', > 'name': 'loop0', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop0'} ; name: loop0 ; >07:50:48,428 INFO storage: scanning loop0 (/devices/virtual/block/loop0)... >07:50:48,430 DEBUG storage: DeviceTree.getDeviceByName: name: loop0 ; >07:50:48,436 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:48,436 INFO storage: loop0 is a loop device >07:50:48,438 DEBUG storage: DeviceTree.addUdevLoopDevice: name: loop0 ; >07:50:48,440 DEBUG storage: DeviceTree.getDeviceByName: name: /tmp/curl_fetch_url0/squashfs.img (deleted) ; >07:50:48,441 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:48,442 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,444 DEBUG storage: FileDevice._setFormat: /tmp/curl_fetch_url0/squashfs.img (deleted) ; current: None ; type: None ; >07:50:48,451 INFO storage: added file /tmp/curl_fetch_url0/squashfs.img (deleted) (id 2) to device tree >07:50:48,467 DEBUG storage: FileDevice.addChild: kids: 0 ; name: /tmp/curl_fetch_url0/squashfs.img (deleted) ; >07:50:48,501 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,504 DEBUG storage: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >07:50:48,558 INFO storage: added loop loop0 (id 3) to device tree >07:50:48,594 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: loop0 ; >07:50:48,638 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: loop0 ; label_type: None ; >07:50:48,643 DEBUG storage: getFormat('squashfs') returning DeviceFormat instance >07:50:48,644 DEBUG storage: LoopDevice.setup: loop0 ; status: False ; controllable: False ; orig: False ; >07:50:48,647 DEBUG storage: DiskLabel.__init__: device: /dev/loop0 ; labelType: None ; exists: True ; >07:50:48,663 WARN storage: disklabel detected but not usable on loop0 >07:50:48,664 INFO storage: type detected on 'loop0' is 'squashfs' >07:50:48,665 DEBUG storage: getFormat('squashfs') returning DeviceFormat instance >07:50:48,667 DEBUG storage: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >07:50:48,668 DEBUG storage: skipping further processing due to clearpart >07:50:48,669 INFO storage: got device: LoopDevice instance (0x7fbbd5ff38d0) -- > name = loop0 status = False kids = 0 id = 3 > parents = ['existing 0MB file /tmp/curl_fetch_url0/squashfs.img (deleted) (2)'] > uuid = None size = 0 > format = existing None > major = 0 minor = 0 exists = True protected = False > sysfs path = partedDevice = None > target size = 0 path = /dev/loop0 > format args = [] originalFormat = None >07:50:48,672 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVLINKS': '/dev/disk/by-label/Anaconda /dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a', > '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': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_UUID_ENC': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '7', > 'MINOR': '1', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '126424', > 'name': 'loop1', > 'symlinks': ['/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a'], > 'sysfs_path': '/devices/virtual/block/loop1'} ; name: loop1 ; >07:50:48,680 INFO storage: scanning loop1 (/devices/virtual/block/loop1)... >07:50:48,683 DEBUG storage: DeviceTree.getDeviceByName: name: loop1 ; >07:50:48,693 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:48,694 INFO storage: loop1 is a loop device >07:50:48,696 DEBUG storage: DeviceTree.addUdevLoopDevice: name: loop1 ; >07:50:48,698 DEBUG storage: DeviceTree.getDeviceByName: name: /LiveOS/rootfs.img ; >07:50:48,701 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:48,710 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,712 DEBUG storage: FileDevice._setFormat: /LiveOS/rootfs.img ; current: None ; type: None ; >07:50:48,713 INFO storage: added file /LiveOS/rootfs.img (id 4) to device tree >07:50:48,715 DEBUG storage: FileDevice.addChild: kids: 0 ; name: /LiveOS/rootfs.img ; >07:50:48,716 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:48,719 DEBUG storage: LoopDevice._setFormat: loop1 ; current: None ; type: None ; >07:50:48,720 INFO storage: added loop loop1 (id 5) to device tree >07:50:48,731 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: loop1 ; >07:50:48,733 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: loop1 ; label_type: None ; >07:50:48,736 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:48,738 DEBUG storage: getFormat('ext4') returning Ext4FS instance >07:50:48,748 DEBUG storage: device loop1 does not contain a disklabel >07:50:48,749 INFO storage: type detected on 'loop1' is 'ext4' >07:50:49,040 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:49,046 DEBUG storage: getFormat('ext4') returning Ext4FS instance >07:50:49,049 DEBUG storage: LoopDevice._setFormat: loop1 ; current: None ; type: ext4 ; >07:50:49,052 DEBUG storage: skipping further processing due to clearpart >07:50:49,054 INFO storage: got device: LoopDevice instance (0x7fbbd60ff7d0) -- > name = loop1 status = False kids = 0 id = 5 > parents = ['existing 0MB file /LiveOS/rootfs.img (4)'] > 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 >07:50:49,057 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:49,063 INFO storage: got format: Ext4FS instance (0x7fbbd61204d0) -- > type = ext4 name = ext4 status = False > device = /dev/loop1 uuid = a5f7360b-4196-454f-8b2e-aa85cbcf660a exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 1024.0 targetSize = 1024.0 > >07:50:49,066 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop2', > 'DEVPATH': '/devices/virtual/block/loop2', > 'DEVTYPE': 'disk', > 'ID_FS_TYPE': 'DM_snapshot_cow', > 'ID_FS_USAGE': 'other', > 'MAJOR': '7', > 'MINOR': '2', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '202831', > 'name': 'loop2', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop2'} ; name: loop2 ; >07:50:49,072 INFO storage: scanning loop2 (/devices/virtual/block/loop2)... >07:50:49,074 DEBUG storage: DeviceTree.getDeviceByName: name: loop2 ; >07:50:49,076 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:49,081 INFO storage: loop2 is a loop device >07:50:49,084 DEBUG storage: DeviceTree.addUdevLoopDevice: name: loop2 ; >07:50:49,086 DEBUG storage: DeviceTree.getDeviceByName: name: /overlay (deleted) ; >07:50:49,088 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:49,091 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:49,094 DEBUG storage: FileDevice._setFormat: /overlay (deleted) ; current: None ; type: None ; >07:50:49,098 INFO storage: added file /overlay (deleted) (id 6) to device tree >07:50:49,100 DEBUG storage: FileDevice.addChild: kids: 0 ; name: /overlay (deleted) ; >07:50:49,104 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:49,106 DEBUG storage: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >07:50:49,113 INFO storage: added loop loop2 (id 7) to device tree >07:50:49,115 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: loop2 ; >07:50:49,119 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: loop2 ; label_type: None ; >07:50:49,123 DEBUG storage: getFormat('DM_snapshot_cow') returning DeviceFormat instance >07:50:49,126 DEBUG storage: LoopDevice.setup: loop2 ; status: False ; controllable: False ; orig: False ; >07:50:49,129 DEBUG storage: DiskLabel.__init__: device: /dev/loop2 ; labelType: None ; exists: True ; >07:50:49,147 WARN storage: disklabel detected but not usable on loop2 >07:50:49,149 INFO storage: type detected on 'loop2' is 'DM_snapshot_cow' >07:50:49,150 DEBUG storage: getFormat('DM_snapshot_cow') returning DeviceFormat instance >07:50:49,153 DEBUG storage: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >07:50:49,158 DEBUG storage: skipping further processing due to clearpart >07:50:49,159 INFO storage: got device: LoopDevice instance (0x7fbbd6131e10) -- > name = loop2 status = False kids = 0 id = 7 > parents = ['existing 0MB file /overlay (deleted) (6)'] > 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 >07:50:49,161 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop3', > 'DEVPATH': '/devices/virtual/block/loop3', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '3', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '204093', > 'name': 'loop3', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop3'} ; name: loop3 ; >07:50:49,163 INFO storage: ignoring loop3 (/devices/virtual/block/loop3) >07:50:49,164 DEBUG storage: lvm filter: adding loop3 to the reject list >07:50:49,168 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop4', > 'DEVPATH': '/devices/virtual/block/loop4', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '4', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '204759', > 'name': 'loop4', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop4'} ; name: loop4 ; >07:50:49,174 INFO storage: ignoring loop4 (/devices/virtual/block/loop4) >07:50:49,175 DEBUG storage: lvm filter: adding loop4 to the reject list >07:50:49,177 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop5', > 'DEVPATH': '/devices/virtual/block/loop5', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '5', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '204779', > 'name': 'loop5', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop5'} ; name: loop5 ; >07:50:49,178 INFO storage: ignoring loop5 (/devices/virtual/block/loop5) >07:50:49,179 DEBUG storage: lvm filter: adding loop5 to the reject list >07:50:49,181 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop6', > 'DEVPATH': '/devices/virtual/block/loop6', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '6', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '216060', > 'name': 'loop6', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop6'} ; name: loop6 ; >07:50:49,187 INFO storage: ignoring loop6 (/devices/virtual/block/loop6) >07:50:49,188 DEBUG storage: lvm filter: adding loop6 to the reject list >07:50:49,189 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop7', > 'DEVPATH': '/devices/virtual/block/loop7', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '7', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '216781', > 'name': 'loop7', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop7'} ; name: loop7 ; >07:50:49,190 INFO storage: ignoring loop7 (/devices/virtual/block/loop7) >07:50:49,191 DEBUG storage: lvm filter: adding loop7 to the reject list >07:50:49,192 DEBUG storage: Skipping a device mapper drive (dm-0) for now >07:50:49,285 INFO storage: devices to scan: ['dm-0'] >07:50:49,320 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVLINKS': '/dev/disk/by-id/dm-name-live-rw /dev/disk/by-label/Anaconda /dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a /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': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_UUID_ENC': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '253', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '198086', > 'name': 'dm-0', > 'symlinks': ['/dev/disk/by-id/dm-name-live-rw', > '/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a', > '/dev/mapper/live-rw'], > 'sysfs_path': '/devices/virtual/block/dm-0'} ; name: live-rw ; >07:50:49,322 INFO storage: scanning live-rw (/devices/virtual/block/dm-0)... >07:50:49,327 DEBUG storage: DeviceTree.getDeviceByName: name: live-rw ; >07:50:49,329 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:49,353 INFO storage: live-rw is a device-mapper device >07:50:49,355 DEBUG storage: DeviceTree.addUdevDMDevice: name: live-rw ; >07:50:49,358 DEBUG storage: DeviceTree.getDeviceByName: name: loop1 ; >07:50:49,363 DEBUG storage: DeviceTree.getDeviceByName returned existing 0MB loop loop1 (5) with existing ext4 filesystem >07:50:49,367 DEBUG storage: DeviceTree.getDeviceByName: name: loop2 ; >07:50:49,372 DEBUG storage: DeviceTree.getDeviceByName returned existing 0MB loop loop2 (7) >07:50:49,375 DEBUG storage: DeviceTree.getDeviceByName: name: live-rw ; >07:50:49,380 DEBUG storage: DeviceTree.getDeviceByName returned None >07:50:49,382 DEBUG storage: LoopDevice.addChild: kids: 0 ; name: loop2 ; >07:50:49,389 DEBUG storage: getFormat('None') returning DeviceFormat instance >07:50:49,391 DEBUG storage: DMDevice._setFormat: live-rw ; current: None ; type: None ; >07:50:49,395 INFO storage: added dm live-rw (id 8) to device tree >07:50:49,397 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: live-rw ; >07:50:49,398 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: live-rw ; label_type: None ; >07:50:49,405 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:49,406 DEBUG storage: getFormat('ext4') returning Ext4FS instance >07:50:49,407 DEBUG storage: device live-rw does not contain a disklabel >07:50:49,408 INFO storage: type detected on 'live-rw' is 'ext4' >07:50:49,603 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:49,609 DEBUG storage: getFormat('ext4') returning Ext4FS instance >07:50:49,611 DEBUG storage: DMDevice._setFormat: live-rw ; current: None ; type: ext4 ; >07:50:49,617 DEBUG storage: looking up parted Device: /dev/mapper/live-rw >07:50:49,639 INFO storage: got device: DMDevice instance (0x7fbbd0445cd0) -- > name = live-rw status = True kids = 0 id = 8 > parents = ['existing 0MB loop loop2 (7)'] > uuid = None size = 1024.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: 2097152 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: True > hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) > PedDevice: <_ped.Device object at 0x7fbbd618bef0> > target size = 0 path = /dev/mapper/live-rw > format args = [] originalFormat = None target = None dmUuid = None >07:50:49,641 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:49,643 INFO storage: got format: Ext4FS instance (0x7fbbd0450c50) -- > type = ext4 name = ext4 status = False > device = /dev/mapper/live-rw uuid = a5f7360b-4196-454f-8b2e-aa85cbcf660a exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 1024.0 targetSize = 1024.0 > >07:50:49,720 DEBUG storage: OpticalDevice.teardown: sr0 ; status: True ; controllable: True ; >07:50:49,724 DEBUG storage: DeviceFormat.teardown: device: /dev/sr0 ; status: False ; type: None ; >07:50:49,731 DEBUG storage: DeviceFormat.teardown: device: /dev/sr0 ; status: False ; type: None ; >07:50:49,794 DEBUG storage: DiskDevice.teardown: vda ; status: True ; controllable: True ; >07:50:49,802 DEBUG storage: DeviceFormat.teardown: device: /dev/vda ; status: False ; type: None ; >07:50:49,806 DEBUG storage: DeviceFormat.teardown: device: /dev/vda ; status: False ; type: None ; >07:50:49,871 DEBUG storage: LoopDevice.teardown: loop0 ; status: False ; controllable: False ; >07:50:49,878 DEBUG storage: LoopDevice.teardown: loop1 ; status: False ; controllable: False ; >07:50:49,880 DEBUG storage: DMDevice.teardown: live-rw ; status: True ; controllable: False ; >07:50:49,885 INFO storage: not going to restore from backup of non-existent /etc/mdadm.conf >07:50:49,887 INFO storage: edd: collected mbr signatures: {} >07:50:49,888 DEBUG storage: edd: data extracted from 0x80: > type: SCSI, ata_device: None > channel: 0, mbr_signature: None > pci_dev: 00:04.0, scsi_id: 0 > scsi_lun: 0, sectors: 16777216 >07:50:49,894 DEBUG storage: edd: matched 0x80 to vda using pci_dev >07:50:50,018 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:50,025 DEBUG storage: Ext4FS.supported: supported: True ; >07:50:50,028 DEBUG storage: OpticalDevice.mediaPresent: sr0 ; status: True ; >09:50:52,324 DEBUG storage: OpticalDevice.mediaPresent: sr0 ; status: True ; >09:50:52,340 INFO storage: updating format of device: existing 0MB cdrom sr0 (0) >09:50:52,484 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sr0 ; >09:50:52,499 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sr0 ; label_type: None ; >09:50:52,502 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:52,510 DEBUG storage: OpticalDevice.setup: sr0 ; status: True ; controllable: True ; orig: False ; >09:50:52,514 DEBUG storage: DiskLabel.__init__: device: /dev/sr0 ; labelType: None ; exists: True ; >09:50:52,528 ERR storage: DiskLabel.partedDevice: Parted exception: Error opening /dev/sr0: No medium found >09:50:52,530 INFO storage: DiskLabel.partedDevice returning None >09:50:52,531 DEBUG storage: getFormat('disklabel') returning DiskLabel instance >09:50:52,532 DEBUG storage: no type or existing type for sr0, bailing >09:50:52,635 DEBUG storage: Iso9660FS.supported: supported: True ; >09:50:52,637 DEBUG storage: Iso9660FS.supported: supported: True ; >09:50:52,643 DEBUG storage: NFSv4.supported: supported: False ; >09:50:52,648 DEBUG storage: NFSv4.supported: supported: False ; >09:50:52,650 DEBUG storage: SELinuxFS.supported: supported: False ; >09:50:52,652 DEBUG storage: SELinuxFS.supported: supported: False ; >09:50:52,655 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:52,661 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:52,663 DEBUG storage: Ext3FS.supported: supported: True ; >09:50:52,665 DEBUG storage: Ext3FS.supported: supported: True ; >09:50:52,671 DEBUG storage: Ext2FS.supported: supported: True ; >09:50:52,673 DEBUG storage: Ext2FS.supported: supported: True ; >09:50:52,675 DEBUG storage: SysFS.supported: supported: False ; >09:50:52,680 DEBUG storage: SysFS.supported: supported: False ; >09:50:52,682 DEBUG storage: MultipathMember.__init__: >09:50:52,683 DEBUG storage: SwapSpace.__init__: >09:50:52,686 DEBUG storage: ProcFS.supported: supported: False ; >09:50:52,693 DEBUG storage: ProcFS.supported: supported: False ; >09:50:52,695 DEBUG storage: NoDevFS.supported: supported: False ; >09:50:52,696 DEBUG storage: NoDevFS.supported: supported: False ; >09:50:52,697 DEBUG storage: DevPtsFS.supported: supported: False ; >09:50:52,702 DEBUG storage: DevPtsFS.supported: supported: False ; >09:50:52,704 DEBUG storage: BTRFS.supported: supported: True ; >09:50:52,888 DEBUG storage: BTRFS.supported: supported: True ; >09:50:52,897 DEBUG storage: USBFS.supported: supported: False ; >09:50:52,905 DEBUG storage: USBFS.supported: supported: False ; >09:50:52,907 DEBUG storage: DiskLabel.__init__: >09:50:52,909 INFO storage: DiskLabel.partedDevice returning None >09:50:52,910 DEBUG storage: HFSPlus.supported: supported: False ; >09:50:52,917 DEBUG storage: HFSPlus.supported: supported: False ; >09:50:52,918 DEBUG storage: XFS.supported: supported: True ; >09:50:53,091 DEBUG storage: XFS.supported: supported: True ; >09:50:53,101 DEBUG storage: TmpFS.supported: supported: False ; >09:50:53,113 DEBUG storage: TmpFS.supported: supported: False ; >09:50:53,115 DEBUG storage: LUKS.__init__: >09:50:53,117 DEBUG storage: NTFS.supported: supported: False ; >09:50:53,120 DEBUG storage: NTFS.supported: supported: False ; >09:50:53,123 DEBUG storage: BindFS.supported: supported: False ; >09:50:53,133 DEBUG storage: BindFS.supported: supported: False ; >09:50:53,137 DEBUG storage: HFS.supported: supported: False ; >09:50:53,139 DEBUG storage: HFS.supported: supported: False ; >09:50:53,140 DEBUG storage: LVMPhysicalVolume.__init__: >09:50:53,142 DEBUG storage: NFS.supported: supported: False ; >09:50:53,144 DEBUG storage: NFS.supported: supported: False ; >09:50:53,146 DEBUG storage: FATFS.supported: supported: True ; >09:50:53,209 DEBUG storage: FATFS.supported: supported: True ; >09:50:53,220 DEBUG storage: DMRaidMember.__init__: >09:50:53,226 DEBUG storage: MDRaidMember.__init__: >09:50:54,972 DEBUG storage: clearpart: initializing vda >09:50:54,993 DEBUG storage: DeviceFormat.teardown: device: /dev/vda ; status: False ; type: None ; >09:50:55,002 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:55,007 DEBUG storage: DiskDevice._setFormat: vda ; current: None ; type: None ; >09:50:55,012 INFO storage: registered action: [0] Destroy Format None on disk vda (id 1) >09:50:55,028 DEBUG storage: DiskLabel.__init__: device: /dev/vda ; labelType: msdos ; >09:50:55,037 DEBUG storage: DiskLabel.freshPartedDisk: device: /dev/vda ; labelType: msdos ; >09:50:55,042 DEBUG storage: Did not set pmbr_boot on parted.Disk instance -- > type: msdos primaryPartitionCount: 0 > lastPartitionNumber: -1 maxPrimaryPartitionCount: 4 > partitions: [] > device: <parted.device.Device object at 0x7fbbd08c9210> > PedDisk: <_ped.Disk object at 0x7fbbcbf01368> >09:50:55,048 DEBUG storage: getFormat('disklabel') returning DiskLabel instance >09:50:55,057 DEBUG storage: DeviceFormat.teardown: device: /dev/vda ; status: False ; type: None ; >09:50:55,060 DEBUG storage: DiskDevice._setFormat: vda ; current: None ; type: disklabel ; >09:50:55,062 INFO storage: registered action: [1] Create Format msdos disklabel on disk vda (id 1) >09:50:55,063 DEBUG storage: new disk order: [] >09:50:55,160 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,176 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,180 DEBUG storage: getFormat('biosboot') returning BIOSBoot instance >09:50:55,267 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,276 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,280 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:55,287 DEBUG storage: PartitionDevice._setFormat: req0 ; >09:50:55,289 DEBUG storage: PartitionDevice._setFormat: req0 ; current: None ; type: biosboot ; >09:50:55,295 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:50:55,301 INFO storage: added partition req0 (id 9) to device tree >09:50:55,303 INFO storage: registered action: [2] Create Device partition req0 (id 9) >09:50:55,304 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:55,305 INFO storage: registered action: [3] Create Format biosboot on partition req0 (id 9) >09:50:55,308 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:55,313 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:55,402 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,412 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,421 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:55,428 DEBUG storage: PartitionDevice._setFormat: req1 ; >09:50:55,431 DEBUG storage: PartitionDevice._setFormat: req1 ; current: None ; type: ext4 ; >09:50:55,434 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:50:55,439 INFO storage: added partition req1 (id 10) to device tree >09:50:55,440 INFO storage: registered action: [4] Create Device partition req1 (id 10) >09:50:55,442 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:55,444 INFO storage: registered action: [5] Create Format ext4 filesystem mounted at / on partition req1 (id 10) >09:50:55,450 DEBUG storage: SwapSpace.__init__: mountopts: ; mountpoint: ; fsprofile: ; label: ; >09:50:55,451 DEBUG storage: getFormat('swap') returning SwapSpace instance >09:50:55,536 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,545 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,554 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:55,561 DEBUG storage: PartitionDevice._setFormat: req2 ; >09:50:55,563 DEBUG storage: PartitionDevice._setFormat: req2 ; current: None ; type: swap ; >09:50:55,565 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:50:55,570 INFO storage: added partition req2 (id 11) to device tree >09:50:55,571 INFO storage: registered action: [6] Create Device partition req2 (id 11) >09:50:55,573 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:55,574 INFO storage: registered action: [7] Create Format swap on partition req2 (id 11) >09:50:55,578 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >09:50:55,584 DEBUG storage: removing all non-preexisting partitions ['req0(id 9)', 'req1(id 10)', 'req2(id 11)'] from disk(s) ['vda'] >09:50:55,591 DEBUG storage: allocatePartitions: disks=['vda'] ; partitions=['req0(id 9)', 'req1(id 10)', 'req2(id 11)'] >09:50:55,592 DEBUG storage: removing all non-preexisting partitions ['req0(id 9)', 'req1(id 10)', 'req2(id 11)'] from disk(s) ['vda'] >09:50:55,595 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,601 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,602 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,604 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,605 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,610 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,611 DEBUG storage: allocating partition: req0 ; id: 9 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:55,612 DEBUG storage: checking freespace on vda >09:50:55,614 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:55,615 DEBUG storage: current free range is 63-16777215 (8191MB) >09:50:55,616 DEBUG storage: updating use_disk to vda, type: 0 >09:50:55,617 DEBUG storage: new free: 63-16777215 / 8191MB >09:50:55,618 DEBUG storage: new free allows for 0 sectors of growth >09:50:55,619 DEBUG storage: found free space for bootable request >09:50:55,624 DEBUG storage: adjusted start sector from 63 to 2048 >09:50:55,626 DEBUG storage: created partition vda1 of 2MB and added it to /dev/vda >09:50:55,628 DEBUG storage: PartitionDevice._setPartedPartition: req0 ; >09:50:55,630 DEBUG storage: device req0 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0905a10> PedPartition: <_ped.Partition object at 0x7fbbd09008f0> >09:50:55,636 DEBUG storage: PartitionDevice._setDisk: vda1 ; new: vda ; old: None ; >09:50:55,639 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:55,643 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:55,648 DEBUG storage: device vda1 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd093fe90> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:55,650 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,652 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,653 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,655 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,662 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,663 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,664 DEBUG storage: allocating partition: req1 ; id: 10 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 3072MB ; grow: False ; max_size: 0 >09:50:55,665 DEBUG storage: checking freespace on vda >09:50:55,666 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=3072MB boot=False best=None grow=False >09:50:55,668 DEBUG storage: current free range is 63-2047 (0MB) >09:50:55,669 DEBUG storage: current free range is 6144-16777215 (8189MB) >09:50:55,670 DEBUG storage: updating use_disk to vda, type: 0 >09:50:55,671 DEBUG storage: new free: 6144-16777215 / 8189MB >09:50:55,671 DEBUG storage: new free allows for 0 sectors of growth >09:50:55,673 DEBUG storage: created partition vda2 of 3072MB and added it to /dev/vda >09:50:55,680 DEBUG storage: PartitionDevice._setPartedPartition: req1 ; >09:50:55,681 DEBUG storage: device req1 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0905bd0> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:50:55,683 DEBUG storage: PartitionDevice._setDisk: vda2 ; new: vda ; old: None ; >09:50:55,685 DEBUG storage: DiskDevice.addChild: kids: 1 ; name: vda ; >09:50:55,691 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:50:55,692 DEBUG storage: device vda2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0905ad0> PedPartition: <_ped.Partition object at 0x7fbbd0900a10> >09:50:55,694 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,696 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,701 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,702 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,704 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,705 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,706 DEBUG storage: allocating partition: req2 ; id: 11 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:55,707 DEBUG storage: checking freespace on vda >09:50:55,708 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=1024MB boot=False best=None grow=False >09:50:55,710 DEBUG storage: current free range is 63-2047 (0MB) >09:50:55,711 DEBUG storage: current free range is 6297600-16777215 (5117MB) >09:50:55,711 DEBUG storage: updating use_disk to vda, type: 0 >09:50:55,717 DEBUG storage: new free: 6297600-16777215 / 5117MB >09:50:55,718 DEBUG storage: new free allows for 0 sectors of growth >09:50:55,719 DEBUG storage: created partition vda3 of 1024MB and added it to /dev/vda >09:50:55,721 DEBUG storage: PartitionDevice._setPartedPartition: req2 ; >09:50:55,722 DEBUG storage: device req2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0905f10> PedPartition: <_ped.Partition object at 0x7fbbd0900950> >09:50:55,724 DEBUG storage: PartitionDevice._setDisk: vda3 ; new: vda ; old: None ; >09:50:55,726 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:50:55,732 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:50:55,733 DEBUG storage: device vda3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f8190> PedPartition: <_ped.Partition object at 0x7fbbd0900b30> >09:50:55,734 DEBUG storage: growPartitions: disks=['vda'], partitions=['vda1(id 9)', 'vda2(id 10)', 'vda3(id 11)'] >09:50:55,735 DEBUG storage: no growable partitions >09:50:55,736 DEBUG storage: fixing size of non-existent 2MB partition vda1 (9) with non-existent biosboot at 2.00 >09:50:55,737 DEBUG storage: fixing size of non-existent 3072MB partition vda2 (10) with non-existent ext4 filesystem mounted at / at 3072.00 >09:50:55,738 DEBUG storage: fixing size of non-existent 1024MB partition vda3 (11) with non-existent swap at 1024.00 >09:50:55,741 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:55,747 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:55,749 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:55,750 DEBUG storage: _is_valid_disklabel(vda) returning True >09:50:55,756 DEBUG storage: _is_valid_size(vda) returning True >09:50:55,757 DEBUG storage: _is_valid_location(vda) returning True >09:50:55,758 DEBUG storage: _is_valid_format(vda) returning True >09:50:55,759 DEBUG storage: is_valid_stage1_device(vda) returning True >09:50:55,975 DEBUG storage: clearpart: looking at vda3 >09:50:55,981 DEBUG storage: clearpart: looking at vda2 >09:50:55,985 DEBUG storage: clearpart: looking at vda1 >09:50:55,986 DEBUG storage: checking whether disk vda has an empty extended >09:50:55,987 DEBUG storage: extended is None ; logicals is [] >09:50:55,988 DEBUG storage: new disk order: [] >09:50:56,110 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,118 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,120 DEBUG storage: getFormat('biosboot') returning BIOSBoot instance >09:50:56,210 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,219 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,223 DEBUG storage: DiskDevice.addChild: kids: 3 ; name: vda ; >09:50:56,229 DEBUG storage: PartitionDevice._setFormat: req3 ; >09:50:56,231 DEBUG storage: PartitionDevice._setFormat: req3 ; current: None ; type: biosboot ; >09:50:56,237 DEBUG storage: DiskDevice.removeChild: kids: 4 ; name: vda ; >09:50:56,239 INFO storage: added partition req3 (id 12) to device tree >09:50:56,244 INFO storage: registered action: [8] Create Device partition req3 (id 12) >09:50:56,247 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:56,248 INFO storage: registered action: [9] Create Format biosboot on partition req3 (id 12) >09:50:56,250 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:56,258 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:56,340 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,348 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,356 INFO storage: removed partition vda2 (id 10) from device tree >09:50:56,359 DEBUG storage: DiskDevice.removeChild: kids: 3 ; name: vda ; >09:50:56,365 INFO storage: registered action: [10] Destroy Device partition vda2 (id 10) >09:50:56,367 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:50:56,377 DEBUG storage: PartitionDevice._setFormat: req4 ; >09:50:56,385 DEBUG storage: PartitionDevice._setFormat: req4 ; current: None ; type: ext4 ; >09:50:56,387 DEBUG storage: DiskDevice.removeChild: kids: 3 ; name: vda ; >09:50:56,392 INFO storage: added partition req4 (id 13) to device tree >09:50:56,394 INFO storage: registered action: [11] Create Device partition req4 (id 13) >09:50:56,395 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:56,396 INFO storage: registered action: [12] Create Format ext4 filesystem mounted at / on partition req4 (id 13) >09:50:56,398 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:56,403 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:56,487 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,496 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,503 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:50:56,510 DEBUG storage: PartitionDevice._setFormat: req5 ; >09:50:56,514 DEBUG storage: PartitionDevice._setFormat: req5 ; current: None ; type: ext4 ; >09:50:56,520 DEBUG storage: DiskDevice.removeChild: kids: 3 ; name: vda ; >09:50:56,522 INFO storage: added partition req5 (id 14) to device tree >09:50:56,523 INFO storage: registered action: [13] Create Device partition req5 (id 14) >09:50:56,528 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:56,530 INFO storage: registered action: [14] Create Format ext4 filesystem on partition req5 (id 14) >09:50:56,533 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >09:50:56,540 DEBUG storage: removing all non-preexisting partitions ['req3(id 12)', 'req4(id 13)', 'req5(id 14)', 'vda1(id 9)', 'vda3(id 11)'] from disk(s) ['vda'] >09:50:56,544 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:56,549 DEBUG storage: device vda1 new partedPartition None >09:50:56,551 DEBUG storage: PartitionDevice._setDisk: req0 ; new: None ; old: vda ; >09:50:56,553 DEBUG storage: DiskDevice.removeChild: kids: 2 ; name: vda ; >09:50:56,555 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:50:56,560 DEBUG storage: device vda3 new partedPartition None >09:50:56,562 DEBUG storage: PartitionDevice._setDisk: req2 ; new: None ; old: vda ; >09:50:56,564 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:50:56,565 DEBUG storage: allocatePartitions: disks=['vda'] ; partitions=['req3(id 12)', 'req4(id 13)', 'req5(id 14)', 'req0(id 9)', 'req2(id 11)'] >09:50:56,566 DEBUG storage: removing all non-preexisting partitions ['req3(id 12)', 'req0(id 9)', 'req4(id 13)', 'req5(id 14)', 'req2(id 11)'] from disk(s) ['vda'] >09:50:56,572 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,574 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,575 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,577 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,583 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,584 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,585 DEBUG storage: allocating partition: req3 ; id: 12 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:56,585 DEBUG storage: checking freespace on vda >09:50:56,587 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:56,594 DEBUG storage: current free range is 63-16777215 (8191MB) >09:50:56,596 DEBUG storage: updating use_disk to vda, type: 0 >09:50:56,597 DEBUG storage: new free: 63-16777215 / 8191MB >09:50:56,598 DEBUG storage: new free allows for 0 sectors of growth >09:50:56,599 DEBUG storage: found free space for bootable request >09:50:56,599 DEBUG storage: adjusted start sector from 63 to 2048 >09:50:56,601 DEBUG storage: created partition vda1 of 2MB and added it to /dev/vda >09:50:56,604 DEBUG storage: PartitionDevice._setPartedPartition: req3 ; >09:50:56,609 DEBUG storage: device req3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f8dd0> PedPartition: <_ped.Partition object at 0x7fbbd0900a70> >09:50:56,611 DEBUG storage: PartitionDevice._setDisk: vda1 ; new: vda ; old: None ; >09:50:56,614 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:56,616 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:56,621 DEBUG storage: device vda1 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f81d0> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:50:56,623 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,625 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,629 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,630 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,632 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,632 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,633 DEBUG storage: allocating partition: req0 ; id: 9 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:56,633 DEBUG storage: checking freespace on vda >09:50:56,634 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:56,635 DEBUG storage: current free range is 63-2047 (0MB) >09:50:56,639 DEBUG storage: current free range is 6144-16777215 (8189MB) >09:50:56,640 DEBUG storage: updating use_disk to vda, type: 0 >09:50:56,640 DEBUG storage: new free: 6144-16777215 / 8189MB >09:50:56,640 DEBUG storage: new free allows for 0 sectors of growth >09:50:56,641 DEBUG storage: found free space for bootable request >09:50:56,642 DEBUG storage: created partition vda2 of 2MB and added it to /dev/vda >09:50:56,643 DEBUG storage: PartitionDevice._setPartedPartition: req0 ; >09:50:56,643 DEBUG storage: device req0 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2050> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:56,645 DEBUG storage: PartitionDevice._setDisk: vda2 ; new: vda ; old: None ; >09:50:56,650 DEBUG storage: DiskDevice.addChild: kids: 1 ; name: vda ; >09:50:56,652 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:50:56,652 DEBUG storage: device vda2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2190> PedPartition: <_ped.Partition object at 0x7fbbd0900b30> >09:50:56,658 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,659 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,659 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,661 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,666 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,666 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,667 DEBUG storage: allocating partition: req4 ; id: 13 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 3072MB ; grow: False ; max_size: 0 >09:50:56,667 DEBUG storage: checking freespace on vda >09:50:56,668 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=3072MB boot=False best=None grow=False >09:50:56,670 DEBUG storage: current free range is 63-2047 (0MB) >09:50:56,670 DEBUG storage: current free range is 10240-16777215 (8187MB) >09:50:56,671 DEBUG storage: updating use_disk to vda, type: 0 >09:50:56,671 DEBUG storage: new free: 10240-16777215 / 8187MB >09:50:56,671 DEBUG storage: new free allows for 0 sectors of growth >09:50:56,676 DEBUG storage: created partition vda3 of 3072MB and added it to /dev/vda >09:50:56,677 DEBUG storage: PartitionDevice._setPartedPartition: req4 ; >09:50:56,677 DEBUG storage: device req4 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2290> PedPartition: <_ped.Partition object at 0x7fbbd0900a70> >09:50:56,679 DEBUG storage: PartitionDevice._setDisk: vda3 ; new: vda ; old: None ; >09:50:56,684 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:50:56,686 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:50:56,686 DEBUG storage: device vda3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2310> PedPartition: <_ped.Partition object at 0x7fbbd08ee3b0> >09:50:56,688 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,693 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,694 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,695 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,696 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,697 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,697 DEBUG storage: allocating partition: req5 ; id: 14 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:56,697 DEBUG storage: checking freespace on vda >09:50:56,698 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=2 req_size=1024MB boot=False best=None grow=False >09:50:56,702 DEBUG storage: current free range is 63-2047 (0MB) >09:50:56,703 DEBUG storage: current free range is 6301696-16777215 (5115MB) >09:50:56,703 DEBUG storage: updating use_disk to vda, type: 2 >09:50:56,704 DEBUG storage: new free: 6301696-16777215 / 5115MB >09:50:56,704 DEBUG storage: new free allows for 0 sectors of growth >09:50:56,704 DEBUG storage: creating extended partition >09:50:56,705 DEBUG storage: recalculating free space >09:50:56,706 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:56,706 DEBUG storage: looking for intersection between extended (6301696-16777215) and free (63-2047) >09:50:56,707 DEBUG storage: free region not suitable for request >09:50:56,707 DEBUG storage: looking for intersection between extended (6301696-16777215) and free (6301759-16777215) >09:50:56,708 DEBUG storage: current free range is 6301759-16777215 (5114MB) >09:50:56,708 DEBUG storage: adjusted start sector from 6301759 to 6305792 >09:50:56,713 DEBUG storage: created partition vda5 of 1024MB and added it to /dev/vda >09:50:56,714 DEBUG storage: PartitionDevice._setPartedPartition: req5 ; >09:50:56,715 DEBUG storage: device req5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2610> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:50:56,716 DEBUG storage: PartitionDevice._setDisk: vda5 ; new: vda ; old: None ; >09:50:56,717 DEBUG storage: DiskDevice.addChild: kids: 3 ; name: vda ; >09:50:56,724 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:50:56,724 DEBUG storage: device vda5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2c10> PedPartition: <_ped.Partition object at 0x7fbbd08ee5f0> >09:50:56,726 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,731 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,732 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,733 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,734 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,735 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,739 DEBUG storage: allocating partition: req2 ; id: 11 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:56,739 DEBUG storage: checking freespace on vda >09:50:56,740 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:56,741 DEBUG storage: looking for intersection between extended (6301696-16777215) and free (63-2047) >09:50:56,741 DEBUG storage: free region not suitable for request >09:50:56,742 DEBUG storage: looking for intersection between extended (6301696-16777215) and free (8402944-16777215) >09:50:56,742 DEBUG storage: current free range is 8402944-16777215 (4089MB) >09:50:56,743 DEBUG storage: updating use_disk to vda, type: 1 >09:50:56,744 DEBUG storage: new free: 8402944-16777215 / 4089MB >09:50:56,744 DEBUG storage: new free allows for 0 sectors of growth >09:50:56,744 DEBUG storage: adjusted start sector from 8402944 to 8404992 >09:50:56,745 DEBUG storage: created partition vda6 of 1024MB and added it to /dev/vda >09:50:56,746 DEBUG storage: PartitionDevice._setPartedPartition: req2 ; >09:50:56,747 DEBUG storage: device req2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0905d90> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:56,752 DEBUG storage: PartitionDevice._setDisk: vda6 ; new: vda ; old: None ; >09:50:56,753 DEBUG storage: DiskDevice.addChild: kids: 4 ; name: vda ; >09:50:56,755 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:50:56,759 DEBUG storage: device vda6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d8450> PedPartition: <_ped.Partition object at 0x7fbbd08ee830> >09:50:56,760 DEBUG storage: growPartitions: disks=['vda'], partitions=['vda1(id 12)', 'vda3(id 13)', 'vda5(id 14)', 'vda2(id 9)', 'vda6(id 11)'] >09:50:56,760 DEBUG storage: no growable partitions >09:50:56,761 DEBUG storage: fixing size of non-existent 2MB partition vda1 (12) with non-existent biosboot at 2.00 >09:50:56,762 DEBUG storage: fixing size of non-existent 2MB partition vda2 (9) with non-existent biosboot at 2.00 >09:50:56,762 DEBUG storage: fixing size of non-existent 3072MB partition vda3 (13) with non-existent ext4 filesystem mounted at / at 3072.00 >09:50:56,763 DEBUG storage: fixing size of non-existent 1024MB partition vda5 (14) with non-existent ext4 filesystem at 1024.00 >09:50:56,763 DEBUG storage: fixing size of non-existent 1024MB partition vda6 (11) with non-existent swap at 1024.00 >09:50:56,766 DEBUG storage: DeviceTree.getDeviceByName: name: vda4 ; >09:50:56,771 DEBUG storage: DeviceTree.getDeviceByName returned None >09:50:56,773 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:50:56,774 DEBUG storage: PartitionDevice._setFormat: vda4 ; >09:50:56,774 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:56,779 DEBUG storage: PartitionDevice._setFormat: vda4 ; current: None ; type: None ; >09:50:56,780 DEBUG storage: DiskDevice.removeChild: kids: 6 ; name: vda ; >09:50:56,781 DEBUG storage: PartitionDevice._setPartedPartition: vda4 ; >09:50:56,782 DEBUG storage: device vda4 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2550> PedPartition: <_ped.Partition object at 0x7fbbd08ee4d0> >09:50:56,786 INFO storage: added partition vda4 (id 15) to device tree >09:50:56,789 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:56,791 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:56,795 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:56,797 DEBUG storage: _is_valid_disklabel(vda) returning True >09:50:56,797 DEBUG storage: _is_valid_size(vda) returning True >09:50:56,798 DEBUG storage: _is_valid_location(vda) returning True >09:50:56,798 DEBUG storage: _is_valid_format(vda) returning True >09:50:56,799 DEBUG storage: is_valid_stage1_device(vda) returning True >09:50:56,964 DEBUG storage: clearpart: looking at vda6 >09:50:56,968 DEBUG storage: clearpart: looking at vda5 >09:50:56,968 DEBUG storage: clearpart: looking at vda4 >09:50:56,968 DEBUG storage: clearpart: looking at vda3 >09:50:56,969 DEBUG storage: clearpart: looking at vda2 >09:50:56,969 DEBUG storage: clearpart: looking at vda1 >09:50:56,970 DEBUG storage: checking whether disk vda has an empty extended >09:50:56,971 DEBUG storage: extended is parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2990> PedPartition: <_ped.Partition object at 0x7fbbd08ee590> ; logicals is ['vda5', 'vda6'] >09:50:56,975 DEBUG storage: new disk order: [] >09:50:57,053 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,061 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,067 DEBUG storage: getFormat('biosboot') returning BIOSBoot instance >09:50:57,154 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,161 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,167 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:50:57,174 DEBUG storage: PartitionDevice._setFormat: req6 ; >09:50:57,176 DEBUG storage: PartitionDevice._setFormat: req6 ; current: None ; type: biosboot ; >09:50:57,178 DEBUG storage: DiskDevice.removeChild: kids: 6 ; name: vda ; >09:50:57,183 INFO storage: added partition req6 (id 16) to device tree >09:50:57,184 INFO storage: registered action: [15] Create Device partition req6 (id 16) >09:50:57,186 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:57,187 INFO storage: registered action: [16] Create Format biosboot on partition req6 (id 16) >09:50:57,193 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:57,199 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:57,291 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,299 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,302 INFO storage: removed partition vda3 (id 13) from device tree >09:50:57,310 DEBUG storage: DiskDevice.removeChild: kids: 5 ; name: vda ; >09:50:57,314 INFO storage: registered action: [17] Destroy Device partition vda3 (id 13) >09:50:57,317 DEBUG storage: DiskDevice.addChild: kids: 4 ; name: vda ; >09:50:57,319 DEBUG storage: PartitionDevice._setFormat: req7 ; >09:50:57,324 DEBUG storage: PartitionDevice._setFormat: req7 ; current: None ; type: ext4 ; >09:50:57,326 DEBUG storage: DiskDevice.removeChild: kids: 5 ; name: vda ; >09:50:57,332 INFO storage: added partition req7 (id 17) to device tree >09:50:57,334 INFO storage: registered action: [18] Create Device partition req7 (id 17) >09:50:57,336 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:57,337 INFO storage: registered action: [19] Create Format ext4 filesystem mounted at / on partition req7 (id 17) >09:50:57,340 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:57,344 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:57,431 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,439 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,447 DEBUG storage: DiskDevice.addChild: kids: 4 ; name: vda ; >09:50:57,453 DEBUG storage: PartitionDevice._setFormat: req8 ; >09:50:57,456 DEBUG storage: PartitionDevice._setFormat: req8 ; current: None ; type: ext4 ; >09:50:57,461 DEBUG storage: DiskDevice.removeChild: kids: 5 ; name: vda ; >09:50:57,463 INFO storage: added partition req8 (id 18) to device tree >09:50:57,465 INFO storage: registered action: [20] Create Device partition req8 (id 18) >09:50:57,470 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:57,471 INFO storage: registered action: [21] Create Format ext4 filesystem on partition req8 (id 18) >09:50:57,474 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >09:50:57,477 DEBUG storage: removing all non-preexisting partitions ['req6(id 16)', 'req7(id 17)', 'req8(id 18)', 'vda1(id 12)', 'vda2(id 9)', 'vda4(id 15)', 'vda5(id 14)', 'vda6(id 11)'] from disk(s) ['vda'] >09:50:57,483 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:57,484 DEBUG storage: device vda1 new partedPartition None >09:50:57,485 DEBUG storage: PartitionDevice._setDisk: req3 ; new: None ; old: vda ; >09:50:57,490 DEBUG storage: DiskDevice.removeChild: kids: 4 ; name: vda ; >09:50:57,491 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:50:57,492 DEBUG storage: device vda2 new partedPartition None >09:50:57,493 DEBUG storage: PartitionDevice._setDisk: req0 ; new: None ; old: vda ; >09:50:57,498 DEBUG storage: DiskDevice.removeChild: kids: 3 ; name: vda ; >09:50:57,500 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:50:57,500 DEBUG storage: device vda5 new partedPartition None >09:50:57,501 DEBUG storage: PartitionDevice._setDisk: req5 ; new: None ; old: vda ; >09:50:57,506 DEBUG storage: DiskDevice.removeChild: kids: 2 ; name: vda ; >09:50:57,507 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:50:57,508 DEBUG storage: device vda6 new partedPartition None >09:50:57,509 DEBUG storage: PartitionDevice._setDisk: req2 ; new: None ; old: vda ; >09:50:57,514 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:50:57,515 DEBUG storage: removing empty extended partition from vda >09:50:57,516 DEBUG storage: allocatePartitions: disks=['vda'] ; partitions=['req6(id 16)', 'req7(id 17)', 'req8(id 18)', 'req3(id 12)', 'req0(id 9)', 'vda4(id 15)', 'req5(id 14)', 'req2(id 11)'] >09:50:57,517 DEBUG storage: removing all non-preexisting partitions ['req6(id 16)', 'req3(id 12)', 'req0(id 9)', 'req7(id 17)', 'req8(id 18)', 'req5(id 14)', 'req2(id 11)', 'vda4(id 15)'] from disk(s) ['vda'] >09:50:57,524 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,526 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,526 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,527 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,532 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,532 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,533 DEBUG storage: allocating partition: req6 ; id: 16 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:57,533 DEBUG storage: checking freespace on vda >09:50:57,534 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:57,535 DEBUG storage: current free range is 63-16777215 (8191MB) >09:50:57,539 DEBUG storage: updating use_disk to vda, type: 0 >09:50:57,540 DEBUG storage: new free: 63-16777215 / 8191MB >09:50:57,540 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,540 DEBUG storage: found free space for bootable request >09:50:57,541 DEBUG storage: adjusted start sector from 63 to 2048 >09:50:57,542 DEBUG storage: created partition vda1 of 2MB and added it to /dev/vda >09:50:57,544 DEBUG storage: PartitionDevice._setPartedPartition: req6 ; >09:50:57,549 DEBUG storage: device req6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2e90> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:50:57,550 DEBUG storage: PartitionDevice._setDisk: vda1 ; new: vda ; old: None ; >09:50:57,552 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:57,553 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:57,558 DEBUG storage: device vda1 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2d50> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:57,559 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,561 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,567 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,569 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,570 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,570 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,571 DEBUG storage: allocating partition: req3 ; id: 12 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:57,571 DEBUG storage: checking freespace on vda >09:50:57,572 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:57,572 DEBUG storage: current free range is 63-2047 (0MB) >09:50:57,573 DEBUG storage: current free range is 6144-16777215 (8189MB) >09:50:57,577 DEBUG storage: updating use_disk to vda, type: 0 >09:50:57,578 DEBUG storage: new free: 6144-16777215 / 8189MB >09:50:57,578 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,578 DEBUG storage: found free space for bootable request >09:50:57,579 DEBUG storage: created partition vda2 of 2MB and added it to /dev/vda >09:50:57,580 DEBUG storage: PartitionDevice._setPartedPartition: req3 ; >09:50:57,581 DEBUG storage: device req3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e21d0> PedPartition: <_ped.Partition object at 0x7fbbd0900a70> >09:50:57,582 DEBUG storage: PartitionDevice._setDisk: vda2 ; new: vda ; old: None ; >09:50:57,588 DEBUG storage: DiskDevice.addChild: kids: 1 ; name: vda ; >09:50:57,591 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:50:57,595 DEBUG storage: device vda2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f8b90> PedPartition: <_ped.Partition object at 0x7fbbd0900b30> >09:50:57,597 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,598 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,598 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,600 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,605 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,605 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,606 DEBUG storage: allocating partition: req0 ; id: 9 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:57,606 DEBUG storage: checking freespace on vda >09:50:57,607 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:57,608 DEBUG storage: current free range is 63-2047 (0MB) >09:50:57,608 DEBUG storage: current free range is 10240-16777215 (8187MB) >09:50:57,609 DEBUG storage: updating use_disk to vda, type: 0 >09:50:57,609 DEBUG storage: new free: 10240-16777215 / 8187MB >09:50:57,609 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,610 DEBUG storage: found free space for bootable request >09:50:57,611 DEBUG storage: created partition vda3 of 2MB and added it to /dev/vda >09:50:57,616 DEBUG storage: PartitionDevice._setPartedPartition: req0 ; >09:50:57,616 DEBUG storage: device req0 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2450> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:50:57,618 DEBUG storage: PartitionDevice._setDisk: vda3 ; new: vda ; old: None ; >09:50:57,619 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:50:57,621 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:50:57,625 DEBUG storage: device vda3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e24d0> PedPartition: <_ped.Partition object at 0x7fbbd08ee410> >09:50:57,627 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,629 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,630 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,631 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,636 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,636 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,637 DEBUG storage: allocating partition: req7 ; id: 17 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 3072MB ; grow: False ; max_size: 0 >09:50:57,637 DEBUG storage: checking freespace on vda >09:50:57,638 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=2 req_size=3072MB boot=False best=None grow=False >09:50:57,638 DEBUG storage: current free range is 63-2047 (0MB) >09:50:57,639 DEBUG storage: current free range is 14336-16777215 (8185MB) >09:50:57,639 DEBUG storage: updating use_disk to vda, type: 2 >09:50:57,640 DEBUG storage: new free: 14336-16777215 / 8185MB >09:50:57,640 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,644 DEBUG storage: creating extended partition >09:50:57,645 DEBUG storage: recalculating free space >09:50:57,645 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=3072MB boot=False best=None grow=False >09:50:57,646 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:57,646 DEBUG storage: free region not suitable for request >09:50:57,647 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16777215) >09:50:57,647 DEBUG storage: current free range is 14399-16777215 (8184MB) >09:50:57,648 DEBUG storage: adjusted start sector from 14399 to 18432 >09:50:57,649 DEBUG storage: created partition vda5 of 3072MB and added it to /dev/vda >09:50:57,650 DEBUG storage: PartitionDevice._setPartedPartition: req7 ; >09:50:57,654 DEBUG storage: device req7 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4090> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:50:57,656 DEBUG storage: PartitionDevice._setDisk: vda5 ; new: vda ; old: None ; >09:50:57,664 DEBUG storage: DiskDevice.addChild: kids: 3 ; name: vda ; >09:50:57,667 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:50:57,671 DEBUG storage: device vda5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4810> PedPartition: <_ped.Partition object at 0x7fbbd08ee590> >09:50:57,673 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,674 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,675 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,676 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,681 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,682 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,682 DEBUG storage: allocating partition: req8 ; id: 18 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:57,682 DEBUG storage: checking freespace on vda >09:50:57,684 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:57,684 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:57,685 DEBUG storage: free region not suitable for request >09:50:57,685 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:57,686 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:57,690 DEBUG storage: looking for intersection between extended (14336-16777215) and free (6309888-16777215) >09:50:57,691 DEBUG storage: current free range is 6309888-16777215 (5111MB) >09:50:57,691 DEBUG storage: updating use_disk to vda, type: 1 >09:50:57,692 DEBUG storage: new free: 6309888-16777215 / 5111MB >09:50:57,692 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,692 DEBUG storage: adjusted start sector from 6309888 to 6311936 >09:50:57,693 DEBUG storage: created partition vda6 of 1024MB and added it to /dev/vda >09:50:57,694 DEBUG storage: PartitionDevice._setPartedPartition: req8 ; >09:50:57,695 DEBUG storage: device req8 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2e90> PedPartition: <_ped.Partition object at 0x7fbbd0900a70> >09:50:57,696 DEBUG storage: PartitionDevice._setDisk: vda6 ; new: vda ; old: None ; >09:50:57,702 DEBUG storage: DiskDevice.addChild: kids: 4 ; name: vda ; >09:50:57,704 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:50:57,705 DEBUG storage: device vda6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4e90> PedPartition: <_ped.Partition object at 0x7fbbd08ee8f0> >09:50:57,707 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,708 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,712 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,713 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,715 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,715 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,715 DEBUG storage: allocating partition: req5 ; id: 14 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:57,716 DEBUG storage: checking freespace on vda >09:50:57,716 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:57,717 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:57,721 DEBUG storage: free region not suitable for request >09:50:57,721 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:57,722 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:57,722 DEBUG storage: looking for intersection between extended (14336-16777215) and free (8409088-16777215) >09:50:57,723 DEBUG storage: current free range is 8409088-16777215 (4086MB) >09:50:57,723 DEBUG storage: updating use_disk to vda, type: 1 >09:50:57,724 DEBUG storage: new free: 8409088-16777215 / 4086MB >09:50:57,724 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,725 DEBUG storage: adjusted start sector from 8409088 to 8411136 >09:50:57,725 DEBUG storage: created partition vda7 of 1024MB and added it to /dev/vda >09:50:57,727 DEBUG storage: PartitionDevice._setPartedPartition: req5 ; >09:50:57,728 DEBUG storage: device req5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 7 path: /dev/vda7 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4950> PedPartition: <_ped.Partition object at 0x7fbbd08ee710> >09:50:57,730 DEBUG storage: PartitionDevice._setDisk: vda7 ; new: vda ; old: None ; >09:50:57,731 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:50:57,738 DEBUG storage: PartitionDevice._setPartedPartition: vda7 ; >09:50:57,739 DEBUG storage: device vda7 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 7 path: /dev/vda7 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866510> PedPartition: <_ped.Partition object at 0x7fbbd08eea70> >09:50:57,740 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,742 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,746 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,747 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,749 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,749 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,750 DEBUG storage: allocating partition: req2 ; id: 11 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:57,750 DEBUG storage: checking freespace on vda >09:50:57,751 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:57,756 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:57,756 DEBUG storage: free region not suitable for request >09:50:57,757 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:57,757 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:57,757 DEBUG storage: looking for intersection between extended (14336-16777215) and free (10508288-16777215) >09:50:57,758 DEBUG storage: current free range is 10508288-16777215 (3061MB) >09:50:57,758 DEBUG storage: updating use_disk to vda, type: 1 >09:50:57,759 DEBUG storage: new free: 10508288-16777215 / 3061MB >09:50:57,759 DEBUG storage: new free allows for 0 sectors of growth >09:50:57,760 DEBUG storage: adjusted start sector from 10508288 to 10510336 >09:50:57,761 DEBUG storage: created partition vda8 of 1024MB and added it to /dev/vda >09:50:57,766 DEBUG storage: PartitionDevice._setPartedPartition: req2 ; >09:50:57,767 DEBUG storage: device req2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 8 path: /dev/vda8 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2e50> PedPartition: <_ped.Partition object at 0x7fbbd0900a70> >09:50:57,768 DEBUG storage: PartitionDevice._setDisk: vda8 ; new: vda ; old: None ; >09:50:57,769 DEBUG storage: DiskDevice.addChild: kids: 6 ; name: vda ; >09:50:57,772 DEBUG storage: PartitionDevice._setPartedPartition: vda8 ; >09:50:57,776 DEBUG storage: device vda8 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 8 path: /dev/vda8 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4fd0> PedPartition: <_ped.Partition object at 0x7fbbd08ee950> >09:50:57,777 DEBUG storage: growPartitions: disks=['vda'], partitions=['vda1(id 16)', 'vda5(id 17)', 'vda6(id 18)', 'vda2(id 12)', 'vda3(id 9)', 'vda4(id 15)', 'vda7(id 14)', 'vda8(id 11)'] >09:50:57,778 DEBUG storage: no growable partitions >09:50:57,778 DEBUG storage: fixing size of non-existent 2MB partition vda1 (16) with non-existent biosboot at 2.00 >09:50:57,782 DEBUG storage: fixing size of non-existent 2MB partition vda2 (12) with non-existent biosboot at 2.00 >09:50:57,783 DEBUG storage: fixing size of non-existent 2MB partition vda3 (9) with non-existent biosboot at 2.00 >09:50:57,784 DEBUG storage: fixing size of non-existent 5115MB partition vda4 (15) at 5115.00 >09:50:57,784 DEBUG storage: fixing size of non-existent 3072MB partition vda5 (17) with non-existent ext4 filesystem mounted at / at 3072.00 >09:50:57,785 DEBUG storage: fixing size of non-existent 1024MB partition vda6 (18) with non-existent ext4 filesystem at 1024.00 >09:50:57,786 DEBUG storage: fixing size of non-existent 1024MB partition vda7 (14) with non-existent ext4 filesystem at 1024.00 >09:50:57,786 DEBUG storage: fixing size of non-existent 1024MB partition vda8 (11) with non-existent swap at 1024.00 >09:50:57,788 INFO storage: removed partition vda4 (id 15) from device tree >09:50:57,794 DEBUG storage: DiskDevice.removeChild: kids: 7 ; name: vda ; >09:50:57,796 DEBUG storage: DeviceTree.getDeviceByName: name: vda4 ; >09:50:57,797 DEBUG storage: DeviceTree.getDeviceByName returned None >09:50:57,802 DEBUG storage: DiskDevice.addChild: kids: 6 ; name: vda ; >09:50:57,804 DEBUG storage: PartitionDevice._setFormat: vda4 ; >09:50:57,804 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:57,805 DEBUG storage: PartitionDevice._setFormat: vda4 ; current: None ; type: None ; >09:50:57,810 DEBUG storage: DiskDevice.removeChild: kids: 7 ; name: vda ; >09:50:57,811 DEBUG storage: PartitionDevice._setPartedPartition: vda4 ; >09:50:57,812 DEBUG storage: device vda4 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd093fe90> PedPartition: <_ped.Partition object at 0x7fbbd08ee6b0> >09:50:57,812 INFO storage: added partition vda4 (id 19) to device tree >09:50:57,816 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:57,821 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:57,822 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:57,823 DEBUG storage: _is_valid_disklabel(vda) returning True >09:50:57,827 DEBUG storage: _is_valid_size(vda) returning True >09:50:57,828 DEBUG storage: _is_valid_location(vda) returning True >09:50:57,828 DEBUG storage: _is_valid_format(vda) returning True >09:50:57,828 DEBUG storage: is_valid_stage1_device(vda) returning True >09:50:57,961 DEBUG storage: clearpart: looking at vda8 >09:50:57,968 DEBUG storage: clearpart: looking at vda7 >09:50:57,969 DEBUG storage: clearpart: looking at vda6 >09:50:57,969 DEBUG storage: clearpart: looking at vda5 >09:50:57,969 DEBUG storage: clearpart: looking at vda4 >09:50:57,970 DEBUG storage: clearpart: looking at vda3 >09:50:57,970 DEBUG storage: clearpart: looking at vda2 >09:50:57,970 DEBUG storage: clearpart: looking at vda1 >09:50:57,971 DEBUG storage: checking whether disk vda has an empty extended >09:50:57,972 DEBUG storage: extended is parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4510> PedPartition: <_ped.Partition object at 0x7fbbd08ee7d0> ; logicals is ['vda5', 'vda6', 'vda7', 'vda8'] >09:50:57,973 DEBUG storage: new disk order: [] >09:50:58,059 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,067 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,069 DEBUG storage: getFormat('biosboot') returning BIOSBoot instance >09:50:58,149 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,160 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,163 DEBUG storage: DiskDevice.addChild: kids: 6 ; name: vda ; >09:50:58,168 DEBUG storage: PartitionDevice._setFormat: req9 ; >09:50:58,170 DEBUG storage: PartitionDevice._setFormat: req9 ; current: None ; type: biosboot ; >09:50:58,175 DEBUG storage: DiskDevice.removeChild: kids: 7 ; name: vda ; >09:50:58,176 INFO storage: added partition req9 (id 20) to device tree >09:50:58,182 INFO storage: registered action: [22] Create Device partition req9 (id 20) >09:50:58,185 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:58,186 INFO storage: registered action: [23] Create Format biosboot on partition req9 (id 20) >09:50:58,190 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:58,195 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:58,322 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,328 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,338 INFO storage: removed partition vda5 (id 17) from device tree >09:50:58,346 DEBUG storage: DiskDevice.removeChild: kids: 6 ; name: vda ; >09:50:58,347 INFO storage: registered action: [24] Destroy Device partition vda5 (id 17) >09:50:58,355 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:50:58,359 DEBUG storage: PartitionDevice._setFormat: req10 ; >09:50:58,366 DEBUG storage: PartitionDevice._setFormat: req10 ; current: None ; type: ext4 ; >09:50:58,369 DEBUG storage: DiskDevice.removeChild: kids: 6 ; name: vda ; >09:50:58,374 INFO storage: added partition req10 (id 21) to device tree >09:50:58,375 INFO storage: registered action: [25] Create Device partition req10 (id 21) >09:50:58,377 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:58,378 INFO storage: registered action: [26] Create Format ext4 filesystem mounted at / on partition req10 (id 21) >09:50:58,386 DEBUG storage: Ext4FS.supported: supported: True ; >09:50:58,387 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:50:58,510 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,519 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,529 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:50:58,538 DEBUG storage: PartitionDevice._setFormat: req11 ; >09:50:58,541 DEBUG storage: PartitionDevice._setFormat: req11 ; current: None ; type: ext4 ; >09:50:58,548 DEBUG storage: DiskDevice.removeChild: kids: 6 ; name: vda ; >09:50:58,550 INFO storage: added partition req11 (id 22) to device tree >09:50:58,555 INFO storage: registered action: [27] Create Device partition req11 (id 22) >09:50:58,558 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:50:58,559 INFO storage: registered action: [28] Create Format ext4 filesystem on partition req11 (id 22) >09:50:58,563 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >09:50:58,573 DEBUG storage: removing all non-preexisting partitions ['req10(id 21)', 'req11(id 22)', 'req9(id 20)', 'vda1(id 16)', 'vda2(id 12)', 'vda3(id 9)', 'vda4(id 19)', 'vda5(id 18)', 'vda6(id 14)', 'vda7(id 11)'] from disk(s) ['vda'] >09:50:58,587 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:58,589 DEBUG storage: device vda1 new partedPartition None >09:50:58,592 DEBUG storage: PartitionDevice._setDisk: req6 ; new: None ; old: vda ; >09:50:58,598 DEBUG storage: DiskDevice.removeChild: kids: 5 ; name: vda ; >09:50:58,607 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:50:58,614 DEBUG storage: device vda2 new partedPartition None >09:50:58,616 DEBUG storage: PartitionDevice._setDisk: req3 ; new: None ; old: vda ; >09:50:58,618 DEBUG storage: DiskDevice.removeChild: kids: 4 ; name: vda ; >09:50:58,624 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:50:58,624 DEBUG storage: device vda3 new partedPartition None >09:50:58,626 DEBUG storage: PartitionDevice._setDisk: req0 ; new: None ; old: vda ; >09:50:58,632 DEBUG storage: DiskDevice.removeChild: kids: 3 ; name: vda ; >09:50:58,634 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:50:58,634 DEBUG storage: device vda5 new partedPartition None >09:50:58,636 DEBUG storage: PartitionDevice._setDisk: req8 ; new: None ; old: vda ; >09:50:58,642 DEBUG storage: DiskDevice.removeChild: kids: 2 ; name: vda ; >09:50:58,643 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:50:58,648 DEBUG storage: device vda6 new partedPartition None >09:50:58,650 DEBUG storage: PartitionDevice._setDisk: req5 ; new: None ; old: vda ; >09:50:58,652 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:50:58,654 DEBUG storage: PartitionDevice._setPartedPartition: vda7 ; >09:50:58,656 DEBUG storage: device vda7 new partedPartition None >09:50:58,658 DEBUG storage: PartitionDevice._setDisk: req2 ; new: None ; old: vda ; >09:50:58,664 DEBUG storage: DiskDevice.removeChild: kids: 0 ; name: vda ; >09:50:58,666 DEBUG storage: removing empty extended partition from vda >09:50:58,671 DEBUG storage: allocatePartitions: disks=['vda'] ; partitions=['req10(id 21)', 'req11(id 22)', 'req9(id 20)', 'req6(id 16)', 'req3(id 12)', 'req0(id 9)', 'vda4(id 19)', 'req8(id 18)', 'req5(id 14)', 'req2(id 11)'] >09:50:58,672 DEBUG storage: removing all non-preexisting partitions ['req9(id 20)', 'req6(id 16)', 'req3(id 12)', 'req0(id 9)', 'req10(id 21)', 'req11(id 22)', 'req8(id 18)', 'req5(id 14)', 'req2(id 11)', 'vda4(id 19)'] from disk(s) ['vda'] >09:50:58,674 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,680 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,680 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,682 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,688 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,688 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,689 DEBUG storage: allocating partition: req9 ; id: 20 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:58,689 DEBUG storage: checking freespace on vda >09:50:58,691 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:58,696 DEBUG storage: current free range is 63-16777215 (8191MB) >09:50:58,696 DEBUG storage: updating use_disk to vda, type: 0 >09:50:58,697 DEBUG storage: new free: 63-16777215 / 8191MB >09:50:58,697 DEBUG storage: new free allows for 0 sectors of growth >09:50:58,698 DEBUG storage: found free space for bootable request >09:50:58,699 DEBUG storage: adjusted start sector from 63 to 2048 >09:50:58,700 DEBUG storage: created partition vda1 of 2MB and added it to /dev/vda >09:50:58,706 DEBUG storage: PartitionDevice._setPartedPartition: req9 ; >09:50:58,707 DEBUG storage: device req9 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4f90> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:58,709 DEBUG storage: PartitionDevice._setDisk: vda1 ; new: vda ; old: None ; >09:50:58,716 DEBUG storage: DiskDevice.addChild: kids: -1 ; name: vda ; >09:50:58,718 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:50:58,719 DEBUG storage: device vda1 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4c10> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:50:58,725 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,727 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,731 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,733 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,735 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,736 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,736 DEBUG storage: allocating partition: req6 ; id: 16 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:58,737 DEBUG storage: checking freespace on vda >09:50:58,742 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:58,743 DEBUG storage: current free range is 63-2047 (0MB) >09:50:58,744 DEBUG storage: current free range is 6144-16777215 (8189MB) >09:50:58,744 DEBUG storage: updating use_disk to vda, type: 0 >09:50:58,745 DEBUG storage: new free: 6144-16777215 / 8189MB >09:50:58,745 DEBUG storage: new free allows for 0 sectors of growth >09:50:58,746 DEBUG storage: found free space for bootable request >09:50:58,747 DEBUG storage: created partition vda2 of 2MB and added it to /dev/vda >09:50:58,749 DEBUG storage: PartitionDevice._setPartedPartition: req6 ; >09:50:58,754 DEBUG storage: device req6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f8f10> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:50:58,756 DEBUG storage: PartitionDevice._setDisk: vda2 ; new: vda ; old: None ; >09:50:58,758 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:50:58,764 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:50:58,765 DEBUG storage: device vda2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2750> PedPartition: <_ped.Partition object at 0x7fbbd08ee710> >09:50:58,767 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,773 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,773 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,775 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,781 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,781 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,782 DEBUG storage: allocating partition: req3 ; id: 12 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:58,782 DEBUG storage: checking freespace on vda >09:50:58,783 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:50:58,788 DEBUG storage: current free range is 63-2047 (0MB) >09:50:58,788 DEBUG storage: current free range is 10240-16777215 (8187MB) >09:50:58,789 DEBUG storage: updating use_disk to vda, type: 0 >09:50:58,789 DEBUG storage: new free: 10240-16777215 / 8187MB >09:50:58,790 DEBUG storage: new free allows for 0 sectors of growth >09:50:58,790 DEBUG storage: found free space for bootable request >09:50:58,792 DEBUG storage: created partition vda3 of 2MB and added it to /dev/vda >09:50:58,793 DEBUG storage: PartitionDevice._setPartedPartition: req3 ; >09:50:58,797 DEBUG storage: device req3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2c90> PedPartition: <_ped.Partition object at 0x7fbbd08ee5f0> >09:50:58,799 DEBUG storage: PartitionDevice._setDisk: vda3 ; new: vda ; old: None ; >09:50:58,801 DEBUG storage: DiskDevice.addChild: kids: 1 ; name: vda ; >09:50:58,807 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:50:58,808 DEBUG storage: device vda3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08664d0> PedPartition: <_ped.Partition object at 0x7fbbd08ee950> >09:50:58,811 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,817 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,817 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,819 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,825 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,826 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,827 DEBUG storage: allocating partition: req0 ; id: 9 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:50:58,827 DEBUG storage: checking freespace on vda >09:50:58,832 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=2 req_size=2MB boot=True best=None grow=False >09:50:58,833 DEBUG storage: current free range is 63-2047 (0MB) >09:50:58,834 DEBUG storage: current free range is 14336-16777215 (8185MB) >09:50:58,834 DEBUG storage: updating use_disk to vda, type: 2 >09:50:58,835 DEBUG storage: new free: 14336-16777215 / 8185MB >09:50:58,835 DEBUG storage: new free allows for 0 sectors of growth >09:50:58,836 DEBUG storage: found free space for bootable request >09:50:58,836 DEBUG storage: creating extended partition >09:50:58,837 DEBUG storage: recalculating free space >09:50:58,841 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=2MB boot=True best=None grow=False >09:50:58,843 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:58,844 DEBUG storage: free region not suitable for request >09:50:58,844 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16777215) >09:50:58,845 DEBUG storage: current free range is 14399-16777215 (8184MB) >09:50:58,846 DEBUG storage: adjusted start sector from 14399 to 18432 >09:50:58,851 DEBUG storage: created partition vda5 of 2MB and added it to /dev/vda >09:50:58,852 DEBUG storage: PartitionDevice._setPartedPartition: req0 ; >09:50:58,853 DEBUG storage: device req0 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d41d0> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:58,855 DEBUG storage: PartitionDevice._setDisk: vda5 ; new: vda ; old: None ; >09:50:58,861 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:50:58,864 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:50:58,868 DEBUG storage: device vda5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866650> PedPartition: <_ped.Partition object at 0x7fbbd08ee410> >09:50:58,871 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,873 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,877 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,880 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,882 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,886 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,887 DEBUG storage: allocating partition: req10 ; id: 21 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 3072MB ; grow: False ; max_size: 0 >09:50:58,887 DEBUG storage: checking freespace on vda >09:50:58,889 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=3072MB boot=False best=None grow=False >09:50:58,890 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:58,894 DEBUG storage: free region not suitable for request >09:50:58,895 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:58,896 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:58,896 DEBUG storage: looking for intersection between extended (14336-16777215) and free (22528-16777215) >09:50:58,897 DEBUG storage: current free range is 22528-16777215 (8181MB) >09:50:58,898 DEBUG storage: updating use_disk to vda, type: 1 >09:50:58,898 DEBUG storage: new free: 22528-16777215 / 8181MB >09:50:58,899 DEBUG storage: new free allows for 0 sectors of growth >09:50:58,899 DEBUG storage: adjusted start sector from 22528 to 24576 >09:50:58,901 DEBUG storage: created partition vda6 of 3072MB and added it to /dev/vda >09:50:58,903 DEBUG storage: PartitionDevice._setPartedPartition: req10 ; >09:50:58,908 DEBUG storage: device req10 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2b50> PedPartition: <_ped.Partition object at 0x7fbbd08ee530> >09:50:58,910 DEBUG storage: PartitionDevice._setDisk: vda6 ; new: vda ; old: None ; >09:50:58,912 DEBUG storage: DiskDevice.addChild: kids: 3 ; name: vda ; >09:50:58,919 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:50:58,924 DEBUG storage: device vda6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866cd0> PedPartition: <_ped.Partition object at 0x7fbbd08eea10> >09:50:58,926 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,928 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,932 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,934 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:58,936 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:58,940 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:58,941 DEBUG storage: allocating partition: req11 ; id: 22 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:58,941 DEBUG storage: checking freespace on vda >09:50:58,942 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:58,943 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:58,944 DEBUG storage: free region not suitable for request >09:50:58,945 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:58,945 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:58,946 DEBUG storage: looking for intersection between extended (14336-16777215) and free (6316032-16777215) >09:50:58,960 DEBUG storage: current free range is 6316032-16777215 (5108MB) >09:50:58,960 DEBUG storage: updating use_disk to vda, type: 1 >09:50:58,961 DEBUG storage: new free: 6316032-16777215 / 5108MB >09:50:58,961 DEBUG storage: new free allows for 0 sectors of growth >09:50:58,962 DEBUG storage: adjusted start sector from 6316032 to 6318080 >09:50:58,967 DEBUG storage: created partition vda7 of 1024MB and added it to /dev/vda >09:50:58,972 DEBUG storage: PartitionDevice._setPartedPartition: req11 ; >09:50:58,976 DEBUG storage: device req11 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 7 path: /dev/vda7 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4610> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:50:58,981 DEBUG storage: PartitionDevice._setDisk: vda7 ; new: vda ; old: None ; >09:50:58,993 DEBUG storage: DiskDevice.addChild: kids: 4 ; name: vda ; >09:50:59,000 DEBUG storage: PartitionDevice._setPartedPartition: vda7 ; >09:50:59,004 DEBUG storage: device vda7 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 7 path: /dev/vda7 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd088b350> PedPartition: <_ped.Partition object at 0x7fbbd08eeb90> >09:50:59,009 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,014 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,021 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,023 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,028 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,036 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,037 DEBUG storage: allocating partition: req8 ; id: 18 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:59,040 DEBUG storage: checking freespace on vda >09:50:59,041 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:59,045 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:59,045 DEBUG storage: free region not suitable for request >09:50:59,046 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:59,047 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:59,050 DEBUG storage: looking for intersection between extended (14336-16777215) and free (8415232-16777215) >09:50:59,051 DEBUG storage: current free range is 8415232-16777215 (4083MB) >09:50:59,053 DEBUG storage: updating use_disk to vda, type: 1 >09:50:59,053 DEBUG storage: new free: 8415232-16777215 / 4083MB >09:50:59,054 DEBUG storage: new free allows for 0 sectors of growth >09:50:59,054 DEBUG storage: adjusted start sector from 8415232 to 8417280 >09:50:59,058 DEBUG storage: created partition vda8 of 1024MB and added it to /dev/vda >09:50:59,061 DEBUG storage: PartitionDevice._setPartedPartition: req8 ; >09:50:59,066 DEBUG storage: device req8 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 8 path: /dev/vda8 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866950> PedPartition: <_ped.Partition object at 0x7fbbd08ee890> >09:50:59,068 DEBUG storage: PartitionDevice._setDisk: vda8 ; new: vda ; old: None ; >09:50:59,070 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:50:59,082 DEBUG storage: PartitionDevice._setPartedPartition: vda8 ; >09:50:59,083 DEBUG storage: device vda8 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 8 path: /dev/vda8 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd088b990> PedPartition: <_ped.Partition object at 0x7fbbd08eed10> >09:50:59,085 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,087 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,091 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,093 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,095 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,099 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,100 DEBUG storage: allocating partition: req5 ; id: 14 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:59,100 DEBUG storage: checking freespace on vda >09:50:59,102 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:59,103 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:59,103 DEBUG storage: free region not suitable for request >09:50:59,104 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:59,105 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:59,109 DEBUG storage: looking for intersection between extended (14336-16777215) and free (10514432-16777215) >09:50:59,110 DEBUG storage: current free range is 10514432-16777215 (3058MB) >09:50:59,111 DEBUG storage: updating use_disk to vda, type: 1 >09:50:59,111 DEBUG storage: new free: 10514432-16777215 / 3058MB >09:50:59,112 DEBUG storage: new free allows for 0 sectors of growth >09:50:59,113 DEBUG storage: adjusted start sector from 10514432 to 10516480 >09:50:59,114 DEBUG storage: created partition vda9 of 1024MB and added it to /dev/vda >09:50:59,116 DEBUG storage: PartitionDevice._setPartedPartition: req5 ; >09:50:59,121 DEBUG storage: device req5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 9 path: /dev/vda9 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866ad0> PedPartition: <_ped.Partition object at 0x7fbbd08ee5f0> >09:50:59,123 DEBUG storage: PartitionDevice._setDisk: vda9 ; new: vda ; old: None ; >09:50:59,125 DEBUG storage: DiskDevice.addChild: kids: 6 ; name: vda ; >09:50:59,139 DEBUG storage: PartitionDevice._setPartedPartition: vda9 ; >09:50:59,146 DEBUG storage: device vda9 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 9 path: /dev/vda9 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4a90> PedPartition: <_ped.Partition object at 0x7fbbd0900890> >09:50:59,149 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,151 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,155 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,157 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,159 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,160 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,164 DEBUG storage: allocating partition: req2 ; id: 11 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:50:59,164 DEBUG storage: checking freespace on vda >09:50:59,166 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:50:59,167 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:50:59,168 DEBUG storage: free region not suitable for request >09:50:59,168 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:50:59,169 DEBUG storage: current free range is 14399-16064 (0MB) >09:50:59,169 DEBUG storage: looking for intersection between extended (14336-16777215) and free (12613632-16777215) >09:50:59,170 DEBUG storage: current free range is 12613632-16777215 (2033MB) >09:50:59,171 DEBUG storage: updating use_disk to vda, type: 1 >09:50:59,175 DEBUG storage: new free: 12613632-16777215 / 2033MB >09:50:59,175 DEBUG storage: new free allows for 0 sectors of growth >09:50:59,176 DEBUG storage: adjusted start sector from 12613632 to 12615680 >09:50:59,177 DEBUG storage: created partition vda10 of 1024MB and added it to /dev/vda >09:50:59,179 DEBUG storage: PartitionDevice._setPartedPartition: req2 ; >09:50:59,180 DEBUG storage: device req2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 10 path: /dev/vda10 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08660d0> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:50:59,182 DEBUG storage: PartitionDevice._setDisk: vda10 ; new: vda ; old: None ; >09:50:59,187 DEBUG storage: DiskDevice.addChild: kids: 7 ; name: vda ; >09:50:59,192 DEBUG storage: PartitionDevice._setPartedPartition: vda10 ; >09:50:59,197 DEBUG storage: device vda10 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 10 path: /dev/vda10 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f8090> PedPartition: <_ped.Partition object at 0x7fbbd08eecb0> >09:50:59,197 DEBUG storage: growPartitions: disks=['vda'], partitions=['vda6(id 21)', 'vda7(id 22)', 'vda1(id 20)', 'vda2(id 16)', 'vda3(id 12)', 'vda5(id 9)', 'vda4(id 19)', 'vda8(id 18)', 'vda9(id 14)', 'vda10(id 11)'] >09:50:59,202 DEBUG storage: no growable partitions >09:50:59,203 DEBUG storage: fixing size of non-existent 2MB partition vda1 (20) with non-existent biosboot at 2.00 >09:50:59,204 DEBUG storage: fixing size of non-existent 1024MB partition vda10 (11) with non-existent swap at 1024.00 >09:50:59,205 DEBUG storage: fixing size of non-existent 2MB partition vda2 (16) with non-existent biosboot at 2.00 >09:50:59,206 DEBUG storage: fixing size of non-existent 2MB partition vda3 (12) with non-existent biosboot at 2.00 >09:50:59,207 DEBUG storage: fixing size of non-existent 8185MB partition vda4 (19) at 8185.00 >09:50:59,208 DEBUG storage: fixing size of non-existent 2MB partition vda5 (9) with non-existent biosboot at 2.00 >09:50:59,213 DEBUG storage: fixing size of non-existent 3072MB partition vda6 (21) with non-existent ext4 filesystem mounted at / at 3072.00 >09:50:59,214 DEBUG storage: fixing size of non-existent 1024MB partition vda7 (22) with non-existent ext4 filesystem at 1024.00 >09:50:59,215 DEBUG storage: fixing size of non-existent 1024MB partition vda8 (18) with non-existent ext4 filesystem at 1024.00 >09:50:59,215 DEBUG storage: fixing size of non-existent 1024MB partition vda9 (14) with non-existent ext4 filesystem at 1024.00 >09:50:59,219 DEBUG storage: DeviceTree.getDeviceByName: name: vda4 ; >09:50:59,225 DEBUG storage: DeviceTree.getDeviceByName returned non-existent 8185MB partition vda4 (19) >09:50:59,227 DEBUG storage: PartitionDevice._setPartedPartition: vda4 ; >09:50:59,232 DEBUG storage: device vda4 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866a90> PedPartition: <_ped.Partition object at 0x7fbbd08ee8f0> >09:50:59,235 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:50:59,241 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:50:59,241 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:50:59,247 DEBUG storage: _is_valid_disklabel(vda) returning True >09:50:59,248 DEBUG storage: _is_valid_size(vda) returning True >09:50:59,248 DEBUG storage: _is_valid_location(vda) returning True >09:50:59,249 DEBUG storage: _is_valid_format(vda) returning True >09:50:59,249 DEBUG storage: is_valid_stage1_device(vda) returning True >09:50:59,961 DEBUG storage: clearpart: looking at vda10 >09:50:59,966 DEBUG storage: clearpart: looking at vda9 >09:50:59,969 DEBUG storage: clearpart: looking at vda8 >09:50:59,970 DEBUG storage: clearpart: looking at vda7 >09:50:59,970 DEBUG storage: clearpart: looking at vda6 >09:50:59,971 DEBUG storage: clearpart: looking at vda5 >09:50:59,971 DEBUG storage: clearpart: looking at vda4 >09:50:59,972 DEBUG storage: clearpart: looking at vda3 >09:50:59,972 DEBUG storage: clearpart: looking at vda2 >09:50:59,973 DEBUG storage: clearpart: looking at vda1 >09:50:59,973 DEBUG storage: checking whether disk vda has an empty extended >09:50:59,978 DEBUG storage: extended is parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866910> PedPartition: <_ped.Partition object at 0x7fbbd08eea70> ; logicals is ['vda5', 'vda6', 'vda7', 'vda8', 'vda9', 'vda10'] >09:50:59,982 DEBUG storage: new disk order: [] >09:51:00,096 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,105 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,111 DEBUG storage: getFormat('biosboot') returning BIOSBoot instance >09:51:00,229 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,237 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,245 DEBUG storage: DiskDevice.addChild: kids: 8 ; name: vda ; >09:51:00,252 DEBUG storage: PartitionDevice._setFormat: req12 ; >09:51:00,255 DEBUG storage: PartitionDevice._setFormat: req12 ; current: None ; type: biosboot ; >09:51:00,261 DEBUG storage: DiskDevice.removeChild: kids: 9 ; name: vda ; >09:51:00,266 INFO storage: added partition req12 (id 23) to device tree >09:51:00,269 INFO storage: registered action: [29] Create Device partition req12 (id 23) >09:51:00,272 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:00,273 INFO storage: registered action: [30] Create Format biosboot on partition req12 (id 23) >09:51:00,280 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:00,282 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:51:00,402 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,411 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,422 INFO storage: removed partition vda6 (id 21) from device tree >09:51:00,435 DEBUG storage: DiskDevice.removeChild: kids: 8 ; name: vda ; >09:51:00,439 INFO storage: registered action: [31] Destroy Device partition vda6 (id 21) >09:51:00,442 DEBUG storage: DiskDevice.addChild: kids: 7 ; name: vda ; >09:51:00,444 DEBUG storage: PartitionDevice._setFormat: req13 ; >09:51:00,449 DEBUG storage: PartitionDevice._setFormat: req13 ; current: None ; type: ext4 ; >09:51:00,451 DEBUG storage: DiskDevice.removeChild: kids: 8 ; name: vda ; >09:51:00,457 INFO storage: added partition req13 (id 24) to device tree >09:51:00,458 INFO storage: registered action: [32] Create Device partition req13 (id 24) >09:51:00,460 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:00,460 INFO storage: registered action: [33] Create Format ext4 filesystem mounted at / on partition req13 (id 24) >09:51:00,463 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:00,467 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:51:00,550 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,557 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,564 DEBUG storage: DiskDevice.addChild: kids: 7 ; name: vda ; >09:51:00,567 DEBUG storage: PartitionDevice._setFormat: req14 ; >09:51:00,572 DEBUG storage: PartitionDevice._setFormat: req14 ; current: None ; type: ext4 ; >09:51:00,574 DEBUG storage: DiskDevice.removeChild: kids: 8 ; name: vda ; >09:51:00,579 INFO storage: added partition req14 (id 25) to device tree >09:51:00,581 INFO storage: registered action: [34] Create Device partition req14 (id 25) >09:51:00,582 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:00,583 INFO storage: registered action: [35] Create Format ext4 filesystem on partition req14 (id 25) >09:51:00,586 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >09:51:00,593 DEBUG storage: removing all non-preexisting partitions ['req12(id 23)', 'req13(id 24)', 'req14(id 25)', 'vda1(id 20)', 'vda2(id 16)', 'vda3(id 12)', 'vda4(id 19)', 'vda5(id 9)', 'vda6(id 22)', 'vda7(id 18)', 'vda8(id 14)', 'vda9(id 11)'] from disk(s) ['vda'] >09:51:00,595 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:51:00,600 DEBUG storage: device vda1 new partedPartition None >09:51:00,601 DEBUG storage: PartitionDevice._setDisk: req9 ; new: None ; old: vda ; >09:51:00,603 DEBUG storage: DiskDevice.removeChild: kids: 7 ; name: vda ; >09:51:00,608 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:51:00,609 DEBUG storage: device vda2 new partedPartition None >09:51:00,610 DEBUG storage: PartitionDevice._setDisk: req6 ; new: None ; old: vda ; >09:51:00,611 DEBUG storage: DiskDevice.removeChild: kids: 6 ; name: vda ; >09:51:00,613 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:51:00,617 DEBUG storage: device vda3 new partedPartition None >09:51:00,618 DEBUG storage: PartitionDevice._setDisk: req3 ; new: None ; old: vda ; >09:51:00,622 DEBUG storage: DiskDevice.removeChild: kids: 5 ; name: vda ; >09:51:00,627 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:51:00,628 DEBUG storage: device vda5 new partedPartition None >09:51:00,629 DEBUG storage: PartitionDevice._setDisk: req0 ; new: None ; old: vda ; >09:51:00,634 DEBUG storage: DiskDevice.removeChild: kids: 4 ; name: vda ; >09:51:00,635 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:51:00,636 DEBUG storage: device vda6 new partedPartition None >09:51:00,637 DEBUG storage: PartitionDevice._setDisk: req11 ; new: None ; old: vda ; >09:51:00,638 DEBUG storage: DiskDevice.removeChild: kids: 3 ; name: vda ; >09:51:00,643 DEBUG storage: PartitionDevice._setPartedPartition: vda7 ; >09:51:00,643 DEBUG storage: device vda7 new partedPartition None >09:51:00,644 DEBUG storage: PartitionDevice._setDisk: req8 ; new: None ; old: vda ; >09:51:00,646 DEBUG storage: DiskDevice.removeChild: kids: 2 ; name: vda ; >09:51:00,647 DEBUG storage: PartitionDevice._setPartedPartition: vda8 ; >09:51:00,651 DEBUG storage: device vda8 new partedPartition None >09:51:00,653 DEBUG storage: PartitionDevice._setDisk: req5 ; new: None ; old: vda ; >09:51:00,654 DEBUG storage: DiskDevice.removeChild: kids: 1 ; name: vda ; >09:51:00,655 DEBUG storage: PartitionDevice._setPartedPartition: vda9 ; >09:51:00,656 DEBUG storage: device vda9 new partedPartition None >09:51:00,657 DEBUG storage: PartitionDevice._setDisk: req2 ; new: None ; old: vda ; >09:51:00,662 DEBUG storage: DiskDevice.removeChild: kids: 0 ; name: vda ; >09:51:00,663 DEBUG storage: removing empty extended partition from vda >09:51:00,664 DEBUG storage: allocatePartitions: disks=['vda'] ; partitions=['req12(id 23)', 'req13(id 24)', 'req14(id 25)', 'req9(id 20)', 'req6(id 16)', 'req3(id 12)', 'vda4(id 19)', 'req0(id 9)', 'req11(id 22)', 'req8(id 18)', 'req5(id 14)', 'req2(id 11)'] >09:51:00,668 DEBUG storage: removing all non-preexisting partitions ['req12(id 23)', 'req9(id 20)', 'req6(id 16)', 'req3(id 12)', 'req0(id 9)', 'vda4(id 19)', 'req13(id 24)', 'req14(id 25)', 'req11(id 22)', 'req8(id 18)', 'req5(id 14)', 'req2(id 11)'] from disk(s) ['vda'] >09:51:00,670 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,671 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,672 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,673 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,678 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,678 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,679 DEBUG storage: allocating partition: req12 ; id: 23 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:51:00,679 DEBUG storage: checking freespace on vda >09:51:00,680 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:51:00,681 DEBUG storage: current free range is 63-16777215 (8191MB) >09:51:00,682 DEBUG storage: updating use_disk to vda, type: 0 >09:51:00,686 DEBUG storage: new free: 63-16777215 / 8191MB >09:51:00,686 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,687 DEBUG storage: found free space for bootable request >09:51:00,687 DEBUG storage: adjusted start sector from 63 to 2048 >09:51:00,688 DEBUG storage: created partition vda1 of 2MB and added it to /dev/vda >09:51:00,690 DEBUG storage: PartitionDevice._setPartedPartition: req12 ; >09:51:00,690 DEBUG storage: device req12 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2f10> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:51:00,692 DEBUG storage: PartitionDevice._setDisk: vda1 ; new: vda ; old: None ; >09:51:00,697 DEBUG storage: DiskDevice.addChild: kids: -1 ; name: vda ; >09:51:00,699 DEBUG storage: PartitionDevice._setPartedPartition: vda1 ; >09:51:00,699 DEBUG storage: device vda1 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 1 path: /dev/vda1 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866450> PedPartition: <_ped.Partition object at 0x7fbbd0900a70> >09:51:00,701 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,702 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,706 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,708 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,709 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,710 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,710 DEBUG storage: allocating partition: req9 ; id: 20 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:51:00,710 DEBUG storage: checking freespace on vda >09:51:00,711 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:51:00,715 DEBUG storage: current free range is 63-2047 (0MB) >09:51:00,716 DEBUG storage: current free range is 6144-16777215 (8189MB) >09:51:00,716 DEBUG storage: updating use_disk to vda, type: 0 >09:51:00,716 DEBUG storage: new free: 6144-16777215 / 8189MB >09:51:00,717 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,717 DEBUG storage: found free space for bootable request >09:51:00,718 DEBUG storage: created partition vda2 of 2MB and added it to /dev/vda >09:51:00,719 DEBUG storage: PartitionDevice._setPartedPartition: req9 ; >09:51:00,720 DEBUG storage: device req9 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2d90> PedPartition: <_ped.Partition object at 0x7fbbd0900950> >09:51:00,721 DEBUG storage: PartitionDevice._setDisk: vda2 ; new: vda ; old: None ; >09:51:00,726 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; >09:51:00,727 DEBUG storage: PartitionDevice._setPartedPartition: vda2 ; >09:51:00,728 DEBUG storage: device vda2 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 2 path: /dev/vda2 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2b90> PedPartition: <_ped.Partition object at 0x7fbbd0900b30> >09:51:00,730 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,735 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,735 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,737 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,738 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,742 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,742 DEBUG storage: allocating partition: req6 ; id: 16 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:51:00,743 DEBUG storage: checking freespace on vda >09:51:00,743 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=0 req_size=2MB boot=True best=None grow=False >09:51:00,744 DEBUG storage: current free range is 63-2047 (0MB) >09:51:00,745 DEBUG storage: current free range is 10240-16777215 (8187MB) >09:51:00,745 DEBUG storage: updating use_disk to vda, type: 0 >09:51:00,746 DEBUG storage: new free: 10240-16777215 / 8187MB >09:51:00,746 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,746 DEBUG storage: found free space for bootable request >09:51:00,747 DEBUG storage: created partition vda3 of 2MB and added it to /dev/vda >09:51:00,748 DEBUG storage: PartitionDevice._setPartedPartition: req6 ; >09:51:00,753 DEBUG storage: device req6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2b10> PedPartition: <_ped.Partition object at 0x7fbbd08ee5f0> >09:51:00,755 DEBUG storage: PartitionDevice._setDisk: vda3 ; new: vda ; old: None ; >09:51:00,756 DEBUG storage: DiskDevice.addChild: kids: 1 ; name: vda ; >09:51:00,758 DEBUG storage: PartitionDevice._setPartedPartition: vda3 ; >09:51:00,762 DEBUG storage: device vda3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 3 path: /dev/vda3 type: 0 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d46d0> PedPartition: <_ped.Partition object at 0x7fbbd08ee9b0> >09:51:00,764 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,765 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,765 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,767 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,768 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,772 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,772 DEBUG storage: allocating partition: req3 ; id: 12 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:51:00,773 DEBUG storage: checking freespace on vda >09:51:00,774 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=2 req_size=2MB boot=True best=None grow=False >09:51:00,775 DEBUG storage: current free range is 63-2047 (0MB) >09:51:00,775 DEBUG storage: current free range is 14336-16777215 (8185MB) >09:51:00,775 DEBUG storage: updating use_disk to vda, type: 2 >09:51:00,776 DEBUG storage: new free: 14336-16777215 / 8185MB >09:51:00,776 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,776 DEBUG storage: found free space for bootable request >09:51:00,777 DEBUG storage: creating extended partition >09:51:00,778 DEBUG storage: recalculating free space >09:51:00,778 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=2MB boot=True best=None grow=False >09:51:00,778 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:00,779 DEBUG storage: free region not suitable for request >09:51:00,783 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16777215) >09:51:00,783 DEBUG storage: current free range is 14399-16777215 (8184MB) >09:51:00,784 DEBUG storage: adjusted start sector from 14399 to 18432 >09:51:00,785 DEBUG storage: created partition vda5 of 2MB and added it to /dev/vda >09:51:00,786 DEBUG storage: PartitionDevice._setPartedPartition: req3 ; >09:51:00,787 DEBUG storage: device req3 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4990> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:51:00,788 DEBUG storage: PartitionDevice._setDisk: vda5 ; new: vda ; old: None ; >09:51:00,790 DEBUG storage: DiskDevice.addChild: kids: 2 ; name: vda ; >09:51:00,796 DEBUG storage: PartitionDevice._setPartedPartition: vda5 ; >09:51:00,797 DEBUG storage: device vda5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 5 path: /dev/vda5 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0866b50> PedPartition: <_ped.Partition object at 0x7fbbd08ee5f0> >09:51:00,798 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,803 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,803 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,805 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,806 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,810 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,810 DEBUG storage: allocating partition: req0 ; id: 9 ; disks: ['vda'] ; >boot: True ; primary: False ; size: 2MB ; grow: False ; max_size: 0 >09:51:00,811 DEBUG storage: checking freespace on vda >09:51:00,811 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=2MB boot=True best=None grow=False >09:51:00,812 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:00,812 DEBUG storage: free region not suitable for request >09:51:00,813 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:00,813 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:00,814 DEBUG storage: looking for intersection between extended (14336-16777215) and free (22528-16777215) >09:51:00,814 DEBUG storage: current free range is 22528-16777215 (8181MB) >09:51:00,814 DEBUG storage: updating use_disk to vda, type: 1 >09:51:00,815 DEBUG storage: new free: 22528-16777215 / 8181MB >09:51:00,815 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,815 DEBUG storage: found free space for bootable request >09:51:00,816 DEBUG storage: adjusted start sector from 22528 to 24576 >09:51:00,817 DEBUG storage: created partition vda6 of 2MB and added it to /dev/vda >09:51:00,818 DEBUG storage: PartitionDevice._setPartedPartition: req0 ; >09:51:00,822 DEBUG storage: device req0 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2f50> PedPartition: <_ped.Partition object at 0x7fbbd0900ad0> >09:51:00,824 DEBUG storage: PartitionDevice._setDisk: vda6 ; new: vda ; old: None ; >09:51:00,825 DEBUG storage: DiskDevice.addChild: kids: 3 ; name: vda ; >09:51:00,827 DEBUG storage: PartitionDevice._setPartedPartition: vda6 ; >09:51:00,831 DEBUG storage: device vda6 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 6 path: /dev/vda6 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08f8f10> PedPartition: <_ped.Partition object at 0x7fbbd08ee950> >09:51:00,833 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,834 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,835 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,840 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,841 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,841 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,842 DEBUG storage: allocating partition: req13 ; id: 24 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 3072MB ; grow: False ; max_size: 0 >09:51:00,842 DEBUG storage: checking freespace on vda >09:51:00,843 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=3072MB boot=False best=None grow=False >09:51:00,844 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:00,844 DEBUG storage: free region not suitable for request >09:51:00,849 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:00,849 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:00,850 DEBUG storage: looking for intersection between extended (14336-16777215) and free (28672-16777215) >09:51:00,850 DEBUG storage: current free range is 28672-16777215 (8178MB) >09:51:00,851 DEBUG storage: updating use_disk to vda, type: 1 >09:51:00,851 DEBUG storage: new free: 28672-16777215 / 8178MB >09:51:00,851 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,852 DEBUG storage: adjusted start sector from 28672 to 30720 >09:51:00,852 DEBUG storage: created partition vda7 of 3072MB and added it to /dev/vda >09:51:00,854 DEBUG storage: PartitionDevice._setPartedPartition: req13 ; >09:51:00,854 DEBUG storage: device req13 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 7 path: /dev/vda7 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4210> PedPartition: <_ped.Partition object at 0x7fbbd0900950> >09:51:00,855 DEBUG storage: PartitionDevice._setDisk: vda7 ; new: vda ; old: None ; >09:51:00,857 DEBUG storage: DiskDevice.addChild: kids: 4 ; name: vda ; >09:51:00,863 DEBUG storage: PartitionDevice._setPartedPartition: vda7 ; >09:51:00,864 DEBUG storage: device vda7 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 7 path: /dev/vda7 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd0905910> PedPartition: <_ped.Partition object at 0x7fbbd08ee6b0> >09:51:00,865 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,867 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,871 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,872 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,873 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,874 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,874 DEBUG storage: allocating partition: req14 ; id: 25 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:51:00,874 DEBUG storage: checking freespace on vda >09:51:00,875 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:51:00,876 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:00,880 DEBUG storage: free region not suitable for request >09:51:00,880 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:00,881 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:00,881 DEBUG storage: looking for intersection between extended (14336-16777215) and free (6322176-16777215) >09:51:00,882 DEBUG storage: current free range is 6322176-16777215 (5105MB) >09:51:00,882 DEBUG storage: updating use_disk to vda, type: 1 >09:51:00,882 DEBUG storage: new free: 6322176-16777215 / 5105MB >09:51:00,883 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,883 DEBUG storage: adjusted start sector from 6322176 to 6324224 >09:51:00,884 DEBUG storage: created partition vda8 of 1024MB and added it to /dev/vda >09:51:00,885 DEBUG storage: PartitionDevice._setPartedPartition: req14 ; >09:51:00,888 DEBUG storage: device req14 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 8 path: /dev/vda8 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2c10> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:51:00,890 DEBUG storage: PartitionDevice._setDisk: vda8 ; new: vda ; old: None ; >09:51:00,896 DEBUG storage: DiskDevice.addChild: kids: 5 ; name: vda ; >09:51:00,899 DEBUG storage: PartitionDevice._setPartedPartition: vda8 ; >09:51:00,903 DEBUG storage: device vda8 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 8 path: /dev/vda8 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d6110> PedPartition: <_ped.Partition object at 0x7fbbd08eedd0> >09:51:00,905 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,907 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,908 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,910 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,916 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,917 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,917 DEBUG storage: allocating partition: req11 ; id: 22 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:51:00,918 DEBUG storage: checking freespace on vda >09:51:00,920 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:51:00,921 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:00,922 DEBUG storage: free region not suitable for request >09:51:00,922 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:00,927 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:00,928 DEBUG storage: looking for intersection between extended (14336-16777215) and free (8421376-16777215) >09:51:00,929 DEBUG storage: current free range is 8421376-16777215 (4080MB) >09:51:00,930 DEBUG storage: updating use_disk to vda, type: 1 >09:51:00,931 DEBUG storage: new free: 8421376-16777215 / 4080MB >09:51:00,932 DEBUG storage: new free allows for 0 sectors of growth >09:51:00,933 DEBUG storage: adjusted start sector from 8421376 to 8423424 >09:51:00,934 DEBUG storage: created partition vda9 of 1024MB and added it to /dev/vda >09:51:00,936 DEBUG storage: PartitionDevice._setPartedPartition: req11 ; >09:51:00,936 DEBUG storage: device req11 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 9 path: /dev/vda9 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4a50> PedPartition: <_ped.Partition object at 0x7fbbd08eec50> >09:51:00,938 DEBUG storage: PartitionDevice._setDisk: vda9 ; new: vda ; old: None ; >09:51:00,944 DEBUG storage: DiskDevice.addChild: kids: 6 ; name: vda ; >09:51:00,948 DEBUG storage: PartitionDevice._setPartedPartition: vda9 ; >09:51:00,961 DEBUG storage: device vda9 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 9 path: /dev/vda9 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d6750> PedPartition: <_ped.Partition object at 0x7fbbd08ee890> >09:51:00,964 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,970 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,974 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,976 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:00,977 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:00,989 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:00,990 DEBUG storage: allocating partition: req8 ; id: 18 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:51:00,991 DEBUG storage: checking freespace on vda >09:51:00,993 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:51:00,994 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:00,996 DEBUG storage: free region not suitable for request >09:51:00,996 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:00,997 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:00,998 DEBUG storage: looking for intersection between extended (14336-16777215) and free (10520576-16777215) >09:51:00,999 DEBUG storage: current free range is 10520576-16777215 (3055MB) >09:51:00,999 DEBUG storage: updating use_disk to vda, type: 1 >09:51:01,003 DEBUG storage: new free: 10520576-16777215 / 3055MB >09:51:01,004 DEBUG storage: new free allows for 0 sectors of growth >09:51:01,005 DEBUG storage: adjusted start sector from 10520576 to 10522624 >09:51:01,006 DEBUG storage: created partition vda10 of 1024MB and added it to /dev/vda >09:51:01,008 DEBUG storage: PartitionDevice._setPartedPartition: req8 ; >09:51:01,013 DEBUG storage: device req8 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 10 path: /dev/vda10 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2810> PedPartition: <_ped.Partition object at 0x7fbbd08ee7d0> >09:51:01,019 DEBUG storage: PartitionDevice._setDisk: vda10 ; new: vda ; old: None ; >09:51:01,021 DEBUG storage: DiskDevice.addChild: kids: 7 ; name: vda ; >09:51:01,031 DEBUG storage: PartitionDevice._setPartedPartition: vda10 ; >09:51:01,040 DEBUG storage: device vda10 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 10 path: /dev/vda10 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08e2450> PedPartition: <_ped.Partition object at 0x7fbbd08ee770> >09:51:01,043 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:01,045 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:01,050 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:01,052 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:01,054 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:01,055 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:01,056 DEBUG storage: allocating partition: req5 ; id: 14 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:51:01,057 DEBUG storage: checking freespace on vda >09:51:01,063 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:51:01,064 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:01,065 DEBUG storage: free region not suitable for request >09:51:01,066 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:01,067 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:01,068 DEBUG storage: looking for intersection between extended (14336-16777215) and free (10520576-10522574) >09:51:01,069 DEBUG storage: current free range is 10520576-10522574 (0MB) >09:51:01,070 DEBUG storage: looking for intersection between extended (14336-16777215) and free (12619776-16777215) >09:51:01,071 DEBUG storage: current free range is 12619776-16777215 (2030MB) >09:51:01,072 DEBUG storage: updating use_disk to vda, type: 1 >09:51:01,072 DEBUG storage: new free: 12619776-16777215 / 2030MB >09:51:01,073 DEBUG storage: new free allows for 0 sectors of growth >09:51:01,074 DEBUG storage: adjusted start sector from 12619776 to 12621824 >09:51:01,076 DEBUG storage: created partition vda11 of 1024MB and added it to /dev/vda >09:51:01,083 DEBUG storage: PartitionDevice._setPartedPartition: req5 ; >09:51:01,084 DEBUG storage: device req5 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 11 path: /dev/vda11 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4090> PedPartition: <_ped.Partition object at 0x7fbbd08eebf0> >09:51:01,086 DEBUG storage: PartitionDevice._setDisk: vda11 ; new: vda ; old: None ; >09:51:01,088 DEBUG storage: DiskDevice.addChild: kids: 8 ; name: vda ; >09:51:01,096 DEBUG storage: PartitionDevice._setPartedPartition: vda11 ; >09:51:01,097 DEBUG storage: device vda11 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 11 path: /dev/vda11 type: 1 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d6b50> PedPartition: <_ped.Partition object at 0x7fbbd08eee90> >09:51:01,099 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:01,105 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:01,107 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:01,108 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:01,110 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (1) with non-existent msdos disklabel >09:51:01,115 DEBUG storage: resolved 'vda' to 'vda' (disk) >09:51:01,116 DEBUG storage: allocating partition: req2 ; id: 11 ; disks: ['vda'] ; >boot: False ; primary: False ; size: 1024MB ; grow: False ; max_size: 0 >09:51:01,120 DEBUG storage: checking freespace on vda >09:51:01,124 DEBUG storage: getBestFreeSpaceRegion: disk=/dev/vda part_type=1 req_size=1024MB boot=False best=None grow=False >09:51:01,126 DEBUG storage: looking for intersection between extended (14336-16777215) and free (63-2047) >09:51:01,131 DEBUG storage: free region not suitable for request >09:51:01,133 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14399-16064) >09:51:01,134 DEBUG storage: current free range is 14399-16064 (0MB) >09:51:01,136 DEBUG storage: looking for intersection between extended (14336-16777215) and free (10520576-10522574) >09:51:01,136 DEBUG storage: current free range is 10520576-10522574 (0MB) >09:51:01,136 DEBUG storage: looking for intersection between extended (14336-16777215) and free (14718976-16777215) >09:51:01,140 DEBUG storage: current free range is 14718976-16777215 (1005MB) >09:51:01,151 DEBUG storage: DeviceTree.getDeviceByName: name: vda4 ; >09:51:01,156 DEBUG storage: DeviceTree.getDeviceByName returned non-existent 8185MB partition vda4 (19) >09:51:01,165 DEBUG storage: PartitionDevice._setPartedPartition: vda4 ; >09:51:01,167 DEBUG storage: device vda4 new partedPartition parted.Partition instance -- > disk: <parted.disk.Disk object at 0x7fbbd08c91d0> fileSystem: None > number: 4 path: /dev/vda4 type: 2 > name: None active: True busy: False > geometry: <parted.geometry.Geometry object at 0x7fbbd08d4150> PedPartition: <_ped.Partition object at 0x7fbbd09009b0> >09:51:01,181 INFO storage: not going to create backup copy of non-existent /etc/mdadm.conf >09:51:01,191 INFO storage: DeviceTree.populate: ignoredDisks is [] ; exclusiveDisks is ['vda'] >09:51:01,310 DEBUG storage: MultipathTopology._build_topology: >09:51:01,324 DEBUG storage: /etc/multipath.conf contents: >09:51:01,326 DEBUG storage: # multipath.conf written by anaconda >09:51:01,327 DEBUG storage: >09:51:01,329 DEBUG storage: defaults { >09:51:01,330 DEBUG storage: user_friendly_names yes >09:51:01,331 DEBUG storage: } >09:51:01,331 DEBUG storage: blacklist { >09:51:01,333 DEBUG storage: devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*" >09:51:01,333 DEBUG storage: devnode "^hd[a-z]" >09:51:01,333 DEBUG storage: devnode "^dcssblk[0-9]*" >09:51:01,333 DEBUG storage: device { >09:51:01,335 DEBUG storage: vendor "DGC" >09:51:01,335 DEBUG storage: product "LUNZ" >09:51:01,335 DEBUG storage: } >09:51:01,335 DEBUG storage: device { >09:51:01,336 DEBUG storage: vendor "IBM" >09:51:01,337 DEBUG storage: product "S/390.*" >09:51:01,342 DEBUG storage: } >09:51:01,343 DEBUG storage: # don't count normal SATA devices as multipaths >09:51:01,343 DEBUG storage: device { >09:51:01,343 DEBUG storage: vendor "ATA" >09:51:01,343 DEBUG storage: } >09:51:01,345 DEBUG storage: # don't count 3ware devices as multipaths >09:51:01,346 DEBUG storage: device { >09:51:01,347 DEBUG storage: vendor "3ware" >09:51:01,353 DEBUG storage: } >09:51:01,353 DEBUG storage: device { >09:51:01,353 DEBUG storage: vendor "AMCC" >09:51:01,355 DEBUG storage: } >09:51:01,363 DEBUG storage: # nor highpoint devices >09:51:01,363 DEBUG storage: device { >09:51:01,363 DEBUG storage: vendor "HPT" >09:51:01,364 DEBUG storage: } >09:51:01,365 DEBUG storage: } >09:51:01,373 DEBUG storage: multipaths { >09:51:01,374 DEBUG storage: } >09:51:01,374 DEBUG storage: (end of /etc/multipath.conf) >09:51:01,664 INFO storage: MultipathTopology: found non-disk device: sr0 >09:51:01,679 INFO storage: MultipathTopology: found singlepath device: vda >09:51:01,681 INFO storage: MultipathTopology: found singlepath device: loop0 >09:51:01,682 INFO storage: MultipathTopology: found singlepath device: loop1 >09:51:01,684 INFO storage: MultipathTopology: found singlepath device: loop2 >09:51:01,685 INFO storage: MultipathTopology: found singlepath device: loop3 >09:51:01,691 INFO storage: MultipathTopology: found singlepath device: loop4 >09:51:01,692 INFO storage: MultipathTopology: found singlepath device: loop5 >09:51:01,694 INFO storage: MultipathTopology: found singlepath device: loop6 >09:51:01,695 INFO storage: MultipathTopology: found singlepath device: loop7 >09:51:01,696 INFO storage: MultipathTopology: found singlepath device: dm-0 >09:51:01,697 INFO storage: devices to scan: ['sr0', 'vda', 'loop0', 'loop1', 'loop2', 'loop3', 'loop4', 'loop5', 'loop6', 'loop7', 'dm-0'] >09:51:01,712 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVLINKS': '/dev/cdrom /dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003', > 'DEVNAME': 'sr0', > 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0', > 'DEVTYPE': 'disk', > 'ID_ATA': '1', > 'ID_BUS': 'ata', > 'ID_CDROM': '1', > 'ID_CDROM_DVD': '1', > 'ID_CDROM_MRW': '1', > 'ID_CDROM_MRW_W': '1', > 'ID_MODEL': 'QEMU_DVD-ROM', > 'ID_MODEL_ENC': 'QEMU\\x20DVD-ROM\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', > 'ID_REVISION': '1.0.1', > 'ID_SERIAL': 'QEMU_DVD-ROM_QM00003', > 'ID_SERIAL_SHORT': 'QM00003', > 'ID_TYPE': 'cd', > 'MAJOR': '11', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':seat:systemd:uaccess:', > 'USEC_INITIALIZED': '701939', > 'name': 'sr0', > 'symlinks': ['/dev/cdrom', '/dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003'], > 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0'} ; name: sr0 ; >09:51:01,716 INFO storage: scanning sr0 (/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0)... >09:51:01,720 DEBUG storage: DeviceTree.getDeviceByName: name: sr0 ; >09:51:01,727 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:01,729 INFO storage: sr0 is a cdrom >09:51:01,731 DEBUG storage: DeviceTree.addUdevOpticalDevice: >09:51:01,740 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:01,743 DEBUG storage: OpticalDevice._setFormat: sr0 ; current: None ; type: None ; >09:51:01,780 INFO storage: added cdrom sr0 (id 26) to device tree >09:51:01,788 DEBUG storage: OpticalDevice.mediaPresent: sr0 ; status: True ; >09:51:01,800 DEBUG storage: no device or no media present >09:51:01,804 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'vda', > 'DEVPATH': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda', > 'DEVTYPE': 'disk', > 'MAJOR': '252', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '900334', > 'name': 'vda', > 'symlinks': [], > 'sysfs_path': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda'} ; name: vda ; >09:51:01,806 INFO storage: scanning vda (/devices/pci0000:00/0000:00:04.0/virtio1/block/vda)... >09:51:01,813 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:01,816 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:01,820 DEBUG storage: DeviceTree.addUdevDiskDevice: name: vda ; >09:51:01,826 INFO storage: vda is a disk >09:51:01,828 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:01,831 DEBUG storage: DiskDevice._setFormat: vda ; current: None ; type: None ; >09:51:01,836 INFO storage: added disk vda (id 27) to device tree >09:51:01,838 DEBUG storage: looking up parted Device: /dev/vda >09:51:01,841 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: vda ; >09:51:01,848 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: vda ; label_type: None ; >09:51:01,850 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:01,853 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; >09:51:01,866 DEBUG storage: DiskLabel.__init__: device: /dev/vda ; labelType: msdos ; exists: True ; >09:51:01,938 INFO storage: no usable disklabel on vda >09:51:01,941 DEBUG storage: no type or existing type for vda, bailing >09:51:01,950 INFO storage: got device: DiskDevice instance (0x7fbbd0445190) -- > name = vda status = True kids = 0 id = 27 > parents = [] > uuid = None size = 8192.0 > format = existing None > major = 252 minor = 0 exists = True protected = False > sysfs path = /devices/pci0000:00/0000:00:04.0/virtio1/block/vda partedDevice = parted.Device instance -- > model: Virtio Block Device path: /dev/vda type: 15 > sectorSize: 512 physicalSectorSize: 512 > length: 16777216 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: False > hardwareGeometry: (16644, 16, 63) biosGeometry: (1044, 255, 63) > PedDevice: <_ped.Device object at 0x7fbbd08d2d40> > target size = 0 path = /dev/vda > format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x7fbbd0866890> >09:51:01,964 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > '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': '126405', > 'name': 'loop0', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop0'} ; name: loop0 ; >09:51:01,969 INFO storage: scanning loop0 (/devices/virtual/block/loop0)... >09:51:01,971 DEBUG storage: DeviceTree.getDeviceByName: name: loop0 ; >09:51:01,978 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:01,980 INFO storage: loop0 is a loop device >09:51:01,983 DEBUG storage: DeviceTree.addUdevLoopDevice: name: loop0 ; >09:51:01,993 DEBUG storage: DeviceTree.getDeviceByName: name: /tmp/curl_fetch_url0/squashfs.img (deleted) ; >09:51:01,996 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:01,998 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,002 DEBUG storage: FileDevice._setFormat: /tmp/curl_fetch_url0/squashfs.img (deleted) ; current: None ; type: None ; >09:51:02,008 INFO storage: added file /tmp/curl_fetch_url0/squashfs.img (deleted) (id 28) to device tree >09:51:02,011 DEBUG storage: FileDevice.addChild: kids: 0 ; name: /tmp/curl_fetch_url0/squashfs.img (deleted) ; >09:51:02,013 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,016 DEBUG storage: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >09:51:02,022 INFO storage: added loop loop0 (id 29) to device tree >09:51:02,025 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: loop0 ; >09:51:02,027 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: loop0 ; label_type: None ; >09:51:02,033 DEBUG storage: getFormat('squashfs') returning DeviceFormat instance >09:51:02,035 DEBUG storage: LoopDevice.setup: loop0 ; status: False ; controllable: False ; orig: False ; >09:51:02,039 DEBUG storage: DiskLabel.__init__: device: /dev/loop0 ; labelType: None ; exists: True ; >09:51:02,048 WARN storage: disklabel detected but not usable on loop0 >09:51:02,049 INFO storage: type detected on 'loop0' is 'squashfs' >09:51:02,051 DEBUG storage: getFormat('squashfs') returning DeviceFormat instance >09:51:02,054 DEBUG storage: LoopDevice._setFormat: loop0 ; current: None ; type: None ; >09:51:02,059 INFO storage: got device: LoopDevice instance (0x7fbbcbb7f910) -- > name = loop0 status = False kids = 0 id = 29 > parents = ['existing 0MB file /tmp/curl_fetch_url0/squashfs.img (deleted) (28)'] > uuid = None size = 0 > format = existing None > major = 0 minor = 0 exists = True protected = False > sysfs path = partedDevice = None > target size = 0 path = /dev/loop0 > format args = [] originalFormat = None >09:51:02,065 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVLINKS': '/dev/disk/by-label/Anaconda /dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a', > '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': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_UUID_ENC': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '7', > 'MINOR': '1', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '126424', > 'name': 'loop1', > 'symlinks': ['/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a'], > 'sysfs_path': '/devices/virtual/block/loop1'} ; name: loop1 ; >09:51:02,072 INFO storage: scanning loop1 (/devices/virtual/block/loop1)... >09:51:02,075 DEBUG storage: DeviceTree.getDeviceByName: name: loop1 ; >09:51:02,078 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:02,082 INFO storage: loop1 is a loop device >09:51:02,085 DEBUG storage: DeviceTree.addUdevLoopDevice: name: loop1 ; >09:51:02,088 DEBUG storage: DeviceTree.getDeviceByName: name: /LiveOS/rootfs.img ; >09:51:02,095 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:02,097 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,099 DEBUG storage: FileDevice._setFormat: /LiveOS/rootfs.img ; current: None ; type: None ; >09:51:02,106 INFO storage: added file /LiveOS/rootfs.img (id 30) to device tree >09:51:02,109 DEBUG storage: FileDevice.addChild: kids: 0 ; name: /LiveOS/rootfs.img ; >09:51:02,110 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,113 DEBUG storage: LoopDevice._setFormat: loop1 ; current: None ; type: None ; >09:51:02,119 INFO storage: added loop loop1 (id 31) to device tree >09:51:02,121 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: loop1 ; >09:51:02,124 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: loop1 ; label_type: None ; >09:51:02,132 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:02,133 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:51:02,135 DEBUG storage: device loop1 does not contain a disklabel >09:51:02,136 INFO storage: type detected on 'loop1' is 'ext4' >09:51:02,395 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:02,402 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:51:02,405 DEBUG storage: LoopDevice._setFormat: loop1 ; current: None ; type: ext4 ; >09:51:02,412 INFO storage: got device: LoopDevice instance (0x7fbbcbf12e10) -- > name = loop1 status = False kids = 0 id = 31 > parents = ['existing 0MB file /LiveOS/rootfs.img (30)'] > 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 >09:51:02,416 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:02,456 INFO storage: got format: Ext4FS instance (0x7fbbcbb32a90) -- > type = ext4 name = ext4 status = False > device = /dev/loop1 uuid = a5f7360b-4196-454f-8b2e-aa85cbcf660a exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 1024.0 targetSize = 1024.0 > >09:51:02,527 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop2', > 'DEVPATH': '/devices/virtual/block/loop2', > 'DEVTYPE': 'disk', > 'ID_FS_TYPE': 'DM_snapshot_cow', > 'ID_FS_USAGE': 'other', > 'MAJOR': '7', > 'MINOR': '2', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '202831', > 'name': 'loop2', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop2'} ; name: loop2 ; >09:51:02,529 INFO storage: scanning loop2 (/devices/virtual/block/loop2)... >09:51:02,536 DEBUG storage: DeviceTree.getDeviceByName: name: loop2 ; >09:51:02,538 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:02,543 INFO storage: loop2 is a loop device >09:51:02,546 DEBUG storage: DeviceTree.addUdevLoopDevice: name: loop2 ; >09:51:02,548 DEBUG storage: DeviceTree.getDeviceByName: name: /overlay (deleted) ; >09:51:02,550 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:02,556 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,558 DEBUG storage: FileDevice._setFormat: /overlay (deleted) ; current: None ; type: None ; >09:51:02,559 INFO storage: added file /overlay (deleted) (id 32) to device tree >09:51:02,561 DEBUG storage: FileDevice.addChild: kids: 0 ; name: /overlay (deleted) ; >09:51:02,566 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,568 DEBUG storage: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >09:51:02,569 INFO storage: added loop loop2 (id 33) to device tree >09:51:02,571 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: loop2 ; >09:51:02,577 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: loop2 ; label_type: None ; >09:51:02,578 DEBUG storage: getFormat('DM_snapshot_cow') returning DeviceFormat instance >09:51:02,580 DEBUG storage: LoopDevice.setup: loop2 ; status: False ; controllable: False ; orig: False ; >09:51:02,587 DEBUG storage: DiskLabel.__init__: device: /dev/loop2 ; labelType: None ; exists: True ; >09:51:02,598 WARN storage: disklabel detected but not usable on loop2 >09:51:02,601 INFO storage: type detected on 'loop2' is 'DM_snapshot_cow' >09:51:02,606 DEBUG storage: getFormat('DM_snapshot_cow') returning DeviceFormat instance >09:51:02,609 DEBUG storage: LoopDevice._setFormat: loop2 ; current: None ; type: None ; >09:51:02,616 INFO storage: got device: LoopDevice instance (0x7fbbcbf4c310) -- > name = loop2 status = False kids = 0 id = 33 > parents = ['existing 0MB file /overlay (deleted) (32)'] > 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 >09:51:02,619 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop3', > 'DEVPATH': '/devices/virtual/block/loop3', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '3', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '204093', > 'name': 'loop3', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop3'} ; name: loop3 ; >09:51:02,620 INFO storage: ignoring loop3 (/devices/virtual/block/loop3) >09:51:02,626 DEBUG storage: lvm filter: adding loop3 to the reject list >09:51:02,628 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop4', > 'DEVPATH': '/devices/virtual/block/loop4', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '4', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '204759', > 'name': 'loop4', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop4'} ; name: loop4 ; >09:51:02,630 INFO storage: ignoring loop4 (/devices/virtual/block/loop4) >09:51:02,630 DEBUG storage: lvm filter: adding loop4 to the reject list >09:51:02,633 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop5', > 'DEVPATH': '/devices/virtual/block/loop5', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '5', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '204779', > 'name': 'loop5', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop5'} ; name: loop5 ; >09:51:02,638 INFO storage: ignoring loop5 (/devices/virtual/block/loop5) >09:51:02,639 DEBUG storage: lvm filter: adding loop5 to the reject list >09:51:02,641 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop6', > 'DEVPATH': '/devices/virtual/block/loop6', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '6', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '216060', > 'name': 'loop6', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop6'} ; name: loop6 ; >09:51:02,643 INFO storage: ignoring loop6 (/devices/virtual/block/loop6) >09:51:02,644 DEBUG storage: lvm filter: adding loop6 to the reject list >09:51:02,647 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVNAME': 'loop7', > 'DEVPATH': '/devices/virtual/block/loop7', > 'DEVTYPE': 'disk', > 'MAJOR': '7', > 'MINOR': '7', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'USEC_INITIALIZED': '216781', > 'name': 'loop7', > 'symlinks': [], > 'sysfs_path': '/devices/virtual/block/loop7'} ; name: loop7 ; >09:51:02,652 INFO storage: ignoring loop7 (/devices/virtual/block/loop7) >09:51:02,654 DEBUG storage: lvm filter: adding loop7 to the reject list >09:51:02,655 DEBUG storage: Skipping a device mapper drive (dm-0) for now >09:51:02,742 INFO storage: devices to scan: ['dm-0'] >09:51:02,756 DEBUG storage: DeviceTree.addUdevDevice: info: {'ANACBIN': '/sbin', > 'DEVLINKS': '/dev/disk/by-id/dm-name-live-rw /dev/disk/by-label/Anaconda /dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a /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': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_UUID_ENC': 'a5f7360b-4196-454f-8b2e-aa85cbcf660a', > 'ID_FS_VERSION': '1.0', > 'MAJOR': '253', > 'MINOR': '0', > 'MPATH_SBIN_PATH': '/sbin', > 'SUBSYSTEM': 'block', > 'TAGS': ':systemd:', > 'USEC_INITIALIZED': '198086', > 'name': 'dm-0', > 'symlinks': ['/dev/disk/by-id/dm-name-live-rw', > '/dev/disk/by-label/Anaconda', > '/dev/disk/by-uuid/a5f7360b-4196-454f-8b2e-aa85cbcf660a', > '/dev/mapper/live-rw'], > 'sysfs_path': '/devices/virtual/block/dm-0'} ; name: live-rw ; >09:51:02,760 INFO storage: scanning live-rw (/devices/virtual/block/dm-0)... >09:51:02,766 DEBUG storage: DeviceTree.getDeviceByName: name: live-rw ; >09:51:02,768 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:02,770 INFO storage: live-rw is a device-mapper device >09:51:02,772 DEBUG storage: DeviceTree.addUdevDMDevice: name: live-rw ; >09:51:02,778 DEBUG storage: DeviceTree.getDeviceByName: name: loop1 ; >09:51:02,781 DEBUG storage: DeviceTree.getDeviceByName returned existing 0MB loop loop1 (31) with existing ext4 filesystem >09:51:02,790 DEBUG storage: DeviceTree.getDeviceByName: name: loop2 ; >09:51:02,798 DEBUG storage: DeviceTree.getDeviceByName returned existing 0MB loop loop2 (33) >09:51:02,800 DEBUG storage: DeviceTree.getDeviceByName: name: live-rw ; >09:51:02,806 DEBUG storage: DeviceTree.getDeviceByName returned None >09:51:02,808 DEBUG storage: LoopDevice.addChild: kids: 0 ; name: loop2 ; >09:51:02,810 DEBUG storage: getFormat('None') returning DeviceFormat instance >09:51:02,816 DEBUG storage: DMDevice._setFormat: live-rw ; current: None ; type: None ; >09:51:02,817 INFO storage: added dm live-rw (id 34) to device tree >09:51:02,819 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: live-rw ; >09:51:02,821 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: live-rw ; label_type: None ; >09:51:02,826 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:02,827 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:51:02,828 DEBUG storage: device live-rw does not contain a disklabel >09:51:02,828 INFO storage: type detected on 'live-rw' is 'ext4' >09:51:03,110 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:03,116 DEBUG storage: getFormat('ext4') returning Ext4FS instance >09:51:03,118 DEBUG storage: DMDevice._setFormat: live-rw ; current: None ; type: ext4 ; >09:51:03,125 DEBUG storage: looking up parted Device: /dev/mapper/live-rw >09:51:03,129 INFO storage: got device: DMDevice instance (0x7fbbca978110) -- > name = live-rw status = True kids = 0 id = 34 > parents = ['existing 0MB loop loop2 (33)'] > uuid = None size = 1024.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: 2097152 openCount: 0 readOnly: False > externalMode: False dirty: False bootDirty: False > host: 13107 did: 13107 busy: True > hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) > PedDevice: <_ped.Device object at 0x7fbbd618bef0> > target size = 0 path = /dev/mapper/live-rw > format args = [] originalFormat = None target = None dmUuid = None >09:51:03,135 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:03,139 INFO storage: got format: Ext4FS instance (0x7fbbca978a90) -- > type = ext4 name = ext4 status = False > device = /dev/mapper/live-rw uuid = a5f7360b-4196-454f-8b2e-aa85cbcf660a exists = True > options = defaults supported = True formattable = True resizable = True > mountpoint = None mountopts = None > label = Anaconda size = 1024.0 targetSize = 1024.0 > >09:51:03,229 DEBUG storage: OpticalDevice.teardown: sr0 ; status: True ; controllable: True ; >09:51:03,237 DEBUG storage: DeviceFormat.teardown: device: /dev/sr0 ; status: False ; type: None ; >09:51:03,241 DEBUG storage: DeviceFormat.teardown: device: /dev/sr0 ; status: False ; type: None ; >09:51:03,312 DEBUG storage: DiskDevice.teardown: vda ; status: True ; controllable: True ; >09:51:03,319 DEBUG storage: DeviceFormat.teardown: device: /dev/vda ; status: False ; type: None ; >09:51:03,324 DEBUG storage: DeviceFormat.teardown: device: /dev/vda ; status: False ; type: None ; >09:51:03,391 DEBUG storage: LoopDevice.teardown: loop0 ; status: False ; controllable: False ; >09:51:03,398 DEBUG storage: LoopDevice.teardown: loop1 ; status: False ; controllable: False ; >09:51:03,400 DEBUG storage: DMDevice.teardown: live-rw ; status: True ; controllable: False ; >09:51:03,404 INFO storage: not going to restore from backup of non-existent /etc/mdadm.conf >09:51:03,406 INFO storage: edd: collected mbr signatures: {} >09:51:03,408 DEBUG storage: edd: data extracted from 0x80: > type: SCSI, ata_device: None > channel: 0, mbr_signature: None > pci_dev: 00:04.0, scsi_id: 0 > scsi_lun: 0, sectors: 16777216 >09:51:03,414 DEBUG storage: edd: matched 0x80 to vda using pci_dev >09:51:03,415 INFO storage: edd: both edd entries 0x80 and 0x80 seem to map to vda >09:51:03,432 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:03,441 DEBUG storage: Ext4FS.supported: supported: True ; >09:51:03,447 DEBUG storage: OpticalDevice.mediaPresent: sr0 ; status: True ; >09:51:04,218 DEBUG storage: new disk order: [] >09:51:04,310 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:04,318 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (27) >09:51:04,324 DEBUG storage: getFormat('biosboot') returning BIOSBoot instance >09:51:04,408 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; >09:51:04,414 DEBUG storage: DeviceTree.getDeviceByName returned existing 8192MB disk vda (27) > > >/tmp/ifcfg.log: > > >/proc/cmdline: >repo=http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os ksdevice=bootif ks=http://boot.salstar.sk/ks/fedora root=live:http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os/LiveOS/squashfs.img part=root=3,swap=1 disks=vda zerombr > > >/tmp/syslog: >07:50:37,574 INFO kernel:imklog 5.8.11, log source = /proc/kmsg started. >07:50:37,574 INFO rsyslogd: [origin software="rsyslogd" swVersion="5.8.11" x-pid="555" x-info="http://www.rsyslog.com"] start >07:50:37,581 INFO kernel:[ 0.000000] Initializing cgroup subsys cpuset >07:50:37,581 INFO kernel:[ 0.000000] Initializing cgroup subsys cpu >07:50:37,581 NOTICE kernel:[ 0.000000] Linux version 3.6.2-2.fc18.x86_64 (mockbuild@) (gcc version 4.7.2 20121001 (Red Hat 4.7.2-3) (GCC) ) #1 SMP Wed Oct 17 05:56:07 UTC 2012 >07:50:37,581 INFO kernel:[ 0.000000] Command line: repo=http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os ksdevice=bootif ks=http://boot.salstar.sk/ks/fedora root=live:http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os/LiveOS/squashfs.img part=root=3,swap=1 disks=vda zerombr >07:50:37,581 INFO kernel:[ 0.000000] e820: BIOS-provided physical RAM map: >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dbff] usable >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x000000000009dc00-0x000000000009ffff] reserved >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffdfff] usable >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x000000003fffe000-0x000000003fffffff] reserved >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved >07:50:37,581 INFO kernel:[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved >07:50:37,581 INFO kernel:[ 0.000000] NX (Execute Disable) protection: active >07:50:37,581 INFO kernel:[ 0.000000] DMI 2.4 present. >07:50:37,581 DEBUG kernel:[ 0.000000] DMI: Bochs Bochs, BIOS Bochs 01/01/2007 >07:50:37,581 INFO kernel:[ 0.000000] Hypervisor detected: KVM >07:50:37,581 DEBUG kernel:[ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved >07:50:37,581 DEBUG kernel:[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable >07:50:37,581 INFO kernel:[ 0.000000] No AGP bridge found >07:50:37,581 INFO kernel:[ 0.000000] e820: last_pfn = 0x3fffe max_arch_pfn = 0x400000000 >07:50:37,581 DEBUG kernel:[ 0.000000] MTRR default type: write-back >07:50:37,581 DEBUG kernel:[ 0.000000] MTRR fixed ranges enabled: >07:50:37,581 DEBUG kernel:[ 0.000000] 00000-9FFFF write-back >07:50:37,581 DEBUG kernel:[ 0.000000] A0000-BFFFF uncachable >07:50:37,581 DEBUG kernel:[ 0.000000] C0000-FFFFF write-protect >07:50:37,581 DEBUG kernel:[ 0.000000] MTRR variable ranges enabled: >07:50:37,581 DEBUG kernel:[ 0.000000] 0 base 00E0000000 mask FFE0000000 uncachable >07:50:37,581 DEBUG kernel:[ 0.000000] 1 disabled >07:50:37,581 DEBUG kernel:[ 0.000000] 2 disabled >07:50:37,581 DEBUG kernel:[ 0.000000] 3 disabled >07:50:37,581 DEBUG kernel:[ 0.000000] 4 disabled >07:50:37,581 DEBUG kernel:[ 0.000000] 5 disabled >07:50:37,581 DEBUG kernel:[ 0.000000] 6 disabled >07:50:37,581 DEBUG kernel:[ 0.000000] 7 disabled >07:50:37,581 INFO kernel:[ 0.000000] PAT not supported by CPU. >07:50:37,581 INFO kernel:[ 0.000000] found SMP MP-table at [mem 0x000fdaf0-0x000fdaff] mapped at [ffff8800000fdaf0] >07:50:37,581 DEBUG kernel:[ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff] >07:50:37,581 DEBUG kernel:[ 0.000000] Base memory trampoline at [ffff880000094000] 94000 size 24576 >07:50:37,581 INFO kernel:[ 0.000000] init_memory_mapping: [mem 0x00000000-0x3fffdfff] >07:50:37,581 DEBUG kernel:[ 0.000000] [mem 0x00000000-0x3fdfffff] page 2M >07:50:37,581 DEBUG kernel:[ 0.000000] [mem 0x3fe00000-0x3fffdfff] page 4k >07:50:37,581 DEBUG kernel:[ 0.000000] kernel direct mapping tables up to 0x3fffdfff @ [mem 0x1fdfe000-0x1fffffff] >07:50:37,581 INFO kernel:[ 0.000000] RAMDISK: [mem 0x3c600000-0x3dfd2fff] >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: RSDP 00000000000fd990 00014 (v00 BOCHS ) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: RSDT 000000003fffe5d0 00038 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: FACP 000000003fffff80 00074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: DSDT 000000003fffe610 01109 (v01 BXPC BXDSDT 00000001 INTL 20100528) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: FACS 000000003fffff40 00040 >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: SSDT 000000003ffffea0 0009E (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: APIC 000000003ffffdb0 00078 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: HPET 000000003ffffd70 00038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001) >07:50:37,581 WARNING kernel:[ 0.000000] ACPI: SSDT 000000003ffff720 00644 (v01 BXPC BXSSDTPC 00000001 INTL 20100528) >07:50:37,581 DEBUG kernel:[ 0.000000] ACPI: Local APIC address 0xfee00000 >07:50:37,581 INFO kernel:[ 0.000000] No NUMA configuration found >07:50:37,581 INFO kernel:[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000003fffdfff] >07:50:37,581 INFO kernel:[ 0.000000] Initmem setup node 0 [mem 0x00000000-0x3fffdfff] >07:50:37,581 INFO kernel:[ 0.000000] NODE_DATA [mem 0x3ffea000-0x3fffdfff] >07:50:37,582 INFO kernel:[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 >07:50:37,582 INFO kernel:[ 0.000000] kvm-clock: cpu 0, msr 0:1cfac01, boot clock >07:50:37,582 DEBUG kernel:[ 0.000000] [ffffea0000000000-ffffea0000ffffff] PMD -> [ffff88003e600000-ffff88003f5fffff] on node 0 >07:50:37,582 WARNING kernel:[ 0.000000] Zone ranges: >07:50:37,582 WARNING kernel:[ 0.000000] DMA [mem 0x00010000-0x00ffffff] >07:50:37,582 WARNING kernel:[ 0.000000] DMA32 [mem 0x01000000-0xffffffff] >07:50:37,582 WARNING kernel:[ 0.000000] Normal empty >07:50:37,582 WARNING kernel:[ 0.000000] Movable zone start for each node >07:50:37,582 WARNING kernel:[ 0.000000] Early memory node ranges >07:50:37,582 WARNING kernel:[ 0.000000] node 0: [mem 0x00010000-0x0009cfff] >07:50:37,582 WARNING kernel:[ 0.000000] node 0: [mem 0x00100000-0x3fffdfff] >07:50:37,582 DEBUG kernel:[ 0.000000] On node 0 totalpages: 262027 >07:50:37,582 DEBUG kernel:[ 0.000000] DMA zone: 64 pages used for memmap >07:50:37,582 DEBUG kernel:[ 0.000000] DMA zone: 9 pages reserved >07:50:37,582 DEBUG kernel:[ 0.000000] DMA zone: 3908 pages, LIFO batch:0 >07:50:37,582 DEBUG kernel:[ 0.000000] DMA32 zone: 4032 pages used for memmap >07:50:37,582 DEBUG kernel:[ 0.000000] DMA32 zone: 254014 pages, LIFO batch:31 >07:50:37,582 INFO kernel:[ 0.000000] ACPI: PM-Timer IO Port: 0xb008 >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: Local APIC address 0xfee00000 >07:50:37,582 INFO kernel:[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) >07:50:37,582 INFO kernel:[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) >07:50:37,582 INFO kernel:[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0]) >07:50:37,582 INFO kernel:[ 0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23 >07:50:37,582 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) >07:50:37,582 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) >07:50:37,582 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) >07:50:37,582 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) >07:50:37,582 INFO kernel:[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: IRQ0 used by override. >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: IRQ2 used by override. >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: IRQ5 used by override. >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: IRQ9 used by override. >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: IRQ10 used by override. >07:50:37,582 DEBUG kernel:[ 0.000000] ACPI: IRQ11 used by override. >07:50:37,582 INFO kernel:[ 0.000000] Using ACPI (MADT) for SMP configuration information >07:50:37,582 INFO kernel:[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 >07:50:37,582 INFO kernel:[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs >07:50:37,582 DEBUG kernel:[ 0.000000] nr_irqs_gsi: 40 >07:50:37,582 INFO kernel:[ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000 >07:50:37,582 INFO kernel:[ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000 >07:50:37,582 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000 >07:50:37,582 INFO kernel:[ 0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000 >07:50:37,582 INFO kernel:[ 0.000000] e820: [mem 0x40000000-0xfeffbfff] available for PCI devices >07:50:37,582 INFO kernel:[ 0.000000] Booting paravirtualized kernel on KVM >07:50:37,582 INFO kernel:[ 0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:1 nr_node_ids:1 >07:50:37,582 INFO kernel:[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88003fc00000 s84288 r8192 d22208 u2097152 >07:50:37,582 DEBUG kernel:[ 0.000000] pcpu-alloc: s84288 r8192 d22208 u2097152 alloc=1*2097152 >07:50:37,582 DEBUG kernel:[ 0.000000] pcpu-alloc: [0] 0 >07:50:37,582 INFO kernel:[ 0.000000] kvm-clock: cpu 0, msr 0:3fc13c01, primary cpu clock >07:50:37,582 INFO kernel:[ 0.000000] KVM setup async PF for cpu 0 >07:50:37,582 INFO kernel:[ 0.000000] kvm-stealtime: cpu 0, msr 3fc0dec0 >07:50:37,582 WARNING kernel:[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 257922 >07:50:37,582 WARNING kernel:[ 0.000000] Policy zone: DMA32 >07:50:37,582 NOTICE kernel:[ 0.000000] Kernel command line: repo=http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os ksdevice=bootif ks=http://boot.salstar.sk/ks/fedora root=live:http://ftp.upjs.sk/pub/fedora/linux/development/18/x86_64/os/LiveOS/squashfs.img part=root=3,swap=1 disks=vda zerombr >07:50:37,582 INFO kernel:[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) >07:50:37,582 NOTICE kernel:[ 0.000000] __ex_table already sorted, skipping sort >07:50:37,582 INFO kernel:[ 0.000000] Checking aperture... >07:50:37,582 INFO kernel:[ 0.000000] No AGP bridge found >07:50:37,582 INFO kernel:[ 0.000000] Memory: 988940k/1048568k available (6322k kernel code, 460k absent, 59168k reserved, 6881k data, 1036k init) >07:50:37,582 INFO kernel:[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 >07:50:37,582 INFO kernel:[ 0.000000] Hierarchical RCU implementation. >07:50:37,582 INFO kernel:[ 0.000000] RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=1. >07:50:37,582 INFO kernel:[ 0.000000] NR_IRQS:8448 nr_irqs:256 16 >07:50:37,582 INFO kernel:[ 0.000000] Console: colour VGA+ 80x25 >07:50:37,582 INFO kernel:[ 0.000000] console [tty0] enabled >07:50:37,582 INFO kernel:[ 0.000000] allocated 4194304 bytes of page_cgroup >07:50:37,582 INFO kernel:[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups >07:50:37,582 DEBUG kernel:[ 0.000000] hpet clockevent registered >07:50:37,582 INFO kernel:[ 0.000000] tsc: Detected 2999.556 MHz processor >07:50:37,582 INFO kernel:[ 0.001999] Calibrating delay loop (skipped) preset value.. 5999.11 BogoMIPS (lpj=2999556) >07:50:37,582 INFO kernel:[ 0.003005] pid_max: default: 32768 minimum: 301 >07:50:37,582 INFO kernel:[ 0.003585] Security Framework initialized >07:50:37,582 INFO kernel:[ 0.004017] SELinux: Initializing. >07:50:37,582 DEBUG kernel:[ 0.005016] SELinux: Starting in permissive mode >07:50:37,582 INFO kernel:[ 0.005167] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) >07:50:37,582 INFO kernel:[ 0.007575] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) >07:50:37,582 INFO kernel:[ 0.008590] Mount-cache hash table entries: 256 >07:50:37,582 INFO kernel:[ 0.009428] Initializing cgroup subsys cpuacct >07:50:37,582 INFO kernel:[ 0.010004] Initializing cgroup subsys memory >07:50:37,582 INFO kernel:[ 0.010563] Initializing cgroup subsys devices >07:50:37,582 INFO kernel:[ 0.011008] Initializing cgroup subsys freezer >07:50:37,582 INFO kernel:[ 0.011530] Initializing cgroup subsys net_cls >07:50:37,582 INFO kernel:[ 0.012007] Initializing cgroup subsys blkio >07:50:37,582 INFO kernel:[ 0.013008] Initializing cgroup subsys perf_event >07:50:37,582 INFO kernel:[ 0.013647] mce: CPU supports 10 MCE banks >07:50:37,582 INFO kernel:[ 0.014054] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 >07:50:37,582 INFO kernel:[ 0.014054] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0 >07:50:37,582 INFO kernel:[ 0.014054] tlb_flushall_shift is 0x6 >07:50:37,582 INFO kernel:[ 0.015160] SMP alternatives: switching to UP code >07:50:37,582 INFO kernel:[ 0.069391] Freeing SMP alternatives: 24k freed >07:50:37,582 INFO kernel:[ 0.069914] ACPI: Core revision 20120711 >07:50:37,582 INFO kernel:[ 0.071131] ftrace: allocating 23460 entries in 92 pages >07:50:37,582 INFO kernel:[ 0.078987] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 >07:50:37,582 INFO kernel:[ 0.078990] smpboot: CPU0: Intel QEMU Virtual CPU version 1.0.1 stepping 03 >07:50:37,582 WARNING kernel:[ 0.080987] APIC calibration not consistent with PM-Timer: 101ms instead of 100ms >07:50:37,582 INFO kernel:[ 0.080987] APIC delta adjusted to PM-Timer: 6250000 (6374807) >07:50:37,582 INFO kernel:[ 0.081057] Performance Events: unsupported p6 CPU model 2 no PMU driver, software events only. >07:50:37,582 WARNING kernel:[ 0.082843] NMI watchdog: disabled (cpu0): hardware events not enabled >07:50:37,582 INFO kernel:[ 0.083026] Brought up 1 CPUs >07:50:37,582 INFO kernel:[ 0.083409] smpboot: Total of 1 processors activated (5999.11 BogoMIPS) >07:50:37,582 INFO kernel:[ 0.084554] devtmpfs: initialized >07:50:37,582 INFO kernel:[ 0.086218] atomic64 test passed for x86-64 platform with CX8 and with SSE >07:50:37,582 INFO kernel:[ 0.086803] RTC time: 7:50:12, date: 10/23/12 >07:50:37,582 INFO kernel:[ 0.087078] NET: Registered protocol family 16 >07:50:37,582 INFO kernel:[ 0.087990] ACPI: bus type pci registered >07:50:37,582 INFO kernel:[ 0.088530] PCI: Using configuration type 1 for base access >07:50:37,582 INFO kernel:[ 0.089771] bio: create slab <bio-0> at 0 >07:50:37,582 INFO kernel:[ 0.090191] ACPI: Added _OSI(Module Device) >07:50:37,582 INFO kernel:[ 0.090607] ACPI: Added _OSI(Processor Device) >07:50:37,582 INFO kernel:[ 0.090988] ACPI: Added _OSI(3.0 _SCP Extensions) >07:50:37,582 INFO kernel:[ 0.091423] ACPI: Added _OSI(Processor Aggregator Device) >07:50:37,582 DEBUG kernel:[ 0.093083] ACPI: EC: Look up EC in DSDT >07:50:37,582 INFO kernel:[ 0.094268] ACPI: Interpreter enabled >07:50:37,582 INFO kernel:[ 0.094682] ACPI: (supports S0 S5) >07:50:37,582 INFO kernel:[ 0.094988] ACPI: Using IOAPIC for interrupt routing >07:50:37,582 INFO kernel:[ 0.098202] ACPI: No dock devices found. >07:50:37,582 INFO kernel:[ 0.098629] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug >07:50:37,582 INFO kernel:[ 0.099001] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) >07:50:37,582 DEBUG kernel:[ 0.099477] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored) >07:50:37,582 DEBUG kernel:[ 0.099479] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored) >07:50:37,582 DEBUG kernel:[ 0.099481] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored) >07:50:37,582 DEBUG kernel:[ 0.099483] pci_root PNP0A03:00: host bridge window [mem 0xe0000000-0xfebfffff] (ignored) >07:50:37,582 DEBUG kernel:[ 0.099485] PCI: root bus 00: using default resources >07:50:37,582 WARNING kernel:[ 0.099491] pci_root PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. >07:50:37,582 INFO kernel:[ 0.100016] PCI host bridge to bus 0000:00 >07:50:37,582 DEBUG kernel:[ 0.100988] pci_bus 0000:00: busn_res: [bus 00-ff] is inserted under domain [bus 00-ff] >07:50:37,582 INFO kernel:[ 0.100990] pci_bus 0000:00: root bus resource [bus 00-ff] >07:50:37,582 INFO kernel:[ 0.101475] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] >07:50:37,582 INFO kernel:[ 0.101988] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffffff] >07:50:37,582 DEBUG kernel:[ 0.103034] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 >07:50:37,582 DEBUG kernel:[ 0.103437] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 >07:50:37,582 DEBUG kernel:[ 0.104237] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 >07:50:37,582 DEBUG kernel:[ 0.104796] pci 0000:00:01.1: reg 20: [io 0xc080-0xc08f] >07:50:37,582 DEBUG kernel:[ 0.105120] pci 0000:00:01.2: [8086:7020] type 00 class 0x0c0300 >07:50:37,582 DEBUG kernel:[ 0.105656] pci 0000:00:01.2: reg 20: [io 0xc040-0xc05f] >07:50:37,582 DEBUG kernel:[ 0.106010] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 >07:50:37,582 INFO kernel:[ 0.106516] pci 0000:00:01.3: quirk: [io 0xb000-0xb03f] claimed by PIIX4 ACPI >07:50:37,582 INFO kernel:[ 0.106999] pci 0000:00:01.3: quirk: [io 0xb100-0xb10f] claimed by PIIX4 SMB >07:50:37,582 DEBUG kernel:[ 0.107686] pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000 >07:50:37,582 DEBUG kernel:[ 0.108367] pci 0000:00:02.0: reg 10: [mem 0xfc000000-0xfdffffff pref] >07:50:37,582 DEBUG kernel:[ 0.109063] pci 0000:00:02.0: reg 14: [mem 0xfebf0000-0xfebf0fff] >07:50:37,582 DEBUG kernel:[ 0.112216] pci 0000:00:02.0: reg 30: [mem 0xfebd0000-0xfebdffff pref] >07:50:37,582 DEBUG kernel:[ 0.112470] pci 0000:00:03.0: [1af4:1000] type 00 class 0x020000 >07:50:37,582 DEBUG kernel:[ 0.112675] pci 0000:00:03.0: reg 10: [io 0xc060-0xc07f] >07:50:37,582 DEBUG kernel:[ 0.112818] pci 0000:00:03.0: reg 14: [mem 0xfebf1000-0xfebf1fff] >07:50:37,582 DEBUG kernel:[ 0.113627] pci 0000:00:03.0: reg 30: [mem 0xfebe0000-0xfebeffff pref] >07:50:37,582 DEBUG kernel:[ 0.113986] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000 >07:50:37,582 DEBUG kernel:[ 0.114193] pci 0000:00:04.0: reg 10: [io 0xc000-0xc03f] >07:50:37,582 DEBUG kernel:[ 0.114347] pci 0000:00:04.0: reg 14: [mem 0xfebf2000-0xfebf2fff] >07:50:37,582 DEBUG kernel:[ 0.115669] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] >07:50:37,582 INFO kernel:[ 0.116154] pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM >07:50:37,582 INFO kernel:[ 0.116926] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08) >07:50:37,582 INFO kernel:[ 0.119547] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) >07:50:37,582 INFO kernel:[ 0.120482] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) >07:50:37,582 INFO kernel:[ 0.121469] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) >07:50:37,582 INFO kernel:[ 0.122469] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) >07:50:37,582 INFO kernel:[ 0.123466] ACPI: PCI Interrupt Link [LNKS] (IRQs 9) *0 >07:50:37,582 INFO kernel:[ 0.124616] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none >07:50:37,582 INFO kernel:[ 0.124983] vgaarb: loaded >07:50:37,582 INFO kernel:[ 0.125359] vgaarb: bridge control possible 0000:00:02.0 >07:50:37,582 NOTICE kernel:[ 0.126195] SCSI subsystem initialized >07:50:37,582 INFO kernel:[ 0.127990] ACPI: bus type scsi registered >07:50:37,582 DEBUG kernel:[ 0.128603] libata version 3.00 loaded. >07:50:37,582 INFO kernel:[ 0.128686] ACPI: bus type usb registered >07:50:37,582 INFO kernel:[ 0.129027] usbcore: registered new interface driver usbfs >07:50:37,582 INFO kernel:[ 0.129493] usbcore: registered new interface driver hub >07:50:37,582 INFO kernel:[ 0.130025] usbcore: registered new device driver usb >07:50:37,582 INFO kernel:[ 0.130576] PCI: Using ACPI for IRQ routing >07:50:37,582 DEBUG kernel:[ 0.130991] PCI: pci_cache_line_size set to 64 bytes >07:50:37,604 INFO systemd: systemd 194 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; fedora) >07:50:37,604 INFO systemd: Detected virtualization 'kvm'. >07:50:37,604 INFO systemd: Initializing machine ID from random generator. >07:50:37,604 WARNING systemd: Cannot add dependency job for unit udev-settle.service, ignoring: Unit udev-settle.service failed to load: No such file or directory. See system logs and 'systemctl status udev-settle.service' for details. >07:50:37,604 INFO systemd: Started Load Random Seed. >07:50:37,604 INFO systemd-modules-load: Inserted module 'uinput' >07:50:37,604 INFO systemd: Mounted Temporary Directory. >07:50:37,604 INFO systemd: Started Load Kernel Modules. >07:50:37,604 INFO systemd: Mounting Configuration File System... >07:50:37,604 INFO systemd: Mounted FUSE Control File System. >07:50:37,604 INFO systemd: Mounted Configuration File System. >07:50:37,614 DEBUG kernel:[ 0.131196] e820: reserve RAM buffer [mem 0x0009dc00-0x0009ffff] >07:50:37,614 DEBUG kernel:[ 0.131203] e820: reserve RAM buffer [mem 0x3fffe000-0x3fffffff] >07:50:37,614 INFO kernel:[ 0.131426] NetLabel: Initializing >07:50:37,614 INFO kernel:[ 0.131826] NetLabel: domain hash size = 128 >07:50:37,614 INFO kernel:[ 0.131981] NetLabel: protocols = UNLABELED CIPSOv4 >07:50:37,614 INFO kernel:[ 0.132427] NetLabel: unlabeled traffic allowed by default >07:50:37,614 INFO kernel:[ 0.133106] HPET: 3 timers in total, 0 timers will be used for per-cpu timer >07:50:37,614 INFO kernel:[ 0.133616] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 >07:50:37,614 INFO kernel:[ 0.134586] hpet0: 3 comparators, 64-bit 100.000000 MHz counter >07:50:37,614 INFO kernel:[ 0.138068] Switching to clocksource kvm-clock >07:50:37,614 INFO kernel:[ 0.150137] pnp: PnP ACPI init >07:50:37,614 INFO kernel:[ 0.150563] ACPI: bus type pnp registered >07:50:37,614 DEBUG kernel:[ 0.151022] pnp 00:00: [bus 00-ff] >07:50:37,614 DEBUG kernel:[ 0.151024] pnp 00:00: [io 0x0cf8-0x0cff] >07:50:37,614 DEBUG kernel:[ 0.151026] pnp 00:00: [io 0x0000-0x0cf7 window] >07:50:37,618 DEBUG kernel:[ 0.151028] pnp 00:00: [io 0x0d00-0xffff window] >07:50:37,618 DEBUG kernel:[ 0.151029] pnp 00:00: [mem 0x000a0000-0x000bffff window] >07:50:37,618 DEBUG kernel:[ 0.151031] pnp 00:00: [mem 0xe0000000-0xfebfffff window] >07:50:37,618 DEBUG kernel:[ 0.151071] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active) >07:50:37,618 DEBUG kernel:[ 0.151109] pnp 00:01: [io 0x0070-0x0071] >07:50:37,618 DEBUG kernel:[ 0.151148] pnp 00:01: [irq 8] >07:50:37,618 DEBUG kernel:[ 0.151150] pnp 00:01: [io 0x0072-0x0077] >07:50:37,618 DEBUG kernel:[ 0.151165] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active) >07:50:37,618 DEBUG kernel:[ 0.151193] pnp 00:02: [io 0x0060] >07:50:37,618 DEBUG kernel:[ 0.151195] pnp 00:02: [io 0x0064] >07:50:37,618 DEBUG kernel:[ 0.151211] pnp 00:02: [irq 1] >07:50:37,618 DEBUG kernel:[ 0.151235] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active) >07:50:37,618 DEBUG kernel:[ 0.151267] pnp 00:03: [irq 12] >07:50:37,618 DEBUG kernel:[ 0.151281] pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 (active) >07:50:37,618 DEBUG kernel:[ 0.151311] pnp 00:04: [io 0x03f2-0x03f5] >07:50:37,618 DEBUG kernel:[ 0.151313] pnp 00:04: [io 0x03f7] >07:50:37,618 DEBUG kernel:[ 0.151330] pnp 00:04: [irq 6] >07:50:37,618 DEBUG kernel:[ 0.151331] pnp 00:04: [dma 2] >07:50:37,618 DEBUG kernel:[ 0.151357] pnp 00:04: Plug and Play ACPI device, IDs PNP0700 (active) >07:50:37,618 DEBUG kernel:[ 0.151406] pnp 00:05: [io 0x0378-0x037f] >07:50:37,618 DEBUG kernel:[ 0.151423] pnp 00:05: [irq 7] >07:50:37,618 DEBUG kernel:[ 0.151437] pnp 00:05: Plug and Play ACPI device, IDs PNP0400 (active) >07:50:37,618 DEBUG kernel:[ 0.151477] pnp 00:06: [io 0x03f8-0x03ff] >07:50:37,618 DEBUG kernel:[ 0.151494] pnp 00:06: [irq 4] >07:50:37,618 DEBUG kernel:[ 0.151517] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) >07:50:37,618 DEBUG kernel:[ 0.151619] pnp 00:07: [mem 0xfed00000-0xfed003ff] >07:50:37,618 DEBUG kernel:[ 0.151637] pnp 00:07: Plug and Play ACPI device, IDs PNP0103 (active) >07:50:37,618 INFO kernel:[ 0.151769] pnp: PnP ACPI: found 8 devices >07:50:37,618 INFO kernel:[ 0.152201] ACPI: ACPI bus type pnp unregistered >07:50:37,618 DEBUG kernel:[ 0.159111] pci_bus 0000:00: resource 4 [io 0x0000-0xffff] >07:50:37,618 DEBUG kernel:[ 0.159114] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffffff] >07:50:37,618 INFO kernel:[ 0.159153] NET: Registered protocol family 2 >07:50:37,618 INFO kernel:[ 0.159952] TCP established hash table entries: 131072 (order: 9, 2097152 bytes) >07:50:37,618 INFO kernel:[ 0.163187] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) >07:50:37,618 INFO kernel:[ 0.164876] TCP: Hash tables configured (established 131072 bind 65536) >07:50:37,619 INFO kernel:[ 0.165518] TCP: reno registered >07:50:37,619 INFO kernel:[ 0.166393] UDP hash table entries: 512 (order: 2, 16384 bytes) >07:50:37,619 INFO kernel:[ 0.166884] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) >07:50:37,619 INFO kernel:[ 0.167476] NET: Registered protocol family 1 >07:50:37,619 INFO kernel:[ 0.167935] pci 0000:00:00.0: Limiting direct PCI/PCI transfers >07:50:37,619 INFO kernel:[ 0.168434] pci 0000:00:01.0: PIIX3: Enabling Passive Release >07:50:37,619 INFO kernel:[ 0.168915] pci 0000:00:01.0: Activating ISA DMA hang workarounds >07:50:37,619 WARNING kernel:[ 0.169558] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11 >07:50:37,619 DEBUG kernel:[ 0.171110] pci 0000:00:02.0: Boot video device >07:50:37,619 DEBUG kernel:[ 0.171148] PCI: CLS 0 bytes, default 64 >07:50:37,619 INFO kernel:[ 0.171239] Unpacking initramfs... >07:50:37,619 INFO kernel:[ 3.920260] Freeing initrd memory: 26444k freed >07:50:37,619 NOTICE kernel:[ 3.953637] Initialise module verification >07:50:37,619 INFO kernel:[ 3.954378] audit: initializing netlink socket (disabled) >07:50:37,619 NOTICE kernel:[ 3.955090] type=2000 audit(1350978616.954:1): initialized >07:50:37,619 INFO kernel:[ 3.982168] HugeTLB registered 2 MB page size, pre-allocated 0 pages >07:50:37,619 NOTICE kernel:[ 3.984867] VFS: Disk quotas dquot_6.5.2 >07:50:37,619 WARNING kernel:[ 3.985593] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) >07:50:37,619 INFO kernel:[ 3.987064] msgmni has been set to 1983 >07:50:37,619 DEBUG kernel:[ 3.987768] SELinux: Registering netfilter hooks >07:50:37,619 INFO kernel:[ 3.988916] alg: No test for stdrng (krng) >07:50:37,619 INFO kernel:[ 3.989565] NET: Registered protocol family 38 >07:50:37,619 NOTICE kernel:[ 3.990220] Key type asymmetric registered >07:50:37,619 NOTICE kernel:[ 3.990837] Asymmetric key parser 'x509' registered >07:50:37,619 INFO kernel:[ 3.991584] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) >07:50:37,619 INFO kernel:[ 3.992747] io scheduler noop registered >07:50:37,619 INFO kernel:[ 3.993385] io scheduler deadline registered >07:50:37,619 INFO kernel:[ 3.994061] io scheduler cfq registered (default) >07:50:37,619 INFO kernel:[ 3.994810] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 >07:50:37,619 INFO kernel:[ 3.995548] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 >07:50:37,619 INFO kernel:[ 3.996292] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 >07:50:37,619 INFO kernel:[ 3.997112] acpiphp: Slot [3] registered >07:50:37,619 INFO kernel:[ 3.997746] acpiphp: Slot [4] registered >07:50:37,619 INFO kernel:[ 3.998397] acpiphp: Slot [5] registered >07:50:37,619 INFO kernel:[ 3.999118] acpiphp: Slot [6] registered >07:50:37,619 INFO kernel:[ 3.999750] acpiphp: Slot [7] registered >07:50:37,619 INFO kernel:[ 4.000396] acpiphp: Slot [8] registered >07:50:37,619 INFO kernel:[ 4.001064] acpiphp: Slot [9] registered >07:50:37,619 INFO kernel:[ 4.001685] acpiphp: Slot [10] registered >07:50:37,619 INFO kernel:[ 4.002349] acpiphp: Slot [11] registered >07:50:37,619 INFO kernel:[ 4.002987] acpiphp: Slot [12] registered >07:50:37,619 INFO kernel:[ 4.003643] acpiphp: Slot [13] registered >07:50:37,619 INFO kernel:[ 4.004299] acpiphp: Slot [14] registered >07:50:37,619 INFO kernel:[ 4.004937] acpiphp: Slot [15] registered >07:50:37,619 INFO kernel:[ 4.005594] acpiphp: Slot [16] registered >07:50:37,619 INFO kernel:[ 4.006253] acpiphp: Slot [17] registered >07:50:37,619 INFO kernel:[ 4.006889] acpiphp: Slot [18] registered >07:50:37,619 INFO kernel:[ 4.007554] acpiphp: Slot [19] registered >07:50:37,619 INFO kernel:[ 4.008273] acpiphp: Slot [20] registered >07:50:37,619 INFO kernel:[ 4.008920] acpiphp: Slot [21] registered >07:50:37,619 INFO kernel:[ 4.009576] acpiphp: Slot [22] registered >07:50:37,619 INFO kernel:[ 4.010237] acpiphp: Slot [23] registered >07:50:37,619 INFO kernel:[ 4.010872] acpiphp: Slot [24] registered >07:50:37,619 INFO kernel:[ 4.011524] acpiphp: Slot [25] registered >07:50:37,619 INFO kernel:[ 4.012181] acpiphp: Slot [26] registered >07:50:37,619 INFO kernel:[ 4.012824] acpiphp: Slot [27] registered >07:50:37,619 INFO kernel:[ 4.013516] acpiphp: Slot [28] registered >07:50:37,619 INFO kernel:[ 4.015165] acpiphp: Slot [29] registered >07:50:37,619 INFO kernel:[ 4.015831] acpiphp: Slot [30] registered >07:50:37,619 INFO kernel:[ 4.016563] acpiphp: Slot [31] registered >07:50:37,619 DEBUG kernel:[ 4.017384] intel_idle: does not run on family 6 model 2 >07:50:37,619 INFO kernel:[ 4.017457] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 >07:50:37,619 INFO kernel:[ 4.018566] ACPI: Power Button [PWRF] >07:50:37,619 INFO kernel:[ 4.021301] GHES: HEST is not enabled! >07:50:37,619 WARNING kernel:[ 4.022228] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 >07:50:37,619 DEBUG kernel:[ 4.022980] virtio-pci 0000:00:03.0: setting latency timer to 64 >07:50:37,619 DEBUG kernel:[ 4.023295] virtio-pci 0000:00:04.0: setting latency timer to 64 >07:50:37,619 INFO kernel:[ 4.023530] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled >07:50:37,619 INFO kernel:[ 4.048554] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A >07:50:37,619 INFO kernel:[ 4.073906] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A >07:50:37,619 INFO kernel:[ 4.075122] Non-volatile memory driver v1.3 >07:50:37,619 INFO kernel:[ 4.076134] Linux agpgart interface v0.103 >07:50:37,619 INFO kernel:[ 4.077933] loop: module loaded >07:50:37,619 DEBUG kernel:[ 4.078660] ata_piix 0000:00:01.1: version 2.13 >07:50:37,619 DEBUG kernel:[ 4.078854] ata_piix 0000:00:01.1: setting latency timer to 64 >07:50:37,619 INFO kernel:[ 4.079401] scsi0 : ata_piix >07:50:37,619 INFO kernel:[ 4.080091] scsi1 : ata_piix >07:50:37,619 INFO kernel:[ 4.080701] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc080 irq 14 >07:50:37,619 INFO kernel:[ 4.081451] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc088 irq 15 >07:50:37,619 INFO kernel:[ 4.082321] libphy: Fixed MDIO Bus: probed >07:50:37,619 INFO kernel:[ 4.083055] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver >07:50:37,619 INFO kernel:[ 4.083792] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver >07:50:37,619 INFO kernel:[ 4.084525] uhci_hcd: USB Universal Host Controller Interface driver >07:50:37,619 DEBUG kernel:[ 4.085344] uhci_hcd 0000:00:01.2: setting latency timer to 64 >07:50:37,619 INFO kernel:[ 4.085365] uhci_hcd 0000:00:01.2: UHCI Host Controller >07:50:37,619 INFO kernel:[ 4.086093] uhci_hcd 0000:00:01.2: new USB bus registered, assigned bus number 1 >07:50:37,619 INFO kernel:[ 4.087369] uhci_hcd 0000:00:01.2: irq 11, io base 0x0000c040 >07:50:37,619 INFO kernel:[ 4.088208] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001 >07:50:37,619 INFO kernel:[ 4.088942] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 >07:50:37,619 INFO kernel:[ 4.090048] usb usb1: Product: UHCI Host Controller >07:50:37,619 INFO kernel:[ 4.090689] usb usb1: Manufacturer: Linux 3.6.2-2.fc18.x86_64 uhci_hcd >07:50:37,619 INFO kernel:[ 4.091426] usb usb1: SerialNumber: 0000:00:01.2 >07:50:37,619 INFO kernel:[ 4.092224] hub 1-0:1.0: USB hub found >07:50:37,619 INFO kernel:[ 4.092868] hub 1-0:1.0: 2 ports detected >07:50:37,619 INFO kernel:[ 4.093699] usbcore: registered new interface driver usbserial >07:50:37,619 INFO kernel:[ 4.094431] usbcore: registered new interface driver usbserial_generic >07:50:37,619 INFO kernel:[ 4.095194] USB Serial support registered for generic >07:50:37,619 INFO kernel:[ 4.095884] usbserial: USB Serial Driver core >07:50:37,619 INFO kernel:[ 4.096609] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 >07:50:37,619 INFO kernel:[ 4.098880] serio: i8042 KBD port at 0x60,0x64 irq 1 >07:50:37,619 INFO kernel:[ 4.099603] serio: i8042 AUX port at 0x60,0x64 irq 12 >07:50:37,619 INFO kernel:[ 4.100441] mousedev: PS/2 mouse device common for all mice >07:50:37,619 INFO kernel:[ 4.101652] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 >07:50:37,619 INFO kernel:[ 4.110001] rtc_cmos 00:01: RTC can wake from S4 >07:50:37,619 INFO kernel:[ 4.111168] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0 >07:50:37,619 INFO kernel:[ 4.112095] rtc0: alarms up to one day, 114 bytes nvram, hpet irqs >07:50:37,619 INFO kernel:[ 4.112905] device-mapper: uevent: version 1.0.3 >07:50:37,619 INFO kernel:[ 4.114464] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com >07:50:37,619 INFO kernel:[ 4.115728] cpuidle: using governor ladder >07:50:37,619 INFO kernel:[ 4.116367] cpuidle: using governor menu >07:50:37,619 INFO kernel:[ 4.117067] EFI Variables Facility v0.08 2004-May-17 >07:50:37,619 INFO kernel:[ 4.117914] usbcore: registered new interface driver usbhid >07:50:37,619 INFO kernel:[ 4.118778] usbhid: USB HID core driver >07:50:37,619 INFO kernel:[ 4.119573] drop_monitor: Initializing network drop monitor service >07:50:37,619 INFO kernel:[ 4.120520] ip_tables: (C) 2000-2006 Netfilter Core Team >07:50:37,619 INFO kernel:[ 4.121332] TCP: cubic registered >07:50:37,619 INFO kernel:[ 4.121928] Initializing XFRM netlink socket >07:50:37,619 INFO kernel:[ 4.122704] NET: Registered protocol family 10 >07:50:37,619 INFO kernel:[ 4.123788] mip6: Mobile IPv6 >07:50:37,619 INFO kernel:[ 4.124386] NET: Registered protocol family 17 >07:50:37,619 DEBUG kernel:[ 4.125378] PM: Hibernation image not present or could not be loaded. >07:50:37,619 NOTICE kernel:[ 4.125381] Loading module verification certificates >07:50:37,619 WARNING kernel:[ 4.126090] Cert Valid From: 2012-10-17 05:30:30 >07:50:37,619 WARNING kernel:[ 4.126733] Cert Valid To: 2112-09-23 05:30:30 >07:50:37,619 WARNING kernel:[ 4.127388] Now: 2012-10-23 07:50:17 >07:50:37,619 NOTICE kernel:[ 4.129401] MODSIGN: Loaded cert 'Fedora kernel signing key: 52fd0807f861ab2b6bbe2fdf3d50b521b250074f' >07:50:37,619 INFO kernel:[ 4.130654] registered taskstats version 1 >07:50:37,619 INFO kernel:[ 4.131839] Magic number: 0:282:825 >07:50:37,619 INFO kernel:[ 4.132668] rtc_cmos 00:01: setting system clock to 2012-10-23 07:50:16 UTC (1350978616) >07:50:37,619 DEBUG kernel:[ 4.264801] ata2.01: NODEV after polling detection >07:50:37,619 INFO kernel:[ 4.265596] ata2.00: ATAPI: QEMU DVD-ROM, 1.0.1, max UDMA/100 >07:50:37,619 INFO kernel:[ 4.267097] ata2.00: configured for MWDMA2 >07:50:37,619 NOTICE kernel:[ 4.268601] scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 1.0. PQ: 0 ANSI: 5 >07:50:37,619 WARNING kernel:[ 4.270956] sr0: scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray >07:50:37,619 INFO kernel:[ 4.271671] cdrom: Uniform CD-ROM driver Revision: 3.20 >07:50:37,619 DEBUG kernel:[ 4.272500] sr 1:0:0:0: Attached scsi CD-ROM sr0 >07:50:37,619 NOTICE kernel:[ 4.272602] sr 1:0:0:0: Attached scsi generic sg0 type 5 >07:50:37,619 INFO kernel:[ 4.275138] Freeing unused kernel memory: 1036k freed >07:50:37,619 INFO kernel:[ 4.276232] Write protecting the kernel read-only data: 12288k >07:50:37,619 INFO kernel:[ 4.283963] Freeing unused kernel memory: 1860k freed >07:50:37,619 INFO kernel:[ 4.291945] Freeing unused kernel memory: 1416k freed >07:50:37,619 INFO kernel:[ 4.395060] usb 1-1: new full-speed USB device number 2 using uhci_hcd >07:50:37,619 INFO kernel:[ 4.540477] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input2 >07:50:37,619 INFO kernel:[ 4.605297] BIOS EDD facility v0.16 2004-Jun-25, 1 devices found >07:50:37,619 INFO kernel:[ 4.759247] usb 1-1: New USB device found, idVendor=0627, idProduct=0001 >07:50:37,619 INFO kernel:[ 4.759747] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=5 >07:50:37,619 INFO kernel:[ 4.760275] usb 1-1: Product: QEMU USB Tablet >07:50:37,619 INFO kernel:[ 4.760725] usb 1-1: Manufacturer: QEMU 1.0.1 >07:50:37,619 INFO kernel:[ 4.761158] usb 1-1: SerialNumber: 42 >07:50:37,619 INFO kernel:[ 4.802246] input: QEMU 1.0.1 QEMU USB Tablet as /devices/pci0000:00/0000:00:01.2/usb1/1-1/1-1:1.0/input/input3 >07:50:37,619 INFO kernel:[ 4.803194] hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Pointer [QEMU 1.0.1 QEMU USB Tablet] on usb-0000:00:01.2-1/input0 >07:50:37,619 INFO kernel:[ 4.826109] squashfs: version 4.0 (2009/01/31) Phillip Lougher >07:50:37,619 INFO kernel:[ 4.833101] Loading iSCSI transport class v2.0-870. >07:50:37,619 NOTICE kernel:[ 4.839241] iscsi: registered transport (tcp) >07:50:37,619 INFO kernel:[ 4.845379] alua: device handler registered >07:50:37,619 INFO kernel:[ 4.851846] emc: device handler registered >07:50:37,619 INFO kernel:[ 4.857557] hp_sw: device handler registered >07:50:37,619 INFO kernel:[ 4.863291] rdac: device handler registered >07:50:37,619 INFO kernel:[ 4.882818] FDC 0 is a S82078B >07:50:37,619 INFO kernel:[ 4.897880] No iBFT detected. >07:50:37,620 INFO kernel:[ 4.904844] md: raid0 personality registered for level 0 >07:50:37,620 INFO kernel:[ 4.913642] md: raid1 personality registered for level 1 >07:50:37,620 INFO kernel:[ 4.919511] async_tx: api initialized (async) >07:50:37,620 INFO kernel:[ 4.921531] xor: automatically using best checksumming function: >07:50:37,620 INFO kernel:[ 4.932017] generic_sse: 9772.000 MB/sec >07:50:37,620 WARNING kernel:[ 4.952025] raid6: sse2x1 4832 MB/s >07:50:37,620 WARNING kernel:[ 4.969029] raid6: sse2x2 5242 MB/s >07:50:37,620 WARNING kernel:[ 4.986023] raid6: sse2x4 8320 MB/s >07:50:37,620 WARNING kernel:[ 4.986497] raid6: using algorithm sse2x4 (8320 MB/s) >07:50:37,620 WARNING kernel:[ 4.986938] raid6: using intx1 recovery algorithm >07:50:37,620 INFO kernel:[ 4.987480] tsc: Refined TSC clocksource calibration: 2999.559 MHz >07:50:37,620 INFO kernel:[ 4.998809] md: raid6 personality registered for level 6 >07:50:37,620 INFO kernel:[ 4.999283] md: raid5 personality registered for level 5 >07:50:37,620 INFO kernel:[ 4.999731] md: raid4 personality registered for level 4 >07:50:37,620 INFO kernel:[ 5.016127] md: raid10 personality registered for level 10 >07:50:37,620 INFO kernel:[ 5.022453] md: linear personality registered for level -1 >07:50:37,620 INFO kernel:[ 5.043146] device-mapper: multipath: version 1.5.0 loaded >07:50:37,620 INFO kernel:[ 5.049008] device-mapper: multipath round-robin: version 1.0.0 loaded >07:50:37,620 INFO kernel:[ 5.134124] RPC: Registered named UNIX socket transport module. >07:50:37,620 INFO kernel:[ 5.134611] RPC: Registered udp transport module. >07:50:37,620 INFO kernel:[ 5.135061] RPC: Registered tcp transport module. >07:50:37,620 INFO kernel:[ 5.135509] RPC: Registered tcp NFSv4.1 backchannel transport module. >07:50:37,620 DEBUG kernel:[ 5.609979] virtio-pci 0000:00:04.0: irq 40 for MSI/MSI-X >07:50:37,620 DEBUG kernel:[ 5.610023] virtio-pci 0000:00:04.0: irq 41 for MSI/MSI-X >07:50:37,620 INFO kernel:[ 5.630465] vda: unknown partition table >07:50:37,620 DEBUG kernel:[ 5.633274] virtio-pci 0000:00:03.0: irq 42 for MSI/MSI-X >07:50:37,620 DEBUG kernel:[ 5.633300] virtio-pci 0000:00:03.0: irq 43 for MSI/MSI-X >07:50:37,620 DEBUG kernel:[ 5.633325] virtio-pci 0000:00:03.0: irq 44 for MSI/MSI-X >07:50:37,620 INFO kernel:[ 5.697066] [drm] Initialized drm 1.1.0 20060810 >07:50:37,620 INFO kernel:[ 5.744440] [TTM] Zone kernel: Available graphics memory: 509860 kiB >07:50:37,620 INFO kernel:[ 5.744957] [TTM] Initializing pool allocator >07:50:37,620 INFO kernel:[ 5.745493] [TTM] Initializing DMA pool allocator >07:50:37,620 INFO kernel:[ 5.746383] [drm] fb mappable at 0x0 >07:50:37,620 INFO kernel:[ 5.746791] [drm] vram aper at 0x0 >07:50:37,620 INFO kernel:[ 5.747229] [drm] size 0 >07:50:37,620 INFO kernel:[ 5.747602] [drm] fb depth is 24 >07:50:37,620 INFO kernel:[ 5.747997] [drm] pitch is 3840 >07:50:37,620 INFO kernel:[ 5.748737] fbcon: cirrusdrmfb (fb0) is primary device >07:50:37,620 INFO kernel:[ 5.905318] Console: switching to colour frame buffer device 160x64 >07:50:37,620 INFO kernel:[ 5.976655] fb0: cirrusdrmfb frame buffer device >07:50:37,620 INFO kernel:[ 5.976656] drm: registered panic notifier >07:50:37,620 INFO kernel:[ 5.984060] [drm] Initialized cirrus 1.0.0 20110418 for 0000:00:02.0 on minor 0 >07:50:37,620 INFO kernel:[ 22.270853] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null) >07:50:37,620 DEBUG kernel:[ 23.136178] SELinux: 2048 avtab hash slots, 92171 rules. >07:50:37,620 DEBUG kernel:[ 23.150474] SELinux: 2048 avtab hash slots, 92171 rules. >07:50:37,620 DEBUG kernel:[ 23.266099] SELinux: 9 users, 15 roles, 4276 types, 230 bools, 1 sens, 1024 cats >07:50:37,620 DEBUG kernel:[ 23.266104] SELinux: 83 classes, 92171 rules >07:50:37,620 INFO kernel:[ 23.270917] SELinux: Permission compromise_kernel in class capability2 not defined in policy. >07:50:37,620 INFO kernel:[ 23.271063] SELinux: the above unknown classes and permissions will be allowed >07:50:37,620 DEBUG kernel:[ 23.271150] SELinux: Completing initialization. >07:50:37,620 DEBUG kernel:[ 23.271151] SELinux: Setting up existing superblocks. >07:50:37,620 DEBUG kernel:[ 23.271156] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.271160] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.271171] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.271174] SELinux: initialized (dev proc, type proc), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.271187] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.271202] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.271680] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs >07:50:37,620 DEBUG kernel:[ 23.271687] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.272936] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs >07:50:37,620 DEBUG kernel:[ 23.272941] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.272943] SELinux: initialized (dev devpts, type devpts), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.272960] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.272966] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.272971] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.272983] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273387] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273390] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.273394] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.273519] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.273541] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273544] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273549] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273568] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273580] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273587] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273593] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273599] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273609] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273616] SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.273622] SELinux: initialized (dev loop0, type squashfs), uses xattr >07:50:37,620 DEBUG kernel:[ 23.273636] SELinux: initialized (dev dm-0, type ext4), uses xattr >07:50:37,620 NOTICE kernel:[ 23.275134] type=1403 audit(1350978635.641:2): policy loaded auid=4294967295 ses=4294967295 >07:50:37,620 DEBUG kernel:[ 23.705606] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts >07:50:37,620 DEBUG kernel:[ 23.796270] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 23.998854] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs >07:50:37,620 DEBUG kernel:[ 24.151382] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts >07:50:37,620 NOTICE kernel:[ 24.812506] type=1400 audit(1350978637.178:3): avc: denied { create } for pid=536 comm="systemd-tmpfile" name="tmp" scontext=system_u:system_r:systemd_tmpfiles_t:s0 tcontext=system_u:object_r:var_t:s0 tclass=dir >07:50:37,620 NOTICE kernel:[ 24.812559] type=1400 audit(1350978637.178:4): avc: denied { setattr } for pid=536 comm="systemd-tmpfile" name="tmp" dev="dm-0" ino=51359 scontext=system_u:system_r:systemd_tmpfiles_t:s0 tcontext=system_u:object_r:var_t:s0 tclass=dir >07:50:37,620 NOTICE kernel:[ 24.812584] type=1400 audit(1350978637.178:5): avc: denied { relabelfrom } for pid=536 comm="systemd-tmpfile" name="tmp" dev="dm-0" ino=51359 scontext=system_u:system_r:systemd_tmpfiles_t:s0 tcontext=system_u:object_r:var_t:s0 tclass=dir >07:50:37,817 INFO NetworkManager: <info> NetworkManager (version 0.9.7.0-6.git20121004.fc18) is starting... >07:50:37,817 INFO NetworkManager: <info> Read config file /etc/NetworkManager/NetworkManager.conf >07:50:37,817 INFO NetworkManager: <info> WEXT support is enabled >07:50:37,817 INFO systemd: Starting D-Bus System Message Bus... >07:50:37,817 INFO systemd: Started D-Bus System Message Bus. >07:50:37,959 INFO dbus-daemon: dbus[562]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' >07:50:37,959 NOTICE dbus: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' >07:50:37,959 INFO systemd: Starting Authorization Manager... >07:50:38,095 INFO polkitd: Started polkitd version 0.107 >07:50:38,109 INFO systemd: Started Terminate Plymouth Boot Screen. >07:50:38,127 INFO systemd: Started Wait for Plymouth Boot Screen to Quit. >07:50:38,132 INFO systemd: Starting Shell on tty2... >07:50:38,132 INFO systemd: Started Shell on tty2. >07:50:38,260 NOTICE kernel:[ 25.889394] type=1400 audit(1350978638.255:6): avc: denied { execute } for pid=574 comm="bash" name="hostname" dev="dm-0" ino=8434 scontext=system_u:system_r:getty_t:s0 tcontext=system_u:object_r:hostname_exec_t:s0 tclass=file >07:50:38,260 NOTICE kernel:[ 25.889416] type=1400 audit(1350978638.255:7): avc: denied { read open } for pid=574 comm="bash" path="/usr/bin/hostname" dev="dm-0" ino=8434 scontext=system_u:system_r:getty_t:s0 tcontext=system_u:object_r:hostname_exec_t:s0 tclass=file >07:50:38,260 NOTICE kernel:[ 25.889450] type=1400 audit(1350978638.255:8): avc: denied { execute_no_trans } for pid=574 comm="bash" path="/usr/bin/hostname" dev="dm-0" ino=8434 scontext=system_u:system_r:getty_t:s0 tcontext=system_u:object_r:hostname_exec_t:s0 tclass=file >07:50:38,273 INFO dbus-daemon: dbus[562]: [system] Successfully activated service 'org.freedesktop.PolicyKit1' >07:50:38,274 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.PolicyKit1' >07:50:38,274 INFO systemd: Started Authorization Manager. >07:50:38,307 WARNING NetworkManager: ifcfg-rh: Could not get hostname: failed to read /etc/sysconfig/network >07:50:38,313 NOTICE NetworkManager: ifcfg-rh: Acquired D-Bus service com.redhat.ifcfgrh1 >07:50:38,314 INFO NetworkManager: <info> Loaded plugin ifcfg-rh: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. >07:50:38,332 NOTICE kernel:[ 25.959090] type=1400 audit(1350978638.325:9): avc: denied { read } for pid=568 comm="bash" name=".profile" dev="dm-0" ino=8194 scontext=system_u:system_r:getty_t:s0 tcontext=system_u:object_r:admin_home_t:s0 tclass=file >07:50:38,332 NOTICE kernel:[ 25.959101] type=1400 audit(1350978638.325:10): avc: denied { open } for pid=568 comm="bash" path="/root/.profile" dev="dm-0" ino=8194 scontext=system_u:system_r:getty_t:s0 tcontext=system_u:object_r:admin_home_t:s0 tclass=file >07:50:38,333 INFO NetworkManager: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc. To report bugs please use the NetworkManager mailing list. >07:50:38,337 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-eth0 ... >07:50:38,345 NOTICE NetworkManager: ifcfg-rh: read connection 'Boot Disk' >07:50:38,347 NOTICE NetworkManager: ifcfg-rh: parsing /etc/sysconfig/network-scripts/ifcfg-lo ... >07:50:38,350 INFO NetworkManager: <info> monitoring kernel firmware directory '/lib/firmware'. >07:50:38,386 INFO systemd: Started Network Manager. >07:50:38,393 INFO systemd: Starting Anaconda System Services. >07:50:38,414 INFO systemd: Reached target Anaconda System Services. >07:50:38,424 INFO systemd: Starting Anaconda... >07:50:38,425 INFO systemd: Starting Network Manager Wait Online... >07:50:38,428 INFO NetworkManager: <info> WiFi enabled by radio killswitch; enabled by state file >07:50:38,430 INFO NetworkManager: <info> WWAN enabled by radio killswitch; enabled by state file >07:50:38,433 INFO NetworkManager: <info> WiMAX enabled by radio killswitch; enabled by state file >07:50:38,442 INFO NetworkManager: <info> Networking is enabled by state file >07:50:38,444 WARNING NetworkManager: <warn> failed to allocate link cache: (-10) Operation not supported >07:50:38,451 INFO NetworkManager: <info> (eth0): carrier is ON >07:50:38,455 ERR NetworkManager: <error> [1350978638.438431] [nm-device-ethernet.c:454] update_permanent_hw_address(): (eth0): unable to read permanent MAC address (error 0) >07:50:38,459 INFO NetworkManager: <info> (eth0): new Ethernet device (driver: 'virtio_net' ifindex: 2) >07:50:38,460 INFO NetworkManager: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0 >07:50:38,460 INFO NetworkManager: <info> (eth0): now managed >07:50:38,473 INFO NetworkManager: <info> (eth0): device state change: unmanaged -> unavailable (reason 'connection-assumed') [10 20 41] >07:50:38,486 INFO NetworkManager: <info> (eth0): preparing device. >07:50:38,492 INFO NetworkManager: <info> Activation (eth0) starting connection 'Boot Disk' >07:50:38,496 INFO NetworkManager: <info> (eth0): device state change: unavailable -> ip-config (reason 'none') [20 70 0] >07:50:38,502 INFO NetworkManager: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled. >07:50:38,524 WARNING NetworkManager: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring... >07:50:38,573 WARNING NetworkManager: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring... >07:50:38,585 INFO NetworkManager: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) started... >07:50:38,610 INFO NetworkManager: <info> Activation (eth0) Beginning DHCPv4 transaction (timeout in 45 seconds) >07:50:38,642 INFO NetworkManager: <info> dhclient started with pid 589 >07:50:38,655 INFO NetworkManager: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) complete. >07:50:38,832 INFO systemd: Started Anaconda. >07:50:38,832 INFO systemd: Starting Anaconda Text Console... >07:50:38,885 INFO systemd: Started Anaconda Text Console. >07:50:39,082 INFO dhclient: Internet Systems Consortium DHCP Client 4.2.4-P2 >07:50:39,083 INFO dhclient: Copyright 2004-2012 Internet Systems Consortium. >07:50:39,083 INFO dhclient: All rights reserved. >07:50:39,086 INFO dhclient: For info, please visit https://www.isc.org/software/dhcp/ >07:50:39,089 INFO dhclient: >07:50:39,147 INFO NetworkManager: <info> (eth0): DHCPv4 state changed nbi -> preinit >07:50:39,156 INFO dhclient: Listening on LPF/eth0/52:54:00:12:34:56 >07:50:39,159 INFO dhclient: Sending on LPF/eth0/52:54:00:12:34:56 >07:50:39,160 INFO dhclient: Sending on Socket/fallback >07:50:39,160 INFO dhclient: DHCPREQUEST on eth0 to 255.255.255.255 port 67 (xid=0x3179aae3) >07:50:39,162 INFO dhclient: DHCPACK from 10.0.2.2 (xid=0x3179aae3) >07:50:39,179 INFO kernel:[ 26.812497] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0xb100, revision 0 >07:50:39,199 INFO NetworkManager: <info> (eth0): DHCPv4 state changed preinit -> reboot >07:50:39,200 INFO NetworkManager: <info> address 10.0.2.15 >07:50:39,200 INFO NetworkManager: <info> prefix 24 (255.255.255.0) >07:50:39,201 INFO NetworkManager: <info> gateway 10.0.2.2 >07:50:39,202 INFO NetworkManager: <info> nameserver '10.0.2.3' >07:50:39,203 INFO NetworkManager: <info> Activation (eth0) Stage 5 of 5 (IPv4 Configure Commit) scheduled... >07:50:39,203 INFO NetworkManager: <info> Activation (eth0) Stage 5 of 5 (IPv4 Commit) started... >07:50:39,204 INFO kernel:[ 26.837976] parport_pc 00:05: reported by Plug and Play ACPI >07:50:39,204 INFO kernel:[ 26.838170] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE] >07:50:39,206 INFO NetworkManager: <info> (eth0): device state change: ip-config -> secondaries (reason 'none') [70 90 0] >07:50:39,230 INFO NetworkManager: <info> Activation (eth0) Stage 5 of 5 (IPv4 Commit) complete. >07:50:39,237 INFO NetworkManager: <info> (eth0): device state change: secondaries -> activated (reason 'none') [90 100 0] >07:50:39,274 INFO NetworkManager: <info> Policy set 'Boot Disk' (eth0) as default for IPv4 routing and DNS. >07:50:39,277 NOTICE kernel:[ 26.910266] type=1400 audit(1350978639.276:11): avc: denied { read write } for pid=620 comm="hostname" path="/dev/pts/1" dev="devpts" ino=4 scontext=system_u:system_r:hostname_t:s0 tcontext=system_u:object_r:devpts_t:s0 tclass=chr_file >07:50:39,278 INFO NetworkManager: <info> Activation (eth0) successful, device activated. >07:50:39,281 NOTICE dbus: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper) >07:50:39,294 INFO dhclient: bound to 10.0.2.15 -- renewal in 36723 seconds. >07:50:39,295 INFO systemd: Started Network Manager Wait Online. >07:50:39,299 INFO systemd: Starting Network. >07:50:39,302 INFO systemd: Reached target Network. >07:50:39,305 INFO systemd: Startup finished in 4s 300ms 684us (kernel) + 19s 62ms 901us (initrd) + 3s 491ms 624us (userspace) = 26s 855ms 209us. >07:50:39,309 INFO dbus-daemon: dbus[562]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper) >07:50:39,333 INFO dbus-daemon: dbus[562]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher' >07:50:39,342 NOTICE dbus: [system] Successfully activated service 'org.freedesktop.nm_dispatcher' >07:50:39,360 ERR systemd-udevd: ctx=0x7f9e379b69c0 path=/lib/modules/3.6.2-2.fc18.x86_64/kernel/sound/core/snd-pcm.ko error=No such file or directory >07:50:39,582 INFO dbus-daemon: /etc/NetworkManager/dispatcher.d/04-iscsi: line 14: /sbin/chkconfig: No such file or directory >07:50:39,648 INFO kernel:[ 27.281570] microcode: CPU0 sig=0x623, pf=0x0, revision=0x1 >07:50:39,923 WARNING NetworkManager: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring... >07:50:40,047 INFO kernel:[ 27.680434] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba >07:50:41,713 WARNING kernel:[ 29.346783] auditd (654): /proc/654/oom_adj is deprecated, please use /proc/654/oom_score_adj instead. >07:50:47,263 INFO systemd: Starting NTP client/server... >07:50:47,437 INFO chrony-helper: tr: write error: Broken pipe >07:50:47,437 INFO chrony-helper: tr: write error >07:50:47,494 INFO chronyd: chronyd version 1.27-git1ca844 starting >07:50:47,497 INFO chronyd: Linux kernel major=3 minor=6 patch=2 >07:50:47,497 INFO chronyd: hz=100 shift_hz=7 freq_scale=1.00000000 nominal_tick=10000 slew_delta_tick=833 max_tick_bias=1000 shift_pll=2 >07:50:47,543 INFO systemd: Started NTP client/server. >07:50:52,724 INFO chronyd: Selected source 85.254.216.1 >07:50:52,724 WARNING chronyd: System clock wrong by 1.377527 seconds, adjustment started >07:50:52,880 INFO kernel:[ 40.929647] Btrfs loaded >07:50:53,065 INFO kernel:[ 41.114426] SGI XFS with ACLs, security attributes, large block/inode numbers, no debug enabled >07:50:54,044 INFO chronyd: Selected source 84.245.65.34 >07:50:54,455 INFO chronyd: Selected source 213.160.185.89 > > >/run/install/ks.cfg: >#based on "pc" configuration >#accepted kernel parameters: ># part=root=4,vg=VGNAME,swap=4,var=20,home=max ># disks=vda,vdb ># pkgs=desktop,salpack ># ># System authorization information and root password >auth --useshadow --enablemd5 >rootpw --iscrypted $1$Nd.xn29E$ZyPRpRorSV06piZyARGxy/ ># System bootloader configuration >bootloader --append="" --location=mbr --timeout=1 ># Firewall configuration (ssh is enabled by default) >firewall --enabled ># Run the Setup Agent on first boot >firstboot --enable ># System keyboard >keyboard us ># System language >lang sk_SK.UTF-8 >#lang en_US.UTF-8 ># Installation logging level >#logging info ># Network information >network --bootproto=dhcp --onboot=on >#vnc --host=158.197.240.41 --port=5500 ># Reboot after installation >reboot ># SELinux configuration >selinux --permissive ># System timezone >timezone --utc Europe/Bratislava ># Install OS instead of upgrade >install ># Services >services --disabled=netfs --enabled=network ># iSCSI >#ignoredisk --interactive >#iscsiname iqn.2012-09.test >#iscsi --ipaddr=158.197.16.70 --target=iqn.2012-09.sk.upjs.ftp:fedora ># Disk partitioning information >#part / --bytes-per-inode=4096 --fstype="ext4" --grow --size=1 >%packages >dhclient >yum >yum-utils >openssh-clients >openssh-server >screen >wget >rsync >which >iptables >joe >mc >parted >-sendmail >%end > >%pre --interpreter /usr/bin/python ># SAL's fedora/centos kickstart script > >import os, sys, re, socket, urllib2 > >part_names = dict( > swap='swap', > boot='/boot', > var='/var', > home='/home', > tmp='/tmp', > www='/var/www', > backuppc='/var/lib/BackupPC', > mysql='/var/lib/mysql', > pgsql='/var/lib/pgsql' >) >sys.stdout = open('/tmp/salstar.ks', 'wt') >spare = 2 > ># check distribution (el6 or fc17) >distro, arch = os.popen('uname -r').read().strip().split('.')[-2:] >if distro.startswith("fc"): > biosboot = 2 >else: > biosboot = 0 >if arch.endswith('86'): > arch = "i386" > ># boot command line >cmd_line = {} >for cmd in open('/proc/cmdline').read().strip().split(' '): > arg = None > if '=' in cmd: > cmd, arg = cmd.split('=', 1) > cmd_line[cmd] = arg > >def disksize(*disks): > ds = [ > int(open('/sys/class/block/%s/size' % x).read().strip())/2048 > for x in disks > ] > print "# disksizes: %s = %s" % (disks, ds) > return min(ds) > >def size(s, disks=None, sum=0): > if s in ['', 'max']: > if disks is None: > return "1 --grow" > else: > print "# sum=%d kB" % sum > return disksize(*disks)-sum > if s.endswith('m') or s.endswith('M'): > return int(s[:-1]) > else: > return int(float(s.strip('gG'))*1024) > >class mk_raid: > cntr = -1 > def __init__(self, disks): > self.disks = disks > def add(self, s): > self.cntr += 1 > for i in 0, 1: > print "part raid.%d%d --size=%s --ondisk=%s" \ > % (self.cntr, i+1, s, self.disks[i]) > def add_vg(self, vg, s): > self.add(s) > print "raid pv.01 --level=1 --device=md%d raid.%d1 raid.%d2" \ > % (self.cntr, self.cntr, self.cntr) > print "volgroup %s pv.01" % vg > def add_part(self, mp, s, fstype='--fstype=ext4'): > self.add(s) > print "raid %s --level=1 --device=md%d %s raid.%d1 raid.%d2" \ > % (mp, self.cntr, fstype, self.cntr, self.cntr) > >def not_cdrom_or_lun(hd): > try: > media = open('/sys/block/%s/device/media' % hd, 'r').read().strip() > if media=='cdrom': > return False > except IOError: > pass > try: > model = open('/sys/block/%s/device/model' % hd, 'r').read().strip() > if model=='LUNZ': > return False > except IOError: > pass > return True > >def detect_disks(): > return [x for x in os.listdir('/sys/block') > if (x[0:2] in ['sd','vd','hd']) and not_cdrom_or_lun(x)] > >def initdisks(disks): > if 'zerombr' in cmd_line: > print "zerombr" > if disks: > print "clearpart --all --initlabel --drives=%s" % ','.join(disks) > else: > print "clearpart --all --initlabel" > >def autopartition(disks, parts): > if disks and disks.startswith("iscsi:"): > #print "ignoredisk --interactive" > print "iscsiname iqn.2012-09.test" > print "iscsi --ipaddr=%s --target=%s --user=%s --password=%s" \ > % tuple(disks[6:].split(";", 3)) > return > if not parts: > return > if disks: > print "ignoredisk --only-use=%s" % disks > disks = disks.split(',') > else: > disks = detect_disks() > parts = [x.split('=', 1) for x in parts.split(',')] > vg = None > if len(disks)==1: > # one disk partition scheme > disk0 = disks[0] > for key, value in parts: > if ':' in value: > fstype = "--fstype=%s" % value.split(':', 1)[1] > value = value.split(':', 1)[0] > elif key=='swap': > fstype = '' > else: > fstype = '--fstype=ext4' > if key=='vg': > vg = value > print "part pv.01 --ondisk=%s --size=1 --grow" % disk0 > print "volgroup %s pv.01" % vg > elif key=='root': > initdisks(disks) > if biosboot>0: > print "part biosboot --fstype=biosboot --ondisk=%s --size=%d" \ > % (disk0, biosboot) > print "part / --ondisk=%s %s --size=%d" \ > % (disk0, fstype, size(value)) > elif key in part_names: > if vg: > print "logvol %s --vgname=%s --size=%s --name=%s %s" \ > % (part_names[key], vg, size(value), key, fstype) > else: > print "part %s --ondisk=%s %s --size=%d" \ > % (part_names[key], disk0, fstype, size(value)) > elif len(disks)==2: > # raid 1 partition scheme > sum = spare # 1 > disk0 = disks[0] > disk1 = disks[1] > raid = mk_raid(disks) > for key, value in parts: > if ':' in value: > fstype = "--fstype=%s" %value.split(':', 1)[1] > value = value.split(':', 1)[0] > elif key=='swap': > fstype = '' > else: > fstype = '--fstype=ext4' > print "# key, value, fstype:", key, value, fstype > if key=='vg': > vg = value > # calculate pv size > #s = 0 > #for k, v in parts: > # if k=='vg': > # s = 1 > # elif s>0: > # if v.isdigit(): > # s += int(v)*1024 > # else: > # s += 1 > # add pv > # --grow disabled in F14 for raid partitions :-( > #raid.add_vg(vg, "%d --grow" % s) > print "# disk size: %d-%d" % (disksize(*disks), sum) > raid.add_vg(vg, "%d" % (disksize(*disks)-sum)) > elif key=='root': > initdisks(disks) > if biosboot>0: > print "part biosboot --fstype=biosboot --ondisk=%s --size=%d" \ > % (disk0, biosboot) > print "part biosboot --fstype=biosboot --ondisk=%s --size=%d" \ > % (disk1, biosboot) > sum += biosboot > s = size(value, disks, sum) > raid.add_part("/", s, fstype) > sum += s > elif key in part_names: > if vg: > print "logvol %s --vgname=%s --size=%s --name=%s %s" \ > % (part_names[key], vg, size(value), key, fstype) > else: > s = size(value, disks, sum) > raid.add_part(part_names[key], s, fstype) > sum += s > print "# sum=%d kB" % sum > >class repocfg_class: > fc = dict( > base = [ > 'url --url=%(mirror)s/fedora/linux/%(dir)s/%(ver)d/Fedora/%(arch)s/os/', > 'repo --name=Updates --baseurl=%(mirror)s/fedora/linux/updates/%(ver)d/%(arch)s/' > ], > other = [ > 'repo --name=Everything --baseurl=%(mirror)s/fedora/linux/%(dir)s/%(ver)d/Everything/%(arch)s/os/', > 'repo --name=Salstar --baseurl=http://www.salstar.sk/pub/fedora/%(ver)d/%(arch)s/' > ], > testing = [ > 'repo --name=Updates-testing --baseurl=%(mirror)s/fedora/linux/updates/testing/%(ver)d/%(arch)s/' > ] > ) > el = dict( > base = [ > 'url --url=%(mirror)s/centos/%(ver)d/os/%(arch)s/', > 'repo --name=Updates --baseurl=%(mirror)s/centos/%(ver)d/updates/%(arch)s/', > 'repo --name=EPEL --baseurl=%(mirror)s/mirrors/epel/%(ver)d/%(arch)s/' > ], > other = [ > 'repo --name=Salstar --baseurl=http://www.salstar.sk/pub/epel/%(ver)d/%(arch)s/' > ], > testing = [ > 'repo --name=EPEL-testing --baseurl=%(mirror)s/mirrors/epel/testing/%(ver)d/%(arch)s/' > ] > ) > all_repos = ('pkgs' in cmd_line) or ('packages' in cmd_line) > cmd_line_testing = 'testing' in cmd_line > cmd_line_repo = cmd_line.get('repo') > cmd_line_packages = cmd_line.get('pkgs') or cmd_line.get('packages') > def get(self, distro): > grps = getattr(self, distro) > ret = grps['base'] > if self.cmd_line_testing: > ret.extend(grps['testing']) > if self.all_repos: > ret.extend(grps['other']) > return ret > def repo_update(self, distro, version, arch): > for repo in self.get(distro): > if repo.startswith("url") and self.cmd_line_repo: > print "url --url=%s" % self.cmd_line_repo > else: > print repo % dict( > mirror="http://ftp.upjs.sk/pub", > dir="releases", > ver=version, > arch=arch > ) > def geturl(self, url): > if "://" not in url: > url = os.path.join(os.path.dirname(cmd_line['ks']), url) > return urllib2.urlopen(url).read() > def package_update(self, distro, version): > distro_packages = dict( > fc = ["gdisk"], > el = ["epel-release"] > ) > group_packages = dict( > desktop = 'desktop.pkgs' > ) > print "%packages --ignoremissing" > print "\n".join(distro_packages.get(distro)) > if self.cmd_line_packages: > for pkg in self.cmd_line_packages.split(','): > if pkg in group_packages: > print self.geturl(group_packages[pkg]) > else: > print pkg > print "%end" > >def lang(lang): > if not lang: > return > langs = dict( > en = "en_US", > sk = "sk_SK", > cs = "cs_CZ" > ) > if "_" not in lang and lang in langs: > lang = langs[lang] > if "." not in lang: > lang += ".UTF-8" > print "lang", lang > >if "text" in cmd_line: > print "text" >autopartition( > cmd_line.get('disk') or cmd_line.get('disks'), > cmd_line.get('part') >) >repocfg = repocfg_class() >repocfg.repo_update(distro[:2], int(distro[2:]), arch) >repocfg.package_update(distro[:2], int(distro[2:])) >lang(cmd_line.get('lang')) >%end > >%post --interpreter /bin/bash >cd /etc/yum.repos.d >#wget -q http://158.197.16.66/pub/yum/yum.repos.d/salstar.repo >if grep -q -E '^(CentOS|Red|Scientific)' /etc/redhat-release; then > distro="-el" >else > distro="-fedora" >fi >cat > /etc/yum.repos.d/salstar.repo << KSEOF >[salstar.sk] >name=Salstar.sk \$releasever - \$basearch - Base >#baseurl=http://ftp.upjs.sk/pub/users/sal/Fedora/\$releasever/ >mirrorlist=http://www.salstar.sk/download/mirrors/salstar$distro >gpgkey=http://www.salstar.sk/pub/sagator/SAGATOR-GPG-KEY >gpgcheck=1 >enabled=1 >metadata_expire=1 > >[salstar.sk-test] >name=Salstar.sk \$releasever - \$basearch - Testing >mirrorlist=http://www.salstar.sk/download/mirrors/salstar$distro-testing >gpgkey=http://www.salstar.sk/pub/sagator/SAGATOR-GPG-KEY >gpgcheck=1 >enabled=0 >metadata_expire=1 > >[salstar.sk-builder] >name=builder.salstar.sk >baseurl=http://builder.salstar.sk/local/\$releasever$distro/\$basearch/ >gpgkey=http://www.salstar.sk/pub/sagator/SAGATOR-GPG-KEY >gpgcheck=0 >enabled=0 >metadata_expire=1 >KSEOF >cd /etc/pki/rpm-gpg >#wget -q http://158.197.16.66/pub/sagator/SAGATOR-GPG-KEY >cat > /etc/pki/rpm-gpg/SAGATOR-GPG-KEY << KSEOF >-----BEGIN PGP PUBLIC KEY BLOCK----- >Version: GnuPG v1.4.6 (GNU/Linux) > >mQGiBEWSfqgRBADu/silyFvlgwCzsu8Ha/llSd4MidiYIeWO8vLszSJn6kVo+xbF >hDlj/UXHQVwp/Q6pqrrNxucJSFaE/qWi6KuZ4XqN2xWyUAjSCJ0BiUJyoTD9NOg3 >yXyzXVLRklHaeOUdNF7e376Vfwsgix1wsehBh66vtyX1znDfWPcqfAZkpwCgsw95 >2f/9qBYhCM61Nd/jFe6HbW0EANmlw/CIS+QNCQQPntXbL2rGD80VLXK6W+yIMuPu >bkSn1PJpeO4BBjOynVqAuW4bERm5gSPDxBqE5vD9Ef8pqsoUHRIVTyj1Z2I1JbXn >OjbUZmFcLdqVNNHNRu3Bkb8YLD3qdtG6CHG6CfowYXZfdaTVgyYIcLiStGNNKaXI >omJQA/9YFv2xvP82xykZvHqx0hnn/NXFrSn+9TJGdDKOo/6/6AA6BwXRBwjHG1x2 >1CCIbnTOmoDeBw5+hpVtLnACannT6VnNvZ+Zm+qoMBZ/E+2m6MkkywyP7oUIsxLp >7FnZHd/e6FGpgzup55mZboAgth/l4+w1ztF1aCGHu6ATsR3VWLQpSmFuIE9ORFJF >SiAoU0FHQVRPUikgPG9uZHJlampAc2Fsc3Rhci5zaz6IYAQTEQIAIAUCRZJ+qAIb >AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEAiqUAZrgi/nW/QAoJfsGDX8h6WH >JqwZbPlWrR9FRP8ZAJ94pSLvMM6rfXlMbeOejfvFcdwc8w== >=R77L >-----END PGP PUBLIC KEY BLOCK----- >KSEOF >mkdir -p /root/.ssh >echo 'from="work.salstar.sk,158.197.240.41" ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAou3n+SuHVsuM5QXAKnIKilPHnJdKm/KP31Ho2VahJIC7mK0+snbXZYXeQmnwYvqQaDVCl8p0ANMonbs189t+RdBZ86Yq6/boc7zhyrj3gqzflsjyGWp5Gfo2AGQ9pgW3JMHefHMMXqF2uB9pT7PRL873gGfMG1WE3W+loFpDYPgg5TQvDifDP+cnlEdT/30JROFBbJ6sJro5la+7vZT/Yd9JOyNSvjizSsqLyva/t1zhQ2Bb37xGJOgVoRc1Hj+fYe1+jaD2ebtGWWIykvfIb33tpoBg3KkN01rrniTiVD8t1yNPGxc9VecqJoK5QJOCZ6zpjeFtvmiZwdd9bgfznQ== ondrejj@work.salstar.sk' >> /root/.ssh/authorized_keys >#chkconfig network on >#chkconfig postfix on >if [ "$distro" = "fedora" ]; then > GRUB_MODULES="part_gpt part_msdos raid mdraid09 mdraid1x" > if [ -e /sys/block/vdb ]; then > GRUB_HD=/dev/vd > fi > if [ -e /sys/block/sdb ]; then > GRUB_HD=/dev/sd > fi > if [ "$GRUB_HD" ]; then > echo "Configuring grub2 on $GRUB_HD*" > /sbin/grub2-install --modules="$GRUB_MODULES" ${GRUB_HD}b > /sbin/grub2-install --modules="$GRUB_MODULES" ${GRUB_HD}a > echo "GRUB_PRELOAD_MODULES='$GRUB_MODULES'" >> /etc/default/grub > fi >> /root/kslog >else # distro=el > if [ -e /sys/block/vdb -o -e /sys/block/sdb ]; then > echo -e 'root (hd0,0)\nsetup (hd0)' \ > | grub --device-map=/boot/grub/device.map > echo -e 'root (hd1,0)\nsetup (hd1)' \ > | grub --device-map=/boot/grub/device.map > fi >fi >sync >%end > >%include /tmp/salstar.ks > >%packages --nobase >%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 869171
:
631917
|
631918
|
631919
| 631920 |
631921
|
631922
|
631923
|
631924
|
631925
|
631926
|
631927
|
631928
|
631929
|
631930
|
631931