Hi, I have one volume group /dev/vgMine with one logical volume /dev/vgMine/lvMine and I have troubles seeing these devices in Anaconda storage module. E.g. this simple program does not list them: <imports omitted> platform = pyanaconda.platform.getPlatform(None) storage = pyanaconda.storage.Storage(platform=platform) storage.devicetree.populate() print storage.vgs, storage.lvs --> [] [] print storage.devices -> neither vgMine nor lvMine is there I am pretty sure I am doing something wrong, I'd bet you test such basic cases. I'm using anaconda-18.2-1.fc18. You can see storage log attached. It seems /dev/sda1 is correctly detected as lvmpv, but its vgName = None and vgUUID = None. vgMine is not added to the device tree and later lvMine is thrown away, because it misses vgMine. Jan
04:16:50,335 DEBUG storage: registered device format class BIOSBoot as biosboot 04:16:50,343 DEBUG storage: registered device format class MultipathMember as multipath_member 04:16:50,344 DEBUG storage: registered device format class LVMPhysicalVolume as lvmpv 04:16:50,345 DEBUG storage: registered device format class SwapSpace as swap 04:16:50,374 DEBUG storage: registered device format class Ext2FS as ext2 04:16:50,381 DEBUG storage: registered device format class Ext3FS as ext3 04:16:50,381 DEBUG storage: registered device format class Ext4FS as ext4 04:16:50,381 DEBUG storage: registered device format class FATFS as vfat 04:16:50,381 DEBUG storage: registered device format class EFIFS as efi 04:16:50,382 DEBUG storage: registered device format class BTRFS as btrfs 04:16:50,382 DEBUG storage: registered device format class GFS2 as gfs2 04:16:50,382 DEBUG storage: registered device format class JFS as jfs 04:16:50,382 DEBUG storage: registered device format class ReiserFS as reiserfs 04:16:50,390 DEBUG storage: registered device format class XFS as xfs 04:16:50,390 DEBUG storage: registered device format class HFS as hfs 04:16:50,390 DEBUG storage: registered device format class AppleBootstrapFS as appleboot 04:16:50,391 DEBUG storage: registered device format class HFSPlus as hfs+ 04:16:50,391 DEBUG storage: registered device format class NTFS as ntfs 04:16:50,391 DEBUG storage: registered device format class NFS as nfs 04:16:50,391 DEBUG storage: registered device format class NFSv4 as nfs4 04:16:50,402 DEBUG storage: registered device format class Iso9660FS as iso9660 04:16:50,403 DEBUG storage: registered device format class NoDevFS as nodev 04:16:50,409 DEBUG storage: registered device format class DevPtsFS as devpts 04:16:50,410 DEBUG storage: registered device format class ProcFS as proc 04:16:50,410 DEBUG storage: registered device format class SysFS as sysfs 04:16:50,423 DEBUG storage: registered device format class TmpFS as tmpfs 04:16:50,423 DEBUG storage: registered device format class BindFS as bind 04:16:50,430 DEBUG storage: registered device format class SELinuxFS as selinuxfs 04:16:50,430 DEBUG storage: registered device format class USBFS as usbfs 04:16:50,430 DEBUG storage: registered device format class PPCPRePBoot as prepboot 04:16:50,443 DEBUG storage: registered device format class DMRaidMember as dmraidmember 04:16:50,644 DEBUG storage: registered device format class LUKS as luks 04:16:50,652 DEBUG storage: registered device format class DiskLabel as disklabel 04:16:50,655 DEBUG storage: registered device format class MDRaidMember as mdmember 04:16:50,791 INFO storage: not going to create backup copy of non-existent /etc/mdadm.conf 04:16:50,800 INFO storage: not going to create backup copy of non-existent /etc/multipath.conf 04:16:50,800 INFO storage: DeviceTree.populate: ignoredDisks is [] ; exclusiveDisks is [] 04:16:54,310 DEBUG storage: MultipathTopology._build_topology: 04:16:54,312 DEBUG storage: /etc/multipath.conf contents: 04:16:54,315 DEBUG storage: # multipath.conf written by anaconda 04:16:54,317 DEBUG storage: 04:16:54,318 DEBUG storage: defaults { 04:16:54,318 DEBUG storage: user_friendly_names yes 04:16:54,318 DEBUG storage: } 04:16:54,318 DEBUG storage: blacklist { 04:16:54,319 DEBUG storage: devnode "^(ram|raw|loop|fd|md|dm-|sr|scd|st)[0-9]*" 04:16:54,319 DEBUG storage: devnode "^hd[a-z]" 04:16:54,319 DEBUG storage: devnode "^dcssblk[0-9]*" 04:16:54,319 DEBUG storage: device { 04:16:54,319 DEBUG storage: vendor "DGC" 04:16:54,319 DEBUG storage: product "LUNZ" 04:16:54,320 DEBUG storage: } 04:16:54,327 DEBUG storage: device { 04:16:54,327 DEBUG storage: vendor "IBM" 04:16:54,328 DEBUG storage: product "S/390.*" 04:16:54,328 DEBUG storage: } 04:16:54,330 DEBUG storage: # don't count normal SATA devices as multipaths 04:16:54,332 DEBUG storage: device { 04:16:54,335 DEBUG storage: vendor "ATA" 04:16:54,337 DEBUG storage: } 04:16:54,340 DEBUG storage: # don't count 3ware devices as multipaths 04:16:54,342 DEBUG storage: device { 04:16:54,345 DEBUG storage: vendor "3ware" 04:16:54,347 DEBUG storage: } 04:16:54,350 DEBUG storage: device { 04:16:54,352 DEBUG storage: vendor "AMCC" 04:16:54,355 DEBUG storage: } 04:16:54,357 DEBUG storage: # nor highpoint devices 04:16:54,360 DEBUG storage: device { 04:16:54,363 DEBUG storage: vendor "HPT" 04:16:54,365 DEBUG storage: } 04:16:54,367 DEBUG storage: } 04:16:54,369 DEBUG storage: multipaths { 04:16:54,373 DEBUG storage: } 04:16:54,375 DEBUG storage: (end of /etc/multipath.conf) 04:16:54,502 INFO storage: MultipathTopology: found singlepath device: sda 04:16:54,509 INFO storage: MultipathTopology: found non-disk device: sda1 04:16:54,509 INFO storage: MultipathTopology: found singlepath device: sdb 04:16:54,510 INFO storage: MultipathTopology: found non-disk device: sdb1 04:16:54,510 INFO storage: MultipathTopology: found non-disk device: sr0 04:16:54,510 INFO storage: MultipathTopology: found singlepath device: sdc 04:16:54,511 INFO storage: MultipathTopology: found non-disk device: sdc1 04:16:54,511 INFO storage: MultipathTopology: found singlepath device: vda 04:16:54,511 INFO storage: MultipathTopology: found non-disk device: vda1 04:16:54,512 INFO storage: MultipathTopology: found singlepath device: loop0 04:16:54,512 INFO storage: MultipathTopology: found singlepath device: loop1 04:16:54,512 INFO storage: MultipathTopology: found singlepath device: loop2 04:16:54,513 INFO storage: MultipathTopology: found singlepath device: loop3 04:16:54,529 INFO storage: MultipathTopology: found singlepath device: loop4 04:16:54,529 INFO storage: MultipathTopology: found singlepath device: loop5 04:16:54,533 INFO storage: MultipathTopology: found singlepath device: loop6 04:16:54,534 INFO storage: MultipathTopology: found singlepath device: loop7 04:16:54,537 INFO storage: MultipathTopology: found singlepath device: dm-0 04:16:54,538 INFO storage: devices to scan: ['sda', 'sda1', 'sdb', 'sdb1', 'sr0', 'sdc', 'sdc1', 'vda', 'vda1', 'loop0', 'loop1', 'loop2', 'loop3', 'loop4', 'loop5', 'loop6', 'loop7', 'dm-0'] 04:16:54,615 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001', 'DEVNAME': 'sda', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda', 'DEVTYPE': 'disk', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', 'ID_SERIAL_SHORT': 'QM00001', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '0', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_ATA_SMART_IS_AVAILABLE': '1', 'UDISKS_PARTITION_TABLE': '1', 'UDISKS_PARTITION_TABLE_COUNT': '1', 'UDISKS_PARTITION_TABLE_SCHEME': 'gpt', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '601734', 'name': 'sda', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda'} ; name: sda ; 04:16:54,618 INFO storage: scanning sda (/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda)... 04:16:54,639 DEBUG storage: DeviceTree.getDeviceByName: name: sda ; 04:16:54,659 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:54,679 DEBUG storage: DeviceTree.addUdevDiskDevice: name: sda ; 04:16:54,686 INFO storage: sda is a disk 04:16:54,689 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:54,717 DEBUG storage: DiskDevice._setFormat: sda ; current: None ; type: None ; 04:16:54,720 INFO storage: added disk sda (id 0) to device tree 04:16:54,722 DEBUG storage: looking up parted Device: /dev/sda 04:16:54,924 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sda ; 04:16:54,953 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sda ; label_type: None ; 04:16:54,959 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:54,984 DEBUG storage: DiskDevice.setup: sda ; status: True ; controllable: True ; orig: False ; 04:16:55,020 DEBUG storage: DiskLabel.__init__: device: /dev/sda ; labelType: gpt ; exists: True ; 04:16:55,074 DEBUG storage: Set pmbr_boot on parted.Disk instance -- type: gpt primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 128 partitions: [<parted.partition.Partition object at 0x292b050>] device: <parted.device.Device object at 0x2921e10> PedDisk: <_ped.Disk object at 0x2926fc8> 04:16:55,078 DEBUG storage: getFormat('disklabel') returning DiskLabel instance 04:16:55,187 DEBUG storage: DiskDevice._setFormat: sda ; current: None ; type: disklabel ; 04:16:55,343 INFO storage: got device: DiskDevice instance (0x28a7110) -- name = sda status = True kids = 0 id = 0 parents = [] uuid = None size = 1024.0 format = existing gpt disklabel major = 8 minor = 0 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda partedDevice = parted.Device instance -- model: ATA QEMU HARDDISK path: /dev/sda type: 1 sectorSize: 512 physicalSectorSize: 512 length: 2097152 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 2 did: 0 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7200> target size = 0 path = /dev/sda format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x29082d0> 04:16:55,498 INFO storage: got format: DiskLabel instance (0x2908390) -- type = disklabel name = partition table (GPT) status = False device = /dev/sda uuid = None exists = True options = None supported = False formattable = True resizable = False type = gpt partition count = 1 sectorSize = 512 align_offset = 0 align_grain = 2048 partedDisk = parted.Disk instance -- type: gpt primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 128 partitions: [<parted.partition.Partition object at 0x292b050>] device: <parted.device.Device object at 0x2921e10> PedDisk: <_ped.Disk object at 0x2926fc8> origPartedDisk = <parted.disk.Disk object at 0x292b490> partedDevice = parted.Device instance -- model: ATA QEMU HARDDISK path: /dev/sda type: 1 sectorSize: 512 physicalSectorSize: 512 length: 2097152 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 2 did: 0 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7950> 04:16:55,534 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1 /dev/disk/by-partuuid/ac8f2000-2500-40aa-b312-d2c35479bf7f', 'DEVNAME': 'sda1', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1', 'DEVTYPE': 'partition', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_FS_TYPE': 'LVM2_member', 'ID_FS_USAGE': 'raid', 'ID_FS_UUID': 'fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj', 'ID_FS_UUID_ENC': 'fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj', 'ID_FS_VERSION': 'LVM2 001', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_ENTRY_DISK': '8:0', 'ID_PART_ENTRY_NUMBER': '1', 'ID_PART_ENTRY_OFFSET': '2048', 'ID_PART_ENTRY_SCHEME': 'gpt', 'ID_PART_ENTRY_SIZE': '2093056', 'ID_PART_ENTRY_TYPE': 'ebd0a0a2-b9e5-4433-87c0-68b6b72699c7', 'ID_PART_ENTRY_UUID': 'ac8f2000-2500-40aa-b312-d2c35479bf7f', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', 'ID_SERIAL_SHORT': 'QM00001', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '1', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_PARTITION': '1', 'UDISKS_PARTITION_ALIGNMENT_OFFSET': '0', 'UDISKS_PARTITION_NUMBER': '1', 'UDISKS_PARTITION_OFFSET': '1048576', 'UDISKS_PARTITION_SCHEME': 'gpt', 'UDISKS_PARTITION_SIZE': '1071644672', 'UDISKS_PARTITION_SLAVE': '/sys/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda', 'UDISKS_PARTITION_TYPE': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7', 'UDISKS_PARTITION_UUID': 'AC8F2000-2500-40AA-B312-D2C35479BF7F', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '601778', 'name': 'sda1', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1', '/dev/disk/by-partuuid/ac8f2000-2500-40aa-b312-d2c35479bf7f'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1'} ; name: sda1 ; 04:16:55,542 INFO storage: scanning sda1 (/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1)... 04:16:55,564 DEBUG storage: DeviceTree.getDeviceByName: name: sda1 ; 04:16:55,591 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:55,603 INFO storage: sda1 is a partition 04:16:55,624 DEBUG storage: DeviceTree.addUdevPartitionDevice: name: sda1 ; 04:16:55,656 DEBUG storage: DeviceTree.getDeviceByName: name: sda ; 04:16:55,689 DEBUG storage: DeviceTree.getDeviceByName returned existing 1024MB disk sda (0) with existing gpt disklabel 04:16:55,719 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: sda ; 04:16:55,749 DEBUG storage: PartitionDevice._setFormat: sda1 ; 04:16:55,762 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:55,784 DEBUG storage: PartitionDevice._setFormat: sda1 ; current: None ; type: None ; 04:16:55,791 DEBUG storage: looking up parted Partition: /dev/sda1 04:16:55,813 DEBUG storage: PartitionDevice.probe: sda1 ; exists: True ; 04:16:55,844 DEBUG storage: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 1 ; 04:16:55,871 DEBUG storage: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 10 ; 04:16:55,900 DEBUG storage: PartitionDevice.getFlag: path: /dev/sda1 ; flag: 12 ; 04:16:55,909 INFO storage: added partition sda1 (id 1) to device tree 04:16:55,932 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sda1 ; 04:16:55,968 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sda1 ; label_type: None ; 04:16:56,001 DEBUG storage: LVMPhysicalVolume.__init__: 04:16:56,010 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:16:56,011 DEBUG storage: device sda1 does not contain a disklabel 04:16:56,011 WARN storage: PV sda1 has no vg_name 04:16:56,011 WARN storage: PV sda1 has no vg_uuid 04:16:56,012 WARN storage: PV sda1 has no pe_start 04:16:56,012 INFO storage: type detected on 'sda1' is 'LVM2_member' 04:16:56,056 DEBUG storage: LVMPhysicalVolume.__init__: device: /dev/sda1 ; serial: QM00001 ; uuid: fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj ; exists: True ; label: None ; 04:16:56,062 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:16:56,084 DEBUG storage: PartitionDevice._setFormat: sda1 ; 04:16:56,112 DEBUG storage: PartitionDevice._setFormat: sda1 ; current: None ; type: lvmpv ; 04:16:56,138 DEBUG storage: DeviceTree.handleUdevLVMPVFormat: type: lvmpv ; name: sda1 ; 04:16:56,150 DEBUG storage: looking up parted Device: /dev/sda1 04:16:56,367 INFO storage: got device: PartitionDevice instance (0x2908490) -- name = sda1 status = True kids = 0 id = 1 parents = ['existing 1024MB disk sda (0) with existing gpt disklabel'] uuid = None size = 1022.0 format = existing lvmpv major = 8 minor = 1 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1 partedDevice = parted.Device instance -- model: Unknown path: /dev/sda1 type: 0 sectorSize: 512 physicalSectorSize: 512 length: 2093056 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 14647 did: 26210 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7a70> target size = 0 path = /dev/sda1 format args = [] originalFormat = None grow = None max size = 0 bootable = None part type = 0 primary = None partedPartition = parted.Partition instance -- disk: <parted.disk.Disk object at 0x2921ed0> fileSystem: None number: 1 path: /dev/sda1 type: 0 name: active: True busy: False geometry: <parted.geometry.Geometry object at 0x292b0d0> PedPartition: <_ped.Partition object at 0x2925530> disk = existing 1024MB disk sda (0) with existing gpt disklabel start = 2048 end = 2095103 length = 2093056 flags = 04:16:56,381 INFO storage: got format: LVMPhysicalVolume instance (0x292b850) -- type = lvmpv name = physical volume (LVM) status = None device = /dev/sda1 uuid = fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj exists = True options = None supported = True formattable = True resizable = False vgName = None vgUUID = None peStart = 1.0 04:16:56,405 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00002', 'DEVNAME': 'sdb', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb', 'DEVTYPE': 'disk', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00002', 'ID_SERIAL_SHORT': 'QM00002', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '16', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_ATA_SMART_IS_AVAILABLE': '1', 'UDISKS_PARTITION_TABLE': '1', 'UDISKS_PARTITION_TABLE_COUNT': '1', 'UDISKS_PARTITION_TABLE_SCHEME': 'gpt', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '602113', 'name': 'sdb', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00002'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb'} ; name: sdb ; 04:16:56,413 INFO storage: scanning sdb (/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb)... 04:16:56,436 DEBUG storage: DeviceTree.getDeviceByName: name: sdb ; 04:16:56,469 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:56,499 DEBUG storage: DeviceTree.addUdevDiskDevice: name: sdb ; 04:16:56,513 INFO storage: sdb is a disk 04:16:56,513 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:56,537 DEBUG storage: DiskDevice._setFormat: sdb ; current: None ; type: None ; 04:16:56,549 INFO storage: added disk sdb (id 2) to device tree 04:16:56,550 DEBUG storage: looking up parted Device: /dev/sdb 04:16:56,660 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sdb ; 04:16:56,700 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sdb ; label_type: None ; 04:16:56,700 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:56,744 DEBUG storage: DiskDevice.setup: sdb ; status: True ; controllable: True ; orig: False ; 04:16:56,791 DEBUG storage: DiskLabel.__init__: device: /dev/sdb ; labelType: gpt ; exists: True ; 04:16:56,828 DEBUG storage: Set pmbr_boot on parted.Disk instance -- type: gpt primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 128 partitions: [<parted.partition.Partition object at 0x292bc50>] device: <parted.device.Device object at 0x292ba90> PedDisk: <_ped.Disk object at 0x292cc20> 04:16:56,840 DEBUG storage: getFormat('disklabel') returning DiskLabel instance 04:16:56,912 DEBUG storage: DiskDevice._setFormat: sdb ; current: None ; type: disklabel ; 04:16:57,091 INFO storage: got device: DiskDevice instance (0x2908450) -- name = sdb status = True kids = 0 id = 2 parents = [] uuid = None size = 1024.0 format = existing gpt disklabel major = 8 minor = 16 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb partedDevice = parted.Device instance -- model: ATA QEMU HARDDISK path: /dev/sdb type: 1 sectorSize: 512 physicalSectorSize: 512 length: 2097152 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 2 did: 1 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7b90> target size = 0 path = /dev/sdb format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x292b350> 04:16:57,263 INFO storage: got format: DiskLabel instance (0x292b390) -- type = disklabel name = partition table (GPT) status = False device = /dev/sdb uuid = None exists = True options = None supported = False formattable = True resizable = False type = gpt partition count = 1 sectorSize = 512 align_offset = 0 align_grain = 2048 partedDisk = parted.Disk instance -- type: gpt primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 128 partitions: [<parted.partition.Partition object at 0x292bc50>] device: <parted.device.Device object at 0x292ba90> PedDisk: <_ped.Disk object at 0x292cc20> origPartedDisk = <parted.disk.Disk object at 0x292be90> partedDevice = parted.Device instance -- model: ATA QEMU HARDDISK path: /dev/sdb type: 1 sectorSize: 512 physicalSectorSize: 512 length: 2097152 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 2 did: 1 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7cb0> 04:16:57,294 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00002-part1 /dev/disk/by-partuuid/60b1ca9f-d48c-41b9-828d-0052a3bb6214', 'DEVNAME': 'sdb1', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb/sdb1', 'DEVTYPE': 'partition', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_FS_TYPE': 'LVM2_member', 'ID_FS_USAGE': 'raid', 'ID_FS_UUID': 'dFJBiK-U7IL-JbUi-Ne9a-lfpH-2GM8-iJIl6t', 'ID_FS_UUID_ENC': 'dFJBiK-U7IL-JbUi-Ne9a-lfpH-2GM8-iJIl6t', 'ID_FS_VERSION': 'LVM2 001', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_ENTRY_DISK': '8:16', 'ID_PART_ENTRY_NUMBER': '1', 'ID_PART_ENTRY_OFFSET': '2048', 'ID_PART_ENTRY_SCHEME': 'gpt', 'ID_PART_ENTRY_SIZE': '2093056', 'ID_PART_ENTRY_TYPE': 'ebd0a0a2-b9e5-4433-87c0-68b6b72699c7', 'ID_PART_ENTRY_UUID': '60b1ca9f-d48c-41b9-828d-0052a3bb6214', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00002', 'ID_SERIAL_SHORT': 'QM00002', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '17', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_PARTITION': '1', 'UDISKS_PARTITION_ALIGNMENT_OFFSET': '0', 'UDISKS_PARTITION_NUMBER': '1', 'UDISKS_PARTITION_OFFSET': '1048576', 'UDISKS_PARTITION_SCHEME': 'gpt', 'UDISKS_PARTITION_SIZE': '1071644672', 'UDISKS_PARTITION_SLAVE': '/sys/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb', 'UDISKS_PARTITION_TYPE': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7', 'UDISKS_PARTITION_UUID': '60B1CA9F-D48C-41B9-828D-0052A3BB6214', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '602151', 'name': 'sdb1', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00002-part1', '/dev/disk/by-partuuid/60b1ca9f-d48c-41b9-828d-0052a3bb6214'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb/sdb1'} ; name: sdb1 ; 04:16:57,301 INFO storage: scanning sdb1 (/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb/sdb1)... 04:16:57,322 DEBUG storage: DeviceTree.getDeviceByName: name: sdb1 ; 04:16:57,348 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:57,360 INFO storage: sdb1 is a partition 04:16:57,381 DEBUG storage: DeviceTree.addUdevPartitionDevice: name: sdb1 ; 04:16:57,411 DEBUG storage: DeviceTree.getDeviceByName: name: sdb ; 04:16:57,448 DEBUG storage: DeviceTree.getDeviceByName returned existing 1024MB disk sdb (2) with existing gpt disklabel 04:16:57,480 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: sdb ; 04:16:57,509 DEBUG storage: PartitionDevice._setFormat: sdb1 ; 04:16:57,520 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:57,542 DEBUG storage: PartitionDevice._setFormat: sdb1 ; current: None ; type: None ; 04:16:57,552 DEBUG storage: looking up parted Partition: /dev/sdb1 04:16:57,574 DEBUG storage: PartitionDevice.probe: sdb1 ; exists: True ; 04:16:57,602 DEBUG storage: PartitionDevice.getFlag: path: /dev/sdb1 ; flag: 1 ; 04:16:57,631 DEBUG storage: PartitionDevice.getFlag: path: /dev/sdb1 ; flag: 10 ; 04:16:57,657 DEBUG storage: PartitionDevice.getFlag: path: /dev/sdb1 ; flag: 12 ; 04:16:57,668 INFO storage: added partition sdb1 (id 3) to device tree 04:16:57,704 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sdb1 ; 04:16:57,729 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sdb1 ; label_type: None ; 04:16:57,759 DEBUG storage: LVMPhysicalVolume.__init__: 04:16:57,769 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:16:57,770 DEBUG storage: device sdb1 does not contain a disklabel 04:16:57,770 WARN storage: PV sdb1 has no vg_name 04:16:57,770 WARN storage: PV sdb1 has no vg_uuid 04:16:57,771 WARN storage: PV sdb1 has no pe_start 04:16:57,771 INFO storage: type detected on 'sdb1' is 'LVM2_member' 04:16:57,814 DEBUG storage: LVMPhysicalVolume.__init__: device: /dev/sdb1 ; serial: QM00002 ; uuid: dFJBiK-U7IL-JbUi-Ne9a-lfpH-2GM8-iJIl6t ; exists: True ; label: None ; 04:16:57,814 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:16:57,840 DEBUG storage: PartitionDevice._setFormat: sdb1 ; 04:16:57,868 DEBUG storage: PartitionDevice._setFormat: sdb1 ; current: None ; type: lvmpv ; 04:16:57,897 DEBUG storage: DeviceTree.handleUdevLVMPVFormat: type: lvmpv ; name: sdb1 ; 04:16:57,908 DEBUG storage: looking up parted Device: /dev/sdb1 04:16:58,215 INFO storage: got device: PartitionDevice instance (0x2938150) -- name = sdb1 status = True kids = 0 id = 3 parents = ['existing 1024MB disk sdb (2) with existing gpt disklabel'] uuid = None size = 1022.0 format = existing lvmpv major = 8 minor = 17 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:1/0:0:1:0/block/sdb/sdb1 partedDevice = parted.Device instance -- model: Unknown path: /dev/sdb1 type: 0 sectorSize: 512 physicalSectorSize: 512 length: 2093056 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 0 did: 0 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7c20> target size = 0 path = /dev/sdb1 format args = [] originalFormat = None grow = None max size = 0 bootable = None part type = 0 primary = None partedPartition = parted.Partition instance -- disk: <parted.disk.Disk object at 0x292bb50> fileSystem: None number: 1 path: /dev/sdb1 type: 0 name: active: True busy: False geometry: <parted.geometry.Geometry object at 0x292bd10> PedPartition: <_ped.Partition object at 0x2925d70> disk = existing 1024MB disk sdb (2) with existing gpt disklabel start = 2048 end = 2095103 length = 2093056 flags = 04:16:58,224 INFO storage: got format: LVMPhysicalVolume instance (0x292b9d0) -- type = lvmpv name = physical volume (LVM) status = None device = /dev/sdb1 uuid = dFJBiK-U7IL-JbUi-Ne9a-lfpH-2GM8-iJIl6t exists = True options = None supported = True formattable = True resizable = False vgName = None vgUUID = None peStart = 1.0 04:16:58,247 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/cdrom /dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003', 'DEVNAME': 'sr0', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata3/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': '0.15.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:', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '602703', 'name': 'sr0', 'symlinks': ['/dev/cdrom', '/dev/disk/by-id/ata-QEMU_DVD-ROM_QM00003'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:0/1:0:0:0/block/sr0'} ; name: sr0 ; 04:16:58,260 INFO storage: scanning sr0 (/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:0/1:0:0:0/block/sr0)... 04:16:58,283 DEBUG storage: DeviceTree.getDeviceByName: name: sr0 ; 04:16:58,308 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:58,320 INFO storage: sr0 is a cdrom 04:16:58,342 DEBUG storage: DeviceTree.addUdevOpticalDevice: 04:16:58,350 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:58,371 DEBUG storage: OpticalDevice._setFormat: sr0 ; current: None ; type: None ; 04:16:58,379 INFO storage: added cdrom sr0 (id 4) to device tree 04:16:58,404 DEBUG storage: OpticalDevice.mediaPresent: sr0 ; status: True ; 04:16:58,435 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00004', 'DEVNAME': 'sdc', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc', 'DEVTYPE': 'disk', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00004', 'ID_SERIAL_SHORT': 'QM00004', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '32', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_ATA_SMART_IS_AVAILABLE': '1', 'UDISKS_PARTITION_TABLE': '1', 'UDISKS_PARTITION_TABLE_COUNT': '1', 'UDISKS_PARTITION_TABLE_SCHEME': 'gpt', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '602990', 'name': 'sdc', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00004'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc'} ; name: sdc ; 04:16:58,443 INFO storage: scanning sdc (/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc)... 04:16:58,464 DEBUG storage: DeviceTree.getDeviceByName: name: sdc ; 04:16:58,490 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:58,518 DEBUG storage: DeviceTree.addUdevDiskDevice: name: sdc ; 04:16:58,532 INFO storage: sdc is a disk 04:16:58,532 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:58,560 DEBUG storage: DiskDevice._setFormat: sdc ; current: None ; type: None ; 04:16:58,568 INFO storage: added disk sdc (id 5) to device tree 04:16:58,568 DEBUG storage: looking up parted Device: /dev/sdc 04:16:58,640 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sdc ; 04:16:58,684 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sdc ; label_type: None ; 04:16:58,684 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:58,724 DEBUG storage: DiskDevice.setup: sdc ; status: True ; controllable: True ; orig: False ; 04:16:58,764 DEBUG storage: DiskLabel.__init__: device: /dev/sdc ; labelType: gpt ; exists: True ; 04:16:58,793 DEBUG storage: Set pmbr_boot on parted.Disk instance -- type: gpt primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 128 partitions: [<parted.partition.Partition object at 0x2938690>] device: <parted.device.Device object at 0x29384d0> PedDisk: <_ped.Disk object at 0x293d680> 04:16:58,800 DEBUG storage: getFormat('disklabel') returning DiskLabel instance 04:16:58,839 DEBUG storage: DiskDevice._setFormat: sdc ; current: None ; type: disklabel ; 04:16:59,046 INFO storage: got device: DiskDevice instance (0x292b990) -- name = sdc status = True kids = 0 id = 5 parents = [] uuid = None size = 1024.0 format = existing gpt disklabel major = 8 minor = 32 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc partedDevice = parted.Device instance -- model: ATA QEMU HARDDISK path: /dev/sdc type: 1 sectorSize: 512 physicalSectorSize: 512 length: 2097152 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 3 did: 1 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7dd0> target size = 0 path = /dev/sdc format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x2938090> 04:16:59,247 INFO storage: got format: DiskLabel instance (0x2938250) -- type = disklabel name = partition table (GPT) status = False device = /dev/sdc uuid = None exists = True options = None supported = False formattable = True resizable = False type = gpt partition count = 1 sectorSize = 512 align_offset = 0 align_grain = 2048 partedDisk = parted.Disk instance -- type: gpt primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 128 partitions: [<parted.partition.Partition object at 0x2938690>] device: <parted.device.Device object at 0x29384d0> PedDisk: <_ped.Disk object at 0x293d680> origPartedDisk = <parted.disk.Disk object at 0x2938b50> partedDevice = parted.Device instance -- model: ATA QEMU HARDDISK path: /dev/sdc type: 1 sectorSize: 512 physicalSectorSize: 512 length: 2097152 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 3 did: 1 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7f80> 04:16:59,285 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00004-part1 /dev/disk/by-partuuid/e60aa721-884e-4cc8-b46f-878e631eb060', 'DEVNAME': 'sdc1', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc/sdc1', 'DEVTYPE': 'partition', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_FS_TYPE': 'LVM2_member', 'ID_FS_USAGE': 'raid', 'ID_FS_UUID': 'l064In-spro-kZNi-D1IS-kXa1-1gBt-12JqI0', 'ID_FS_UUID_ENC': 'l064In-spro-kZNi-D1IS-kXa1-1gBt-12JqI0', 'ID_FS_VERSION': 'LVM2 001', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_ENTRY_DISK': '8:32', 'ID_PART_ENTRY_NUMBER': '1', 'ID_PART_ENTRY_OFFSET': '2048', 'ID_PART_ENTRY_SCHEME': 'gpt', 'ID_PART_ENTRY_SIZE': '2093056', 'ID_PART_ENTRY_TYPE': 'ebd0a0a2-b9e5-4433-87c0-68b6b72699c7', 'ID_PART_ENTRY_UUID': 'e60aa721-884e-4cc8-b46f-878e631eb060', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00004', 'ID_SERIAL_SHORT': 'QM00004', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '33', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_PARTITION': '1', 'UDISKS_PARTITION_ALIGNMENT_OFFSET': '0', 'UDISKS_PARTITION_NUMBER': '1', 'UDISKS_PARTITION_OFFSET': '1048576', 'UDISKS_PARTITION_SCHEME': 'gpt', 'UDISKS_PARTITION_SIZE': '1071644672', 'UDISKS_PARTITION_SLAVE': '/sys/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc', 'UDISKS_PARTITION_TYPE': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7', 'UDISKS_PARTITION_UUID': 'E60AA721-884E-4CC8-B46F-878E631EB060', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '603063', 'name': 'sdc1', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00004-part1', '/dev/disk/by-partuuid/e60aa721-884e-4cc8-b46f-878e631eb060'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc/sdc1'} ; name: sdc1 ; 04:16:59,293 INFO storage: scanning sdc1 (/devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc/sdc1)... 04:16:59,313 DEBUG storage: DeviceTree.getDeviceByName: name: sdc1 ; 04:16:59,339 DEBUG storage: DeviceTree.getDeviceByName returned None 04:16:59,350 INFO storage: sdc1 is a partition 04:16:59,371 DEBUG storage: DeviceTree.addUdevPartitionDevice: name: sdc1 ; 04:16:59,399 DEBUG storage: DeviceTree.getDeviceByName: name: sdc ; 04:16:59,429 DEBUG storage: DeviceTree.getDeviceByName returned existing 1024MB disk sdc (5) with existing gpt disklabel 04:16:59,459 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: sdc ; 04:16:59,489 DEBUG storage: PartitionDevice._setFormat: sdc1 ; 04:16:59,499 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:16:59,524 DEBUG storage: PartitionDevice._setFormat: sdc1 ; current: None ; type: None ; 04:16:59,531 DEBUG storage: looking up parted Partition: /dev/sdc1 04:16:59,553 DEBUG storage: PartitionDevice.probe: sdc1 ; exists: True ; 04:16:59,594 DEBUG storage: PartitionDevice.getFlag: path: /dev/sdc1 ; flag: 1 ; 04:16:59,620 DEBUG storage: PartitionDevice.getFlag: path: /dev/sdc1 ; flag: 10 ; 04:16:59,651 DEBUG storage: PartitionDevice.getFlag: path: /dev/sdc1 ; flag: 12 ; 04:16:59,662 INFO storage: added partition sdc1 (id 6) to device tree 04:16:59,684 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sdc1 ; 04:16:59,709 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sdc1 ; label_type: None ; 04:16:59,738 DEBUG storage: LVMPhysicalVolume.__init__: 04:16:59,749 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:16:59,750 DEBUG storage: device sdc1 does not contain a disklabel 04:16:59,750 WARN storage: PV sdc1 has no vg_name 04:16:59,750 WARN storage: PV sdc1 has no vg_uuid 04:16:59,751 WARN storage: PV sdc1 has no pe_start 04:16:59,751 INFO storage: type detected on 'sdc1' is 'LVM2_member' 04:16:59,782 DEBUG storage: LVMPhysicalVolume.__init__: device: /dev/sdc1 ; serial: QM00004 ; uuid: l064In-spro-kZNi-D1IS-kXa1-1gBt-12JqI0 ; exists: True ; label: None ; 04:16:59,783 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:16:59,814 DEBUG storage: PartitionDevice._setFormat: sdc1 ; 04:16:59,862 DEBUG storage: PartitionDevice._setFormat: sdc1 ; current: None ; type: lvmpv ; 04:16:59,892 DEBUG storage: DeviceTree.handleUdevLVMPVFormat: type: lvmpv ; name: sdc1 ; 04:16:59,903 DEBUG storage: looking up parted Device: /dev/sdc1 04:17:00,292 INFO storage: got device: PartitionDevice instance (0x2938a90) -- name = sdc1 status = True kids = 0 id = 6 parents = ['existing 1024MB disk sdc (5) with existing gpt disklabel'] uuid = None size = 1022.0 format = existing lvmpv major = 8 minor = 33 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata3/host1/target1:0:1/1:0:1:0/block/sdc/sdc1 partedDevice = parted.Device instance -- model: Unknown path: /dev/sdc1 type: 0 sectorSize: 512 physicalSectorSize: 512 length: 2093056 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 32624 did: 0 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7ef0> target size = 0 path = /dev/sdc1 format args = [] originalFormat = None grow = None max size = 0 bootable = None part type = 0 primary = None partedPartition = parted.Partition instance -- disk: <parted.disk.Disk object at 0x2938590> fileSystem: None number: 1 path: /dev/sdc1 type: 0 name: active: True busy: False geometry: <parted.geometry.Geometry object at 0x2938790> PedPartition: <_ped.Partition object at 0x2925e90> disk = existing 1024MB disk sdc (5) with existing gpt disklabel start = 2048 end = 2095103 length = 2093056 flags = 04:17:00,304 INFO storage: got format: LVMPhysicalVolume instance (0x2938490) -- type = lvmpv name = physical volume (LVM) status = None device = /dev/sdc1 uuid = l064In-spro-kZNi-D1IS-kXa1-1gBt-12JqI0 exists = True options = None supported = True formattable = True resizable = False vgName = None vgUUID = None peStart = 1.0 04:17:00,325 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'vda', 'DEVPATH': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda', 'DEVTYPE': 'disk', 'ID_PART_TABLE_TYPE': 'dos', 'MAJOR': '252', 'MINOR': '0', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_PARTITION_TABLE': '1', 'UDISKS_PARTITION_TABLE_COUNT': '1', 'UDISKS_PARTITION_TABLE_SCHEME': 'mbr', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '644113', 'name': 'vda', 'symlinks': [], 'sysfs_path': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda'} ; name: vda ; 04:17:00,327 INFO storage: scanning vda (/devices/pci0000:00/0000:00:04.0/virtio1/block/vda)... 04:17:00,359 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; 04:17:00,389 DEBUG storage: DeviceTree.getDeviceByName returned None 04:17:00,417 DEBUG storage: DeviceTree.addUdevDiskDevice: name: vda ; 04:17:00,433 INFO storage: vda is a disk 04:17:00,435 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:17:00,456 DEBUG storage: DiskDevice._setFormat: vda ; current: None ; type: None ; 04:17:00,465 INFO storage: added disk vda (id 7) to device tree 04:17:00,467 DEBUG storage: looking up parted Device: /dev/vda 04:17:00,534 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: vda ; 04:17:00,571 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: vda ; label_type: None ; 04:17:00,581 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:17:00,601 DEBUG storage: DiskDevice.setup: vda ; status: True ; controllable: True ; orig: False ; 04:17:00,642 DEBUG storage: DiskLabel.__init__: device: /dev/vda ; labelType: gpt ; exists: True ; 04:17:00,657 DEBUG storage: Did not set pmbr_boot on parted.Disk instance -- type: msdos primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 4 partitions: [<parted.partition.Partition object at 0x2939110>] device: <parted.device.Device object at 0x2938ed0> PedDisk: <_ped.Disk object at 0x293fb00> 04:17:00,659 DEBUG storage: getFormat('disklabel') returning DiskLabel instance 04:17:00,740 DEBUG storage: DiskDevice._setFormat: vda ; current: None ; type: disklabel ; 04:17:00,832 INFO storage: got device: DiskDevice instance (0x2938390) -- name = vda status = True kids = 0 id = 7 parents = [] uuid = None size = 8000.0 format = existing msdos disklabel 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: 16384000 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 0 did: 0 busy: True hardwareGeometry: (16253, 16, 63) biosGeometry: (1019, 255, 63) PedDevice: <_ped.Device object at 0x293a0e0> target size = 0 path = /dev/vda format args = [] originalFormat = None removable = False partedDevice = <parted.device.Device object at 0x29382d0> 04:17:00,925 INFO storage: got format: DiskLabel instance (0x2938d50) -- type = disklabel name = partition table (MSDOS) status = False device = /dev/vda uuid = None exists = True options = None supported = False formattable = True resizable = False type = msdos partition count = 1 sectorSize = 512 align_offset = 0 align_grain = 2048 partedDisk = parted.Disk instance -- type: msdos primaryPartitionCount: 1 lastPartitionNumber: 1 maxPrimaryPartitionCount: 4 partitions: [<parted.partition.Partition object at 0x2939110>] device: <parted.device.Device object at 0x2938ed0> PedDisk: <_ped.Disk object at 0x293fb00> origPartedDisk = <parted.disk.Disk object at 0x2939290> partedDevice = parted.Device instance -- model: Virtio Block Device path: /dev/vda type: 15 sectorSize: 512 physicalSectorSize: 512 length: 16384000 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 0 did: 0 busy: True hardwareGeometry: (16253, 16, 63) biosGeometry: (1019, 255, 63) PedDevice: <_ped.Device object at 0x293a290> 04:17:00,955 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-uuid/7abcd4ed-50b4-4e16-9a90-832cc1c92ffe', 'DEVNAME': 'vda1', 'DEVPATH': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1', 'DEVTYPE': 'partition', 'ID_FS_TYPE': 'ext4', 'ID_FS_USAGE': 'filesystem', 'ID_FS_UUID': '7abcd4ed-50b4-4e16-9a90-832cc1c92ffe', 'ID_FS_UUID_ENC': '7abcd4ed-50b4-4e16-9a90-832cc1c92ffe', 'ID_FS_VERSION': '1.0', 'ID_PART_ENTRY_DISK': '252:0', 'ID_PART_ENTRY_FLAGS': '0x80', 'ID_PART_ENTRY_NUMBER': '1', 'ID_PART_ENTRY_OFFSET': '2048', 'ID_PART_ENTRY_SCHEME': 'dos', 'ID_PART_ENTRY_SIZE': '16381952', 'ID_PART_ENTRY_TYPE': '0x83', 'ID_PART_TABLE_TYPE': 'dos', 'MAJOR': '252', 'MINOR': '1', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_PARTITION': '1', 'UDISKS_PARTITION_ALIGNMENT_OFFSET': '0', 'UDISKS_PARTITION_FLAGS': 'boot', 'UDISKS_PARTITION_NUMBER': '1', 'UDISKS_PARTITION_OFFSET': '1048576', 'UDISKS_PARTITION_SCHEME': 'mbr', 'UDISKS_PARTITION_SIZE': '8387559424', 'UDISKS_PARTITION_SLAVE': '/sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda', 'UDISKS_PARTITION_TYPE': '0x83', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '644161', 'name': 'vda1', 'symlinks': ['/dev/disk/by-uuid/7abcd4ed-50b4-4e16-9a90-832cc1c92ffe'], 'sysfs_path': '/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1'} ; name: vda1 ; 04:17:00,965 INFO storage: scanning vda1 (/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1)... 04:17:00,988 DEBUG storage: DeviceTree.getDeviceByName: name: vda1 ; 04:17:01,019 DEBUG storage: DeviceTree.getDeviceByName returned None 04:17:01,020 INFO storage: vda1 is a partition 04:17:01,049 DEBUG storage: DeviceTree.addUdevPartitionDevice: name: vda1 ; 04:17:01,078 DEBUG storage: DeviceTree.getDeviceByName: name: vda ; 04:17:01,109 DEBUG storage: DeviceTree.getDeviceByName returned existing 8000MB disk vda (7) with existing msdos disklabel 04:17:01,139 DEBUG storage: DiskDevice.addChild: kids: 0 ; name: vda ; 04:17:01,168 DEBUG storage: PartitionDevice._setFormat: vda1 ; 04:17:01,169 DEBUG storage: getFormat('None') returning DeviceFormat instance 04:17:01,203 DEBUG storage: PartitionDevice._setFormat: vda1 ; current: None ; type: None ; 04:17:01,203 DEBUG storage: looking up parted Partition: /dev/vda1 04:17:01,224 DEBUG storage: PartitionDevice.probe: vda1 ; exists: True ; 04:17:01,251 DEBUG storage: PartitionDevice.getFlag: path: /dev/vda1 ; flag: 1 ; 04:17:01,285 DEBUG storage: PartitionDevice.getFlag: path: /dev/vda1 ; flag: 10 ; 04:17:01,311 DEBUG storage: PartitionDevice.getFlag: path: /dev/vda1 ; flag: 12 ; 04:17:01,319 INFO storage: added partition vda1 (id 8) to device tree 04:17:01,341 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: vda1 ; 04:17:01,368 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: vda1 ; label_type: None ; 04:17:01,400 DEBUG storage: Ext4FS.supported: supported: True ; 04:17:01,411 DEBUG storage: getFormat('ext4') returning Ext4FS instance 04:17:01,411 DEBUG storage: device vda1 does not contain a disklabel 04:17:01,412 INFO storage: type detected on 'vda1' is 'ext4' 04:17:01,438 DEBUG storage: Ext4FS.supported: supported: True ; 04:17:01,946 DEBUG storage: Ext4FS.supported: supported: True ; 04:17:01,949 DEBUG storage: getFormat('ext4') returning Ext4FS instance 04:17:01,996 DEBUG storage: PartitionDevice._setFormat: vda1 ; 04:17:02,017 DEBUG storage: PartitionDevice._setFormat: vda1 ; current: None ; type: ext4 ; 04:17:02,032 DEBUG storage: looking up parted Device: /dev/vda1 04:17:02,221 INFO storage: got device: PartitionDevice instance (0x2939510) -- name = vda1 status = True kids = 0 id = 8 parents = ['existing 8000MB disk vda (7) with existing msdos disklabel'] uuid = None size = 7999.0 format = existing ext4 filesystem major = 252 minor = 1 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1 partedDevice = parted.Device instance -- model: Virtio Block Device path: /dev/vda1 type: 15 sectorSize: 512 physicalSectorSize: 512 length: 16381952 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 32624 did: 0 busy: True hardwareGeometry: (16251, 16, 63) biosGeometry: (1019, 255, 63) PedDevice: <_ped.Device object at 0x293a4d0> target size = 0 path = /dev/vda1 format args = [] originalFormat = None grow = None max size = 0 bootable = True part type = 0 primary = None partedPartition = parted.Partition instance -- disk: <parted.disk.Disk object at 0x2938fd0> fileSystem: <parted.filesystem.FileSystem object at 0x29393d0> number: 1 path: /dev/vda1 type: 0 name: None active: True busy: True geometry: <parted.geometry.Geometry object at 0x29391d0> PedPartition: <_ped.Partition object at 0x2925bf0> disk = existing 8000MB disk vda (7) with existing msdos disklabel start = 2048 end = 16383999 length = 16381952 flags = boot 04:17:02,244 DEBUG storage: Ext4FS.supported: supported: True ; 04:17:02,253 INFO storage: got format: Ext4FS instance (0x2956d10) -- type = ext4 name = ext4 status = False device = /dev/vda1 uuid = 7abcd4ed-50b4-4e16-9a90-832cc1c92ffe exists = True options = defaults supported = True formattable = True resizable = True mountpoint = None mountopts = None label = None size = 7999.0 targetSize = 7999.0 04:17:02,274 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop0', 'DEVPATH': '/devices/virtual/block/loop0', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '0', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883565', 'name': 'loop0', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop0'} ; name: loop0 ; 04:17:02,283 INFO storage: ignoring loop0 (/devices/virtual/block/loop0) 04:17:02,283 DEBUG storage: lvm filter: adding loop0 to the reject list 04:17:02,307 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop1', 'DEVPATH': '/devices/virtual/block/loop1', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '1', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883636', 'name': 'loop1', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop1'} ; name: loop1 ; 04:17:02,322 INFO storage: ignoring loop1 (/devices/virtual/block/loop1) 04:17:02,324 DEBUG storage: lvm filter: adding loop1 to the reject list 04:17:02,343 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop2', 'DEVPATH': '/devices/virtual/block/loop2', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '2', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883701', 'name': 'loop2', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop2'} ; name: loop2 ; 04:17:02,353 INFO storage: ignoring loop2 (/devices/virtual/block/loop2) 04:17:02,355 DEBUG storage: lvm filter: adding loop2 to the reject list 04:17:02,374 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop3', 'DEVPATH': '/devices/virtual/block/loop3', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '3', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883766', 'name': 'loop3', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop3'} ; name: loop3 ; 04:17:02,375 INFO storage: ignoring loop3 (/devices/virtual/block/loop3) 04:17:02,375 DEBUG storage: lvm filter: adding loop3 to the reject list 04:17:02,399 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop4', 'DEVPATH': '/devices/virtual/block/loop4', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '4', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883847', 'name': 'loop4', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop4'} ; name: loop4 ; 04:17:02,410 INFO storage: ignoring loop4 (/devices/virtual/block/loop4) 04:17:02,410 DEBUG storage: lvm filter: adding loop4 to the reject list 04:17:02,434 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop5', 'DEVPATH': '/devices/virtual/block/loop5', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '5', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883917', 'name': 'loop5', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop5'} ; name: loop5 ; 04:17:02,441 INFO storage: ignoring loop5 (/devices/virtual/block/loop5) 04:17:02,441 DEBUG storage: lvm filter: adding loop5 to the reject list 04:17:02,464 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop6', 'DEVPATH': '/devices/virtual/block/loop6', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '6', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '883994', 'name': 'loop6', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop6'} ; name: loop6 ; 04:17:02,472 INFO storage: ignoring loop6 (/devices/virtual/block/loop6) 04:17:02,472 DEBUG storage: lvm filter: adding loop6 to the reject list 04:17:02,496 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVNAME': 'loop7', 'DEVPATH': '/devices/virtual/block/loop7', 'DEVTYPE': 'disk', 'MAJOR': '7', 'MINOR': '7', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '884085', 'name': 'loop7', 'symlinks': [], 'sysfs_path': '/devices/virtual/block/loop7'} ; name: loop7 ; 04:17:02,503 INFO storage: ignoring loop7 (/devices/virtual/block/loop7) 04:17:02,503 DEBUG storage: lvm filter: adding loop7 to the reject list 04:17:02,503 DEBUG storage: Skipping a device mapper drive (dm-0) for now 04:17:02,913 INFO storage: devices to scan: ['dm-0'] 04:17:02,938 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/dm-name-vgMine-lvMine /dev/disk/by-id/dm-uuid-LVM-NDNILTTb0zG3nKxB2Z3OLNSNAhips2s53qDbXTiMIzfdzw6YksWiGm290AB720cT /dev/mapper/vgMine-lvMine /dev/vgMine/lvMine', 'DEVNAME': 'dm-0', 'DEVPATH': '/devices/virtual/block/dm-0', 'DEVTYPE': 'disk', 'DM_LV_NAME': 'lvMine', 'DM_NAME': 'vgMine-lvMine', 'DM_SBIN_PATH': '/sbin', 'DM_SUSPENDED': '0', 'DM_UDEV_DISABLE_LIBRARY_FALLBACK_FLAG': '1', 'DM_UDEV_PRIMARY_SOURCE_FLAG': '1', 'DM_UDEV_RULES_VSN': '2', 'DM_UUID': 'LVM-NDNILTTb0zG3nKxB2Z3OLNSNAhips2s53qDbXTiMIzfdzw6YksWiGm290AB720cT', 'DM_VG_NAME': 'vgMine', 'MAJOR': '253', 'MINOR': '0', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_DM_TARGETS_COUNT': '1', 'UDISKS_DM_TARGETS_LENGTH': '262144', 'UDISKS_DM_TARGETS_PARAMS': '8:1\\x202048', 'UDISKS_DM_TARGETS_START': '0', 'UDISKS_DM_TARGETS_TYPE': 'linear', 'UDISKS_PRESENTATION_NOPOLICY': '1', 'USEC_INITIALIZED': '652083', 'name': 'dm-0', 'symlinks': ['/dev/disk/by-id/dm-name-vgMine-lvMine', '/dev/disk/by-id/dm-uuid-LVM-NDNILTTb0zG3nKxB2Z3OLNSNAhips2s53qDbXTiMIzfdzw6YksWiGm290AB720cT', '/dev/mapper/vgMine-lvMine', '/dev/vgMine/lvMine'], 'sysfs_path': '/devices/virtual/block/dm-0'} ; name: vgMine-lvMine ; 04:17:02,950 INFO storage: scanning vgMine-lvMine (/devices/virtual/block/dm-0)... 04:17:02,979 DEBUG storage: DeviceTree.getDeviceByName: name: vgMine-lvMine ; 04:17:03,013 DEBUG storage: DeviceTree.getDeviceByName returned None 04:17:03,020 INFO storage: vgMine-lvMine is an lvm logical volume 04:17:03,042 DEBUG storage: DeviceTree.addUdevLVDevice: name: vgMine-lvMine ; 04:17:03,073 DEBUG storage: DeviceTree.addUdevDevice: info: {'DEVLINKS': '/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1 /dev/disk/by-partuuid/ac8f2000-2500-40aa-b312-d2c35479bf7f', 'DEVNAME': 'sda1', 'DEVPATH': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1', 'DEVTYPE': 'partition', 'ID_ATA': '1', 'ID_ATA_FEATURE_SET_SMART': '1', 'ID_ATA_FEATURE_SET_SMART_ENABLED': '1', 'ID_ATA_WRITE_CACHE': '1', 'ID_ATA_WRITE_CACHE_ENABLED': '1', 'ID_BUS': 'ata', 'ID_FS_TYPE': 'LVM2_member', 'ID_FS_USAGE': 'raid', 'ID_FS_UUID': 'fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj', 'ID_FS_UUID_ENC': 'fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj', 'ID_FS_VERSION': 'LVM2 001', 'ID_MODEL': 'QEMU_HARDDISK', 'ID_MODEL_ENC': 'QEMU\\x20HARDDISK\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20\\x20', 'ID_PART_ENTRY_DISK': '8:0', 'ID_PART_ENTRY_NUMBER': '1', 'ID_PART_ENTRY_OFFSET': '2048', 'ID_PART_ENTRY_SCHEME': 'gpt', 'ID_PART_ENTRY_SIZE': '2093056', 'ID_PART_ENTRY_TYPE': 'ebd0a0a2-b9e5-4433-87c0-68b6b72699c7', 'ID_PART_ENTRY_UUID': 'ac8f2000-2500-40aa-b312-d2c35479bf7f', 'ID_PART_TABLE_TYPE': 'gpt', 'ID_REVISION': '0.15.1', 'ID_SERIAL': 'QEMU_HARDDISK_QM00001', 'ID_SERIAL_SHORT': 'QM00001', 'ID_TYPE': 'disk', 'MAJOR': '8', 'MINOR': '1', 'MPATH_SBIN_PATH': '/sbin', 'SUBSYSTEM': 'block', 'TAGS': ':systemd:', 'UDISKS_PARTITION': '1', 'UDISKS_PARTITION_ALIGNMENT_OFFSET': '0', 'UDISKS_PARTITION_NUMBER': '1', 'UDISKS_PARTITION_OFFSET': '1048576', 'UDISKS_PARTITION_SCHEME': 'gpt', 'UDISKS_PARTITION_SIZE': '1071644672', 'UDISKS_PARTITION_SLAVE': '/sys/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda', 'UDISKS_PARTITION_TYPE': 'EBD0A0A2-B9E5-4433-87C0-68B6B72699C7', 'UDISKS_PARTITION_UUID': 'AC8F2000-2500-40AA-B312-D2C35479BF7F', 'UDISKS_PRESENTATION_NOPOLICY': '0', 'USEC_INITIALIZED': '601778', 'name': 'sda1', 'symlinks': ['/dev/disk/by-id/ata-QEMU_HARDDISK_QM00001-part1', '/dev/disk/by-partuuid/ac8f2000-2500-40aa-b312-d2c35479bf7f'], 'sysfs_path': '/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1'} ; name: sda1 ; 04:17:03,080 INFO storage: scanning sda1 (/devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1)... 04:17:03,102 DEBUG storage: DeviceTree.getDeviceByName: name: sda1 ; 04:17:03,129 DEBUG storage: DeviceTree.getDeviceByName returned existing 1022MB partition sda1 (1) with existing lvmpv 04:17:03,158 DEBUG storage: DeviceTree.handleUdevDeviceFormat: name: sda1 ; 04:17:03,201 DEBUG storage: DeviceTree.handleUdevDiskLabelFormat: device: sda1 ; label_type: None ; 04:17:03,221 DEBUG storage: LVMPhysicalVolume.__init__: 04:17:03,229 DEBUG storage: getFormat('LVM2_member') returning LVMPhysicalVolume instance 04:17:03,230 DEBUG storage: device sda1 does not contain a disklabel 04:17:03,230 DEBUG storage: no type or existing type for sda1, bailing 04:17:03,381 INFO storage: got device: PartitionDevice instance (0x2908490) -- name = sda1 status = True kids = 0 id = 1 parents = ['existing 1024MB disk sda (0) with existing gpt disklabel'] uuid = None size = 1022.0 format = existing lvmpv major = 8 minor = 1 exists = True protected = False sysfs path = /devices/pci0000:00/0000:00:01.1/ata2/host0/target0:0:0/0:0:0:0/block/sda/sda1 partedDevice = parted.Device instance -- model: Unknown path: /dev/sda1 type: 0 sectorSize: 512 physicalSectorSize: 512 length: 2093056 openCount: 0 readOnly: False externalMode: False dirty: False bootDirty: False host: 14647 did: 26210 busy: False hardwareGeometry: (130, 255, 63) biosGeometry: (130, 255, 63) PedDevice: <_ped.Device object at 0x27d7a70> target size = 0 path = /dev/sda1 format args = [] originalFormat = lvmpv grow = None max size = 0 bootable = None part type = 0 primary = None partedPartition = parted.Partition instance -- disk: <parted.disk.Disk object at 0x2921ed0> fileSystem: None number: 1 path: /dev/sda1 type: 0 name: active: True busy: False geometry: <parted.geometry.Geometry object at 0x292b0d0> PedPartition: <_ped.Partition object at 0x2925530> disk = existing 1024MB disk sda (0) with existing gpt disklabel start = 2048 end = 2095103 length = 2093056 flags = 04:17:03,394 INFO storage: got format: LVMPhysicalVolume instance (0x292b850) -- type = lvmpv name = physical volume (LVM) status = None device = /dev/sda1 uuid = fFY52U-OdRw-ffcj-4ZsW-jVkg-Gx3c-1LmTsj exists = True options = None supported = True formattable = True resizable = False vgName = None vgUUID = None peStart = 1.0 04:17:03,417 DEBUG storage: DeviceTree.getDeviceByName: name: vgMine ; 04:17:03,448 DEBUG storage: DeviceTree.getDeviceByName returned None 04:17:03,459 ERR storage: failed to find vg 'vgMine' after scanning pvs 04:17:04,051 DEBUG storage: PartitionDevice.teardown: sda1 ; status: True ; controllable: True ; 04:17:04,081 DEBUG storage: LVMPhysicalVolume.teardown: device: /dev/sda1 ; status: None ; type: lvmpv ; 04:17:04,111 DEBUG storage: LVMPhysicalVolume.teardown: device: /dev/sda1 ; status: None ; type: lvmpv ; 04:17:04,245 DEBUG storage: DiskDevice.teardown: sda ; status: True ; controllable: True ; 04:17:04,272 DEBUG storage: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; 04:17:04,304 DEBUG storage: DiskLabel.teardown: device: /dev/sda ; status: False ; type: disklabel ; 04:17:04,422 DEBUG storage: PartitionDevice.teardown: sdb1 ; status: True ; controllable: True ; 04:17:04,449 DEBUG storage: LVMPhysicalVolume.teardown: device: /dev/sdb1 ; status: None ; type: lvmpv ; 04:17:04,481 DEBUG storage: LVMPhysicalVolume.teardown: device: /dev/sdb1 ; status: None ; type: lvmpv ; 04:17:04,597 DEBUG storage: DiskDevice.teardown: sdb ; status: True ; controllable: True ; 04:17:04,624 DEBUG storage: DiskLabel.teardown: device: /dev/sdb ; status: False ; type: disklabel ; 04:17:04,653 DEBUG storage: DiskLabel.teardown: device: /dev/sdb ; status: False ; type: disklabel ; 04:17:04,772 DEBUG storage: OpticalDevice.teardown: sr0 ; status: True ; controllable: True ; 04:17:04,799 DEBUG storage: DeviceFormat.teardown: device: /dev/sr0 ; status: False ; type: None ; 04:17:04,831 DEBUG storage: DeviceFormat.teardown: device: /dev/sr0 ; status: False ; type: None ; 04:17:04,958 DEBUG storage: PartitionDevice.teardown: sdc1 ; status: True ; controllable: True ; 04:17:04,991 DEBUG storage: LVMPhysicalVolume.teardown: device: /dev/sdc1 ; status: None ; type: lvmpv ; 04:17:05,021 DEBUG storage: LVMPhysicalVolume.teardown: device: /dev/sdc1 ; status: None ; type: lvmpv ; 04:17:05,751 DEBUG storage: DiskDevice.teardown: sdc ; status: True ; controllable: True ; 04:17:05,783 DEBUG storage: DiskLabel.teardown: device: /dev/sdc ; status: False ; type: disklabel ; 04:17:05,811 DEBUG storage: DiskLabel.teardown: device: /dev/sdc ; status: False ; type: disklabel ; 04:17:05,956 DEBUG storage: PartitionDevice.teardown: vda1 ; status: True ; controllable: True ; 04:17:06,503 DEBUG storage: DiskDevice.teardown: vda ; status: True ; controllable: True ; 04:17:06,533 DEBUG storage: DiskLabel.teardown: device: /dev/vda ; status: False ; type: disklabel ; 04:17:06,564 DEBUG storage: DiskLabel.teardown: device: /dev/vda ; status: False ; type: disklabel ; 04:17:06,655 INFO storage: not going to restore from backup of non-existent /etc/mdadm.conf 04:17:06,660 INFO storage: not going to restore from backup of non-existent /etc/multipath.conf 04:17:06,686 DEBUG storage: DeviceTree.getDeviceByName: name: sda ; 04:17:06,717 DEBUG storage: DeviceTree.getDeviceByName returned existing 1024MB disk sda (0) with existing gpt disklabel
_______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list