dispatching a baseimg builder Creating directory (/tmp/koji/tasks/2210/292210/output_image) for persistent storage No SecondaryDispatcher present - Use of secondary factories is not enabled Created file /tmp/koji/tasks/2210/292210/output_image/7785d1d7-de80-46c8-af34-d72e49a0a9a9.meta Created file /tmp/koji/tasks/2210/292210/output_image/7785d1d7-de80-46c8-af34-d72e49a0a9a9.body Getting metadata in class () my metadata is (()) Executing metadata in class () my metadata is (('identifier', 'data', 'template', 'icicle', 'status_detail', 'status', 'percent_complete', 'parameters', 'properties')) Saved metadata for image (7785d1d7-de80-46c8-af34-d72e49a0a9a9): {'status': 'NEW', 'identifier': '7785d1d7-de80-46c8-af34-d72e49a0a9a9', 'parameters': {'install_script': '#version=DEVEL\n# Keyboard layouts\nkeyboard \'us\'\n# Root password\nrootpw --iscrypted thereisnopasswordanditslocked\n# Use network installation\nurl --url="http://qa.centos.org/centos/8/BaseOS/aarch64/os/"\n# System language\nlang en_US.UTF-8\n# Firewall configuration\nfirewall --enabled --service=ssh\nrepo --name="koji-override-0" --baseurl=http://qa.centos.org/centos/8/BaseOS/aarch64/os/\nrepo --name="koji-override-1" --baseurl=http://qa.centos.org/centos/8/AppStream/aarch64/os/\n# Shutdown after installation\nshutdown\n# Network information\nnetwork --bootproto=dhcp --device=link --activate\nnetwork --bootproto=dhcp --hostname=localhost.localdomain\n# System timezone\ntimezone UTC --isUtc\n# Use text mode install\ntext\n# System authorization information\nauth --enableshadow --passalgo=sha512\nfirstboot --disable\n# SELinux configuration\nselinux --enforcing\n\n# System services\nservices --disabled="kdump" --enabled="NetworkManager,sshd,rsyslog,chronyd,cloud-init,cloud-init-local,cloud-config,cloud-final,rngd"\n# System bootloader configuration\nbootloader --append="console=ttyS0,115200n8 no_timer_check crashkernel=auto net.ifnames=0 nvme_core.io_timeout=4294967295 nvme_core.max_retries=10" --location=mbr --timeout=1 --boot-drive=vda\nreqpart\n# Clear the Master Boot Record\nzerombr\n# Partition clearing information\nclearpart --all --initlabel\n# Disk partitioning information\npart / --fstype="xfs" --ondisk=vda --size=7950\n\n%pre --erroronfail\n/usr/sbin/parted -s /dev/vda mklabel gpt\n%end\n\n%post --erroronfail\npasswd -d root\npasswd -l root\n\n# pvgrub support\necho -n "Creating grub.conf for pvgrub"\nrootuuid=$( awk \'$2=="/" { print $1 };\' /etc/fstab )\nmkdir /boot/grub\necho -e \'default=0\\ntimeout=0\\n\\n\' > /boot/grub/grub.conf\nfor kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do\n echo "title CentOS Linux 8 ($kv)" >> /boot/grub/grub.conf\n echo -e "\\troot (hd0)" >> /boot/grub/grub.conf\n echo -e "\\tkernel /boot/vmlinuz-$kv ro root=$rootuuid console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf\n echo -e "\\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf\n echo\ndone\nln -sf grub.conf /boot/grub/menu.lst\nln -sf /boot/grub/grub.conf /etc/grub.conf\n\n# setup systemd to boot to the right runlevel\nrm -f /etc/systemd/system/default.target\nln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target\necho .\n\ndnf -C -y remove linux-firmware\n\n# Remove firewalld; it is required to be present for install/image building.\n# but we dont ship it in cloud\ndnf -C -y remove firewalld --setopt="clean_requirements_on_remove=1"\ndnf -C -y remove avahi\\* \nsed -i \'/^#NAutoVTs=.*/ a\\\nNAutoVTs=0\' /etc/systemd/logind.conf\n\ncat > /etc/sysconfig/network << EOF\nNETWORKING=yes\nNOZEROCONF=yes\nEOF\n\n# For cloud images, \'eth0\' _is_ the predictable device name, since\n# we don\'t want to be tied to specific virtual (!) hardware\nrm -f /etc/udev/rules.d/70*\nln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules\n\n# simple eth0 config, again not hard-coded to the build hardware\ncat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF\nDEVICE="eth0"\nBOOTPROTO="dhcp"\nONBOOT="yes"\nTYPE="Ethernet"\nUSERCTL="yes"\nPEERDNS="yes"\nIPV6INIT="no"\nPERSISTENT_DHCLIENT="1"\nEOF\n\necho "virtual-guest" > /etc/tuned/active_profile\n\n# generic localhost names\ncat > /etc/hosts << EOF\n127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4\n::1 localhost localhost.localdomain localhost6 localhost6.localdomain6\n\nEOF\necho .\n\nsystemctl mask tmp.mount\n\ncat < /etc/sysconfig/kernel\n# UPDATEDEFAULT specifies if new-kernel-pkg should make\n# new kernels the default\nUPDATEDEFAULT=yes\n\n# DEFAULTKERNEL specifies the default kernel package type\nDEFAULTKERNEL=kernel\nEOL\n\n# make sure firstboot doesn\'t start\necho "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot\n\n# centos cloud user\necho -e \'centos\\tALL=(ALL)\\tNOPASSWD: ALL\' >> /etc/sudoers\nsed -i \'s/name: cloud-user/name: centos/g\' /etc/cloud/cloud.cfg\n\ndnf clean all\n\n# XXX instance type markers - MUST match CentOS Infra expectation\necho \'ec2\' > /etc/yum/vars/infra\n\n# change dhcp client retry/timeouts to resolve #6866\ncat >> /etc/dhcp/dhclient.conf << EOF\n\ntimeout 300;\nretry 60;\nEOF\n\n\nrm -rf /var/log/yum.log\nrm -rf /var/lib/yum/*\nrm -rf /root/install.log\nrm -rf /root/install.log.syslog\nrm -rf /root/anaconda-ks.cfg\nrm -rf /var/log/anaconda*\n\nrm -f /var/lib/systemd/random-seed\n\ncat /dev/null > /etc/machine-id\n\necho "Fixing SELinux contexts."\ntouch /var/log/cron\ntouch /var/log/boot.log\nmkdir -p /var/cache/yum\n/usr/sbin/fixfiles -R -a restore\n\n# remove these for ec2 debugging\nsed -i -e \'s/ rhgb quiet//\' /boot/grub/grub.conf\n\ncat > /etc/modprobe.d/blacklist-nouveau.conf << EOL\nblacklist nouveau\nEOL\n\n# enable resizing on copied AMIs\necho \'install_items+=" sgdisk "\' > /etc/dracut.conf.d/sgdisk.conf\n\necho \'add_drivers+="xen-netfront xen-blkfront "\' > /etc/dracut.conf.d/xen.conf\n# Rerun dracut for the installed kernel (not the running kernel):\nKERNEL_VERSION=$(rpm -q kernel --qf \'%{V}-%{R}.%{arch}\\n\')\ndracut -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION\n\n\n# reorder console entries\nsed -i \'s/console=tty0/console=tty0 console=ttyS0,115200n8/\' /boot/grub2/grub.cfg\n\ntrue\n\n%end\n\n%packages\n@core\nNetworkManager\ncentos-release\nchrony\ncloud-init\ncloud-utils-growpart\ncockpit-system\ncockpit-ws\ndhcp-client\ndnf\ndnf-utils\ndracut-config-generic\ndracut-norescue\nfirewalld\ngdisk\ngrub2\nkernel\nnfs-utils\npython3-jsonschema\nqemu-guest-agent\nrng-tools\nrsync\ntar\nyum\nyum-utils\n-aic94xx-firmware\n-alsa-firmware\n-alsa-lib\n-alsa-tools-firmware\n-biosdevname\n-iprutils\n-ivtv-firmware\n-iwl100-firmware\n-iwl1000-firmware\n-iwl105-firmware\n-iwl135-firmware\n-iwl2000-firmware\n-iwl2030-firmware\n-iwl3160-firmware\n-iwl3945-firmware\n-iwl4965-firmware\n-iwl5000-firmware\n-iwl5150-firmware\n-iwl6000-firmware\n-iwl6000g2a-firmware\n-iwl6000g2b-firmware\n-iwl6050-firmware\n-iwl7260-firmware\n-langpacks-*\n-langpacks-en\n-libertas-sd8686-firmware\n-libertas-sd8787-firmware\n-libertas-usb8388-firmware\n-plymouth\n\n%end\n', 'generate_icicle': 'False', 'offline_icicle': True}, 'icicle': None, 'data': '/tmp/koji/tasks/2210/292210/output_image/7785d1d7-de80-46c8-af34-d72e49a0a9a9.body', 'status_detail': {'error': None, 'activity': 'Initializing image prior to Cloud/OS customization'}, 'template': "\n", 'percent_complete': 0, 'type': 'BaseImage', 'properties': {}} Attempting to match list target (['Fedora', '20', 'aarch64']) create_base_image() called for TinMan plugin - creating a BaseImage libvirt bridge name is virbr0 Libvirt type is kvm Starting new HTTP connection (1): qa.centos.org "POST /centos/8/BaseOS/aarch64/os/ HTTP/1.1" 404 7815 Name: factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9, UUID: b1d65109-3e61-4fc5-bb7e-bf05defc506d MAC: 52:54:00:af:b9:5e, distro: Fedora update: 20, arch: aarch64, diskimage: /tmp/koji/tasks/2210/292210/scratch_images/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9.dsk nicmodel: virtio, clockoffset: utc mousetype: ps2, disk_bus: virtio, disk_dev: vda icicletmp: /tmp/koji/tasks/2210/292210/oz_data/icicletmp/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9, listen_port: 47413 console_listen_port: 47685 Original ISO path: /tmp/koji/tasks/2210/292210/oz_data/isos/Fedora20aarch64-url.iso Modified ISO cache: /tmp/koji/tasks/2210/292210/oz_data/isos/Fedora20aarch64-url-oz.iso Output ISO path: /tmp/koji/tasks/2210/292210/scratch_images/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9-url-oz.iso ISO content path: /tmp/koji/tasks/2210/292210/oz_data/isocontent/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9-url Cleaning up any old Oz guest Cleaning up guest named factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 Generating JEOS install media Grabbing named lock (Fedora-20-aarch64-url) Got named lock (Fedora-20-aarch64-url) Installtype is URL, trying to do direct kernel boot Starting new HTTP connection (1): qa.centos.org "POST /centos/8/BaseOS/aarch64/os//.treeinfo HTTP/1.1" 200 1362 Going to write treeinfo to /tmp/koji/tasks/2210/292210/oz_data/icicletmp/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9/treeinfo Trying to get treeinfo from http://qa.centos.org/centos/8/BaseOS/aarch64/os//.treeinfo Starting new HTTP connection (1): qa.centos.org "GET /centos/8/BaseOS/aarch64/os//.treeinfo HTTP/1.1" 200 1362 Got treeinfo, parsing Returning kernel images/pxeboot/vmlinuz and initrd images/pxeboot/initrd.img Fetching the original media Starting new HTTP connection (1): qa.centos.org "POST /centos/8/BaseOS/aarch64/os/images/pxeboot/vmlinuz HTTP/1.1" 200 9547380 Fetching the original install media from http://qa.centos.org/centos/8/BaseOS/aarch64/os/images/pxeboot/vmlinuz Starting new HTTP connection (1): qa.centos.org "GET /centos/8/BaseOS/aarch64/os/images/pxeboot/vmlinuz HTTP/1.1" 200 9547380 9323kB of 9323kB Fetching the original media Starting new HTTP connection (1): qa.centos.org "POST /centos/8/BaseOS/aarch64/os/images/pxeboot/initrd.img HTTP/1.1" 200 68936496 Fetching the original install media from http://qa.centos.org/centos/8/BaseOS/aarch64/os/images/pxeboot/initrd.img Starting new HTTP connection (1): qa.centos.org "GET /centos/8/BaseOS/aarch64/os/images/pxeboot/initrd.img HTTP/1.1" 200 68936496 10240kB of 67320kB 20480kB of 67320kB 30720kB of 67320kB 40960kB of 67320kB 51200kB of 67320kB 61440kB of 67320kB 67320kB of 67320kB Putting the kickstart in place Writing cpio to /tmp/koji/tasks/2210/292210/oz_data/icicletmp/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9/extra.cpio Releasing named lock (Fedora-20-aarch64-url) Generating JEOS disk image Generating 10GB diskimage for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 Waiting for volume to be created, 90/90 Execute JEOS install Running install for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 Generate XML for guest factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 with bootdev None Generated XML: factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 4194304 4194304 b1d65109-3e61-4fc5-bb7e-bf05defc506d 4 host hvm /tmp/koji/tasks/2210/292210/scratch_images/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9-kernel /tmp/koji/tasks/2210/292210/scratch_images/factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9-ramdisk method=http://qa.centos.org/centos/8/BaseOS/aarch64/os/ ks=file:/ks.cfg /usr/share/AAVMF/AAVMF_CODE.fd destroy destroy destroy Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 12000/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11990/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11980/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11970/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11960/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11950/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11940/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11930/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11920/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11910/12000 00:53:53,608 INFO anaconda:program: Running... systemctl restart rsyslog 00:53:53,639 INFO systemd:Stopping System Logging Service... 00:53:53,966 DEBUG NetworkManager: [1631667233.9664] ndisc[0xaaab0311d610,"enp1s0"]: solicit: schedule sending next solicitation in 16.950 seconds 00:53:53,979 INFO rsyslogd:[origin software="rsyslogd" swVersion="8.1911.0-7.el8" x-pid="1659" x-info="https://www.rsyslog.com"] exiting on signal 15. 00:53:53,982 INFO systemd:rsyslog.service: Succeeded. 00:53:53,984 INFO systemd:Stopped System Logging Service. 00:53:53,990 INFO systemd:Starting System Logging Service... 00:53:54,005 INFO systemd:Started System Logging Service. 00:53:54,008 WARNING rsyslogd:warning: ~ action is deprecated, consider using the 'stop' statement instead [v8.1911.0-7.el8 try https://www.rsyslog.com/e/2307 ] 00:53:54,009 ERR rsyslogd:imfile: no working or state file directory set, imfile will create state files in the current working directory (probably the root dir). Use global(workDirectory="/some/path") to set the working directory [v8.1911.0-7.el8 try https://www.rsyslog.com/e/2450 ] 00:53:54,009 ERR rsyslogd:imfile: on startup file '/tmp/X.log' does not exist but is configured in static file monitor - this may indicate a misconfiguration. If the file appears at a later time, it will automatically be processed. Reason: No such file or directory [v8.1911.0-7.el8] 00:53:54,010 ERR rsyslogd:imfile: on startup file '/tmp/anaconda-tb-all.log' does not exist but is configured in static file monitor - this may indicate a misconfiguration. If the file appears at a later time, it will automatically be processed. Reason: No such file or directory [v8.1911.0-7.el8] 00:53:54,010 INFO rsyslogd:[origin software="rsyslogd" swVersion="8.1911.0-7.el8" x-pid="1718" x-info="https://www.rsyslog.com"] start 00:53:54,010 NOTICE rsyslogd:imjournal: journal files changed, reloading... [v8.1911.0-7.el8 try https://www.rsyslog.com/e/0 ] 00:53:54,023 DEBUG anaconda:program: Return code: 0 00:53:54,024 INFO anaconda:anaconda: core.configuration.product: Loading information about products from /etc/anaconda/product.d. 00:53:54,027 INFO anaconda:anaconda: core.configuration.product: Found oVirt Node Next at /etc/anaconda/product.d/ovirt.conf. 00:53:54,030 INFO anaconda:anaconda: core.configuration.product: Found Red Hat Enterprise Linux at /etc/anaconda/product.d/rhel.conf. 00:53:54,032 INFO anaconda:anaconda: core.configuration.product: Found Fedora Workstation at /etc/anaconda/product.d/fedora-workstation.conf. 00:53:54,035 INFO anaconda:anaconda: core.configuration.product: Found CentOS Stream at /etc/anaconda/product.d/centos-stream.conf. 00:53:54,037 INFO anaconda:anaconda: core.configuration.product: Found Fedora Silverblue at /etc/anaconda/product.d/fedora-silverblue.conf. 00:53:54,039 INFO anaconda:anaconda: core.configuration.product: Found CentOS Linux at /etc/anaconda/product.d/centos.conf. 00:53:54,041 INFO anaconda:anaconda: core.configuration.product: Found Scientific Linux at /etc/anaconda/product.d/scientific-linux.conf. 00:53:54,043 INFO anaconda:anaconda: core.configuration.product: Found Fedora at /etc/anaconda/product.d/fedora.conf. 00:53:54,045 INFO anaconda:anaconda: core.configuration.product: Found Fedora Workstation Live at /etc/anaconda/product.d/fedora-workstation-live.conf. 00:53:54,047 INFO anaconda:anaconda: core.configuration.product: Found Red Hat Virtualization at /etc/anaconda/product.d/rhev.conf. 00:53:54,050 INFO anaconda:anaconda: core.configuration.product: Found Fedora AtomicHost at /etc/anaconda/product.d/fedora-atomic-host.conf. 00:53:54,052 INFO anaconda:anaconda: core.configuration.product: Found Fedora Server at /etc/anaconda/product.d/fedora-server.conf. 00:53:54,053 WARNING anaconda:anaconda: core.configuration.product: No support for the product CentOS Linux BaseOS. 00:53:54,054 INFO anaconda:anaconda: core.configuration.product: The product CentOS Linux is supported. 00:53:54,081 INFO anaconda:anaconda: main: /sbin/anaconda 33.16.4.15-1.el8.0.2 00:53:54,082 WARNING anaconda:anaconda: stdout: Deprecated boot argument 'method' must be used with the 'inst.' prefix. Please use 'inst.method' instead. 00:53:54,083 WARNING anaconda:anaconda: stdout: Deprecated boot argument 'ks' must be used with the 'inst.' prefix. Please use 'inst.ks' instead. 00:53:54,083 WARNING anaconda:anaconda: stdout: Anaconda boot arguments without 'inst.' prefix have been deprecated and will be removed in a future major release. 00:53:59,039 INFO anaconda:anaconda: isys: 4204736 kB (4106 MB) are available 00:53:59,040 INFO anaconda:program: Running... losetup --list 00:53:59,069 INFO anaconda:anaconda: startup_utils: check_memory(): total:4106, needed:320, graphical:410 00:53:59,070 INFO anaconda:program: Running... /sbin/auditd 00:53:59,082 DEBUG anaconda:program: Return code: 0 00:53:59,084 INFO anaconda:anaconda: main: anaconda called with cmdline = ['/sbin/anaconda'] 00:53:59,084 INFO anaconda:anaconda: main: Default encoding = utf-8 00:53:59,085 INFO anaconda:anaconda: misc: Writing a temporary configuration loaded from: ['/etc/anaconda/anaconda.conf', '/etc/anaconda/product.d/rhel.conf', '/etc/anaconda/product.d/centos-stream.conf', '/etc/anaconda/product.d/centos.conf', '/etc/anaconda/conf.d/00-do-nothing.conf', '/etc/anaconda/conf.d/01-still-do-nothing.conf'] 00:53:59,087 INFO anaconda:program: Running... dbus-daemon --print-address --syslog --config-file=/usr/share/anaconda/dbus/anaconda-bus.conf 00:53:59,118 INFO anaconda:anaconda: core.dbus: Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:53:59,133 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Boss' requested by ':1.0' (uid=0 pid=1692 comm="/usr/libexec/platform-python /sbin/anaconda " label="system_u:system_r:kernel_t:s0") 00:53:59,607 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:53:59,714 WARNING org.fedoraproject.Anaconda.Boss:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:53:59,714 WARNING org.fedoraproject.Anaconda.Boss: import imp 00:54:00,078 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:00,079 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Boss. 00:54:00,079 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:00,088 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Boss. 00:54:00,095 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Boss' 00:54:00,097 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:00,102 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Boss/Task/1. 00:54:00,110 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.threading:Running Thread: AnaTaskThread-StartModulesTask-1 (281473556672992) 00:54:00,111 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Timezone. 00:54:00,111 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Network. 00:54:00,112 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Localization. 00:54:00,112 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Security. 00:54:00,112 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Users. 00:54:00,113 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Payloads. 00:54:00,114 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Storage. 00:54:00,114 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Found org.fedoraproject.Anaconda.Modules.Services. 00:54:00,119 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Timezone 00:54:00,120 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Network 00:54:00,120 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Timezone' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,122 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Localization 00:54:00,122 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Security 00:54:00,123 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Network' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,123 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Users 00:54:00,124 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Payloads 00:54:00,124 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Localization' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,125 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Storage 00:54:00,125 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Security' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,126 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Starting org.fedoraproject.Anaconda.Modules.Services 00:54:00,133 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Users' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,134 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Payloads' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,134 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Storage' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,135 INFO dbus-daemon:Activating service name='org.fedoraproject.Anaconda.Modules.Services' requested by ':1.1' (uid=0 pid=1732 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:00,958 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,018 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,111 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,205 WARNING org.fedoraproject.Anaconda.Modules.Security:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,205 WARNING org.fedoraproject.Anaconda.Modules.Security: import imp 00:54:01,231 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,236 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,251 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,256 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,280 WARNING org.fedoraproject.Anaconda.Modules.Services:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,280 WARNING org.fedoraproject.Anaconda.Modules.Services: import imp 00:54:01,330 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.common:The configuration is loaded from: ['/run/anaconda/anaconda.conf'] 00:54:01,369 WARNING org.fedoraproject.Anaconda.Modules.Network:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,369 WARNING org.fedoraproject.Anaconda.Modules.Network: import imp 00:54:01,398 WARNING org.fedoraproject.Anaconda.Modules.Localization:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,398 WARNING org.fedoraproject.Anaconda.Modules.Localization: import imp 00:54:01,423 WARNING org.fedoraproject.Anaconda.Modules.Users:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,423 WARNING org.fedoraproject.Anaconda.Modules.Users: import imp 00:54:01,469 WARNING org.fedoraproject.Anaconda.Modules.Timezone:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,469 WARNING org.fedoraproject.Anaconda.Modules.Timezone: import imp 00:54:01,496 WARNING org.fedoraproject.Anaconda.Modules.Payloads:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:01,496 WARNING org.fedoraproject.Anaconda.Modules.Payloads: import imp 00:54:01,609 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class DeviceFormat as None 00:54:01,690 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class BIOSBoot as biosboot 00:54:01,739 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class DiskLabel as disklabel Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11900/12000 00:54:01,759 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class DMRaidMember as dmraidmember 00:54:01,968 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class Ext2FS as ext2 00:54:01,969 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class Ext3FS as ext3 00:54:01,970 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class Ext4FS as ext4 00:54:01,971 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class FATFS as vfat 00:54:01,972 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class EFIFS as efi 00:54:01,973 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class BTRFS as btrfs 00:54:01,974 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class GFS2 as gfs2 00:54:01,975 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class JFS as jfs 00:54:01,976 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class ReiserFS as reiserfs 00:54:01,977 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class XFS as xfs 00:54:01,977 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class HFS as hfs 00:54:01,978 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class AppleBootstrapFS as appleboot 00:54:01,989 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class HFSPlus as hfs+ 00:54:01,990 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class MacEFIFS as macefi 00:54:01,991 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class NTFS as ntfs 00:54:01,992 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class NFS as nfs 00:54:01,992 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class NFSv4 as nfs4 00:54:01,993 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class Iso9660FS as iso9660 00:54:01,994 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class NoDevFS as nodev 00:54:01,994 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class DevPtsFS as devpts 00:54:01,995 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class ProcFS as proc 00:54:01,995 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class SysFS as sysfs 00:54:01,997 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class TmpFS as tmpfs 00:54:01,997 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class BindFS as bind 00:54:01,998 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class SELinuxFS as selinuxfs 00:54:01,999 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class USBFS as usbfs 00:54:01,999 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class EFIVarFS as efivarfs 00:54:02,092 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:02,097 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security. 00:54:02,097 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:02,144 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Security. 00:54:02,151 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Security' 00:54:02,154 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Security started successfully. 00:54:02,154 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:02,156 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Security is available. 00:54:02,158 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:02,158 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Services. 00:54:02,179 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:02,189 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Services. 00:54:02,196 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Services' 00:54:02,198 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:02,198 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Services started successfully. 00:54:02,200 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Services is available. 00:54:02,222 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:02,224 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Users. 00:54:02,225 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:02,239 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Users. 00:54:02,246 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Users' 00:54:02,247 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:02,248 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Users started successfully. 00:54:02,249 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Users is available. 00:54:02,323 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [1] lvm version ... 00:54:02,329 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:root:reading file= 00:54:02,431 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:root:reading file= 00:54:02,433 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:dasbus.connection:Connecting to the system bus. 00:54:02,434 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:dasbus.connection:Connecting to the system bus. 00:54:02,495 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: True 00:54:02,497 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Applying boot options 00:54:02,497 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:02,498 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Firewall. 00:54:02,498 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:02,514 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[1]: LVM version: 2.03.11(2)-RHEL8 (2021-01-28) 00:54:02,514 WARNING org.fedoraproject.Anaconda.Modules.Storage: Library version: 1.02.175-RHEL8 (2021-01-28) 00:54:02,514 WARNING org.fedoraproject.Anaconda.Modules.Storage: Driver version: 4.43.0 00:54:02,514 WARNING org.fedoraproject.Anaconda.Modules.Storage: Configuration: ./configure --build=aarch64-redhat-linux-gnu --host=aarch64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-default-dm-run-dir=/run --with-default-run-dir=/run/lvm --with-default-pid-dir=/run --with-default-locking-dir=/run/lock/lvm --with-usrlibdir=/usr/lib64 --enable-fsadm --enable-write_install --with-user= --with-group= --with-device-uid=0 --with-device-gid=6 --with-device-mode=0660 --enable-pkgconfig --enable-cmdlib --enable-dmeventd --enable-blkid_wiping --with-cluster=internal --with-udevdir=/usr/lib/udev/rules.d --enable-udev_sync --with-thin=internal --with-cache=internal --enable-lvmpolld --enable-lvmlockd-sanlock --enable-dbus-service --enable-notify-dbus --enable-dmfilemapd --with-writecache=internal --with-vdo=internal --with-vdo-format=/usr/bin/vdoformat --with-integrity=internal --disable-silent-rules 00:54:02,514 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[1]: 00:54:02,514 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [1] (exit code: 0) 00:54:02,520 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network. 00:54:02,523 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Network. 00:54:02,534 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Network' 00:54:02,536 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Network started successfully. 00:54:02,538 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Network is available. 00:54:02,539 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:02,545 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:02,547 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Payloads/Packages. 00:54:02,547 WARNING org.fedoraproject.Anaconda.Modules.Payloads:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:02,561 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Payloads. 00:54:02,563 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Payloads. 00:54:02,570 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Payloads' 00:54:02,572 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Payloads started successfully. 00:54:02,573 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Payloads is available. 00:54:02,579 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:02,621 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class LUKS as luks 00:54:02,622 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class Integrity as integrity 00:54:02,632 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class LVMPhysicalVolume as lvmpv 00:54:02,637 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class MDRaidMember as mdmember 00:54:02,641 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class MultipathMember as multipath_member 00:54:02,644 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class PPCPRePBoot as prepboot 00:54:02,655 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:registered device format class SwapSpace as swap 00:54:02,663 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm trigger --action=change --subsystem-match=block 00:54:02,717 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:02,717 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:02,825 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:02,932 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/core/util.py:34: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses 00:54:02,932 WARNING org.fedoraproject.Anaconda.Modules.Storage: import imp 00:54:03,305 INFO dbus-daemon:[system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.11' (uid=0 pid=1760 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:03,309 INFO systemd:Starting Disk Manager... 00:54:03,380 NOTICE journal:udisks daemon version 2.9.0 starting 00:54:03,423 INFO dbus-daemon:[system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.12' (uid=0 pid=1800 comm="/usr/libexec/udisks2/udisksd " label="system_u:system_r:kernel_t:s0") 00:54:03,430 INFO systemd:Starting Authorization Manager... 00:54:03,678 INFO polkitd:Started polkitd version 0.115 00:54:04,087 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:root:reading file= 00:54:04,187 NOTICE polkitd:Loading rules from directory /etc/polkit-1/rules.d 00:54:04,187 NOTICE polkitd:Loading rules from directory /usr/share/polkit-1/rules.d 00:54:04,193 NOTICE polkitd:Finished loading, compiling and executing 3 rules 00:54:04,195 INFO dbus-daemon:[system] Successfully activated service 'org.freedesktop.PolicyKit1' 00:54:04,196 INFO systemd:Started Authorization Manager. 00:54:04,197 NOTICE polkitd:Acquired the name org.freedesktop.PolicyKit1 on the system bus 00:54:04,206 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:root:reading file= 00:54:04,336 INFO dbus-daemon:[system] Successfully activated service 'org.freedesktop.UDisks2' 00:54:04,339 INFO systemd:Started Disk Manager. 00:54:04,360 NOTICE journal:Acquired the name org.freedesktop.UDisks2 on the system message bus 00:54:04,373 NOTICE journal:Loading module iscsi ... 00:54:04,765 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: Caught exception, continuing. 00:54:04,765 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: Problem description: failed to get initiator name from iscsi firmware 00:54:04,766 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: Begin exception details. 00:54:04,768 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: Traceback (most recent call last): 00:54:04,768 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: File "/usr/lib/python3.6/site-packages/blivet/safe_dbus.py", line 141, in call_sync 00:54:04,768 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: DEFAULT_DBUS_TIMEOUT, None) 00:54:04,769 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: GLib.GError: g-io-error-quark: GDBus.Error:org.freedesktop.UDisks2.Error.ISCSI.NoFirmware: No firmware found (36) 00:54:04,769 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: During handling of the above exception, another exception occurred: 00:54:04,769 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: Traceback (most recent call last): 00:54:04,769 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: File "/usr/lib/python3.6/site-packages/blivet/iscsi.py", line 160, in __init__ 00:54:04,770 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: initiatorname = self._call_initiator_method("GetFirmwareInitiatorName")[0] 00:54:04,770 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: File "/usr/lib/python3.6/site-packages/blivet/util.py", line 1103, in decorated 00:54:04,770 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: return fn(*args, **kwargs) 00:54:04,771 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: File "/usr/lib/python3.6/site-packages/blivet/iscsi.py", line 196, in _call_initiator_method 00:54:04,771 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: connection=self._connection) 00:54:04,771 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: File "/usr/lib/python3.6/site-packages/blivet/safe_dbus.py", line 145, in call_sync 00:54:04,771 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: raise DBusCallError(msg) 00:54:04,772 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: blivet.safe_dbus.DBusCallError: Failed to call GetFirmwareInitiatorName method on /org/freedesktop/UDisks2/Manager with None arguments: GDBus.Error:org.freedesktop.UDisks2.Error.ISCSI.NoFirmware: No firmware found 00:54:04,772 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:IGNORED: End exception details. 00:54:05,581 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:The default type is set to 'BootloaderType.DEFAULT'. 00:54:05,582 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.fcoe.fcoe:Start up the FCoE module. 00:54:05,582 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... modprobe libfc 00:54:05,645 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:root:reading file= 00:54:05,670 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:05,671 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... /usr/libexec/fcoe/fcoe_edd.sh -i 00:54:05,678 WARNING org.fedoraproject.Anaconda.Modules.Storage:ERROR:program:Error running /usr/libexec/fcoe/fcoe_edd.sh: No such file or directory: '/usr/libexec/fcoe/fcoe_edd.sh' 00:54:05,678 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:Failed to read FCoE EDD info: No such file or directory: '/usr/libexec/fcoe/fcoe_edd.sh' 00:54:05,679 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.iscsi.iscsi:Start up the iSCSI module. 00:54:05,679 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:ISCSID is /sbin/iscsid 00:54:05,680 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:no initiator set 00:54:05,680 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.zfcp.zfcp:Start up the zFCP module. 00:54:05,682 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [2] e2fsck -V ... 00:54:05,692 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:root:reading file= 00:54:05,695 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:root:reading file= 00:54:05,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[2]: 00:54:05,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[2]: e2fsck 1.45.6 (20-Mar-2020) 00:54:05,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:#011Using EXT2FS Library version 1.45.6, 20-Mar-2020 00:54:05,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [2] (exit code: 0) 00:54:05,779 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:root:reading file= 00:54:05,799 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:05,800 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('ext4') returning Ext4FS instance with object id 0 00:54:05,803 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:05,804 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:trying to set new default fstype to 'ext4' 00:54:05,809 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:05,810 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('ext4') returning Ext4FS instance with object id 1 00:54:05,814 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:05,815 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... lsblk --bytes -a -o NAME,SIZE,OWNER,GROUP,MODE,FSTYPE,LABEL,UUID,PARTUUID,MOUNTPOINT 00:54:05,818 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:root:reading file= 00:54:05,823 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:root:reading file= 00:54:05,851 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:05,852 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:NAME SIZE OWNER GROUP MODE FSTYPE LABEL UUID PARTUUID MOUNTPOINT 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:loop0 584990720 root disk brw-rw---- squashfs 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:loop1 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:|-live-rw 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 / 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:`-live-base 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:loop2 34359738368 root disk brw-rw---- 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:`-live-rw 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 / 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:vda 10737418240 root disk brw-rw---- 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:lsblk output: 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:NAME SIZE OWNER GROUP MODE FSTYPE LABEL UUID PARTUUID MOUNTPOINT 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:loop0 584990720 root disk brw-rw---- squashfs 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:loop1 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:|-live-rw 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 / 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:`-live-base 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:loop2 34359738368 root disk brw-rw---- 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:`-live-rw 3221225472 root disk brw-rw---- ext4 Anaconda 7e7a9636-d983-4638-bac2-985eaa574dd4 / 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:vda 10737418240 root disk brw-rw---- 00:54:05,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:trying to set new default fstype to 'xfs' 00:54:05,861 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS.supported: supported: True ; 00:54:05,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... modprobe --dry-run xfs 00:54:05,874 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:05,874 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('xfs') returning XFS instance with object id 2 00:54:05,879 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS.supported: supported: True ; 00:54:05,879 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.storage:trying to set new default luks version to 'luks2' 00:54:05,884 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LUKS.__init__: luks_version: luks2 ; 00:54:05,885 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('luks') returning LUKS instance with object id 3 00:54:05,885 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:The storage model has changed. 00:54:05,886 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:05,887 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Checker. 00:54:05,887 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:05,895 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/DeviceTree. 00:54:05,899 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/DiskInitialization. 00:54:05,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/DiskSelection. 00:54:05,904 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Snapshot. 00:54:05,906 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Bootloader. 00:54:05,910 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/FCoE. 00:54:05,912 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/iSCSI. 00:54:05,914 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/NVDIMM. 00:54:05,916 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/DASD. 00:54:05,918 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/zFCP. 00:54:05,921 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage. 00:54:05,923 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Storage. 00:54:05,928 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Storage' 00:54:05,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:05,932 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Storage started successfully. 00:54:05,932 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Storage is available. 00:54:07,036 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:07,039 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Localization. 00:54:07,039 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:07,050 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Localization. 00:54:07,057 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Localization' 00:54:07,058 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:07,058 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Localization started successfully. 00:54:07,060 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Localization is available. 00:54:07,095 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.common.base.base:Publish the service. 00:54:07,096 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Timezone. 00:54:07,097 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:anaconda.core.dbus:Connecting to the Anaconda bus at unix:abstract=/tmp/dbus-TXtH3JfACs,guid=027b28106f1bde9bcc1a239d61414427. 00:54:07,111 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:dasbus.connection:Registering a service name org.fedoraproject.Anaconda.Modules.Timezone. 00:54:07,119 INFO dbus-daemon:Successfully activated service 'org.fedoraproject.Anaconda.Modules.Timezone' 00:54:07,121 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.common.base.base:Start the loop. 00:54:07,121 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:Service org.fedoraproject.Anaconda.Modules.Timezone started successfully. 00:54:07,123 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.boss.module_manager.start_modules:org.fedoraproject.Anaconda.Modules.Timezone is available. 00:54:07,128 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.threading:Thread Done: AnaTaskThread-StartModulesTask-1 (281473556672992) 00:54:07,150 INFO anaconda:anaconda: main: Found a kickstart file: /run/install/ks.cfg 00:54:07,322 INFO anaconda:anaconda: kickstart.script: Running kickstart %%pre script(s) 00:54:07,323 INFO anaconda:anaconda: stdout: Running pre-installation scripts 00:54:07,324 INFO anaconda:program: Running... /bin/sh /tmp/ks-script-mrjaprs4 00:54:07,387 DEBUG anaconda:program: Return code: 0 00:54:07,387 INFO anaconda:anaconda: kickstart.script: All kickstart %%pre script(s) have been run 00:54:07,388 DEBUG anaconda:anaconda: addons: Loading ks section into module path for addon com_redhat_kdump 00:54:07,389 INFO kernel: vda: 00:54:07,389 DEBUG anaconda:anaconda: addons: Loading spokes into module path for addon com_redhat_kdump 00:54:07,390 DEBUG anaconda:anaconda: addons: Loading ks section into module path for addon org_fedora_oscap 00:54:07,391 DEBUG anaconda:anaconda: addons: Loading spokes into module path for addon org_fedora_oscap 00:54:07,877 INFO anaconda:anaconda: startup_utils: Parsing kickstart: /run/install/ks.cfg 00:54:07,883 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.boss:Reading a kickstart file at /run/install/ks.cfg. 00:54:08,171 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Timezone handles commands ['timezone'] sections [] addons []. 00:54:08,172 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,181 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.timezone.timezone:Timezone is set to UTC. 00:54:08,182 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.timezone.timezone:UTC is set to True. 00:54:08,183 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.timezone.timezone:NTP is set to True. 00:54:08,184 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.timezone.timezone:NTP servers are set to []. 00:54:08,184 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,201 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Network handles commands ['network', 'firewall'] sections [] addons []. 00:54:08,202 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,218 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:used 'link' for missing network --device options 00:54:08,219 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Hostname is set to localhost.localdomain 00:54:08,219 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.firewall.firewall:Firewall command considered seen in kickstart: True. 00:54:08,221 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.firewall.firewall:Firewall mode will be: FirewallMode.ENABLED 00:54:08,221 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.firewall.firewall:Ports that will be allowed through the firewall: [] 00:54:08,222 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.firewall.firewall:Trusted devices that will be allowed through the firewall: [] 00:54:08,222 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.firewall.firewall:Services that will be allowed through the firewall: ['ssh'] 00:54:08,222 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.firewall.firewall:Services that will be explicitly disabled on the firewall: [] 00:54:08,223 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,238 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Localization handles commands ['keyboard', 'lang'] sections [] addons []. 00:54:08,240 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,248 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Language is set to en_US.UTF-8. 00:54:08,250 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Language support is set to []. 00:54:08,251 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Language seen set to True. 00:54:08,252 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Virtual console keymap is set to . 00:54:08,252 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:X Layouts are set to []. 00:54:08,252 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:X layout switch options are set to []. 00:54:08,252 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Setting keyboard from generic setting value 'us'. 00:54:08,253 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:program:Running... loadkeys us 00:54:08,436 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:program:Return code: 0 00:54:08,436 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Virtual console keymap is set to us. 00:54:08,437 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:X Layouts are set to []. 00:54:08,437 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:keyboard command considered seen in kicksatart: True. 00:54:08,437 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,457 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Security handles commands ['auth', 'authconfig', 'authselect', 'selinux', 'realm'] sections [] addons []. 00:54:08,459 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,465 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.security:SElinux is set to SELinuxMode.ENFORCING. 00:54:08,467 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.security:Authconfig is set to ['--enableshadow', '--passalgo=sha512']. 00:54:08,468 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,486 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Users handles commands ['rootpw', 'user', 'group', 'sshkey'] sections [] addons []. 00:54:08,488 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,499 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.users:Root password set. 00:54:08,500 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.users:Root account has been unlocked. 00:54:08,501 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.users:Can change root password state changed: False. 00:54:08,502 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.users:A new user list has been set: [] 00:54:08,502 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.users:A new group list has been set: [] 00:54:08,503 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.users:A new ssh key list has been set: [] 00:54:08,503 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,521 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Payloads handles commands ['cdrom', 'harddrive', 'hmc', 'liveimg', 'nfs', 'url'] sections [] addons []. 00:54:08,522 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,603 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.payloads:Created the payload PayloadType.DNF. 00:54:08,775 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.source.url.url:The repo_configuration is set to RepoConfigurationData(cost=1000, excluded_packages=[], included_packages=[], name='anaconda-0', proxy='', ssl_configuration=SSLConfigurationData(ca_cert_path='', client_cert_path='', client_key_path=''), ssl_verification_enabled=True, type='BASEURL', url='http://qa.centos.org/centos/8/BaseOS/aarch64/os/') 00:54:08,776 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.payload.payload_base:New sources [Source(type='URL', url='http://qa.centos.org/centos/8/BaseOS/aarch64/os/')] were added. 00:54:08,776 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.payloads:Activated the payload PayloadType.DNF. 00:54:08,778 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,780 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Payloads/Payload/1. 00:54:08,799 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Storage handles commands ['autopart', 'bootloader', 'btrfs', 'clearpart', 'fcoe', 'ignoredisk', 'iscsi', 'iscsiname', 'logvol', 'mount', 'nvdimm', 'part', 'partition', 'raid', 'reqpart', 'snapshot', 'volgroup', 'zerombr', 'zfcp', 'zipl'] sections [] addons []. 00:54:08,801 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:Can format unrecognized is set to 'True'. 00:54:08,864 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:Default disk label is set to ''. 00:54:08,864 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:Can initialize labels is set to 'True'. 00:54:08,864 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:Can format LDL is set to 'False'. 00:54:08,866 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:The initialization mode is set to 'InitializationMode.CLEAR_ALL'. 00:54:08,867 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:Devices to clear are set to '[]'. 00:54:08,867 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_initialization.initialization:Drives to clear are set to '[]'. 00:54:08,868 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_selection.selection:Selected disks are set to '[]'. 00:54:08,868 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_selection.selection:Exclusive disks are set to '[]'. 00:54:08,869 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_selection.selection:Ignored disks are set to '[]'. 00:54:08,870 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:Bootloader mode is set to 'BootloaderMode.ENABLED'. 00:54:08,871 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:Preferred location is set to 'MBR'. 00:54:08,871 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:Drive is set to 'vda'. 00:54:08,871 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:Extra arguments are set to '['console=ttyS0,115200n8', 'no_timer_check', 'crashkernel=auto', 'net.ifnames=0', 'nvme_core.io_timeout=4294967295', 'nvme_core.max_retries=10']'. 00:54:08,872 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:Timeout is set to '1'. 00:54:08,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:Created the partitioning CUSTOM. 00:54:08,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,934 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Partitioning/1. 00:54:08,951 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.kickstart_manager.kickstart_manager:org.fedoraproject.Anaconda.Modules.Services handles commands ['firstboot', 'services', 'skipx', 'xconfig'] sections [] addons []. 00:54:08,952 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.common.base.base:Reading kickstart... 00:54:08,966 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.services:Enabled services are set to ['NetworkManager', 'sshd', 'rsyslog', 'chronyd', 'cloud-init', 'cloud-init-local', 'cloud-config', 'cloud-final', 'rngd']. 00:54:08,966 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.services:Disabled services are set to ['kdump']. 00:54:08,967 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.services:Default desktop is set to . 00:54:08,968 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.services:Setup on boot is set to SetupOnBootAction.DISABLED. 00:54:08,968 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.services:Post installation tools will be disabled. 00:54:08,970 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.common.base.base:Kickstarted is set to True. 00:54:08,985 WARNING anaconda:anaconda: misc: /usr/lib64/python3.6/site-packages/pyanaconda/kickstart.py:530: KickstartParseWarning: The authconfig command will be deprecated, use authselect instead.#012 warnings.warn(warn.message, KickstartParseWarning) 00:54:08,986 WARNING anaconda:anaconda: kickstart: Command keyboard will be parsed in DBus module. 00:54:08,987 WARNING anaconda:anaconda: kickstart: Command rootpw will be parsed in DBus module. 00:54:08,987 WARNING anaconda:anaconda: kickstart: Command url will be parsed in DBus module. 00:54:08,988 WARNING anaconda:anaconda: kickstart: Command lang will be parsed in DBus module. 00:54:08,989 WARNING anaconda:anaconda: kickstart: Command firewall will be parsed in DBus module. 00:54:08,992 WARNING anaconda:anaconda: kickstart: Command network will be parsed in DBus module. 00:54:08,993 WARNING anaconda:anaconda: kickstart: Command network will be parsed in DBus module. 00:54:08,994 WARNING anaconda:anaconda: kickstart: Command timezone will be parsed in DBus module. 00:54:08,995 WARNING anaconda:anaconda: kickstart: Command auth will be parsed in DBus module. 00:54:08,996 WARNING anaconda:anaconda: kickstart: Command firstboot will be parsed in DBus module. 00:54:08,997 WARNING anaconda:anaconda: kickstart: Command selinux will be parsed in DBus module. 00:54:08,998 WARNING anaconda:anaconda: kickstart: Command services will be parsed in DBus module. 00:54:08,999 WARNING anaconda:anaconda: kickstart: Command bootloader will be parsed in DBus module. 00:54:09,000 WARNING anaconda:anaconda: kickstart: Command reqpart will be parsed in DBus module. 00:54:09,001 WARNING anaconda:anaconda: kickstart: Command zerombr will be parsed in DBus module. 00:54:09,002 WARNING anaconda:anaconda: kickstart: Command clearpart will be parsed in DBus module. 00:54:09,002 WARNING anaconda:anaconda: kickstart: Command part will be parsed in DBus module. 00:54:09,056 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:dasbus.connection:Connecting to the system bus. 00:54:09,056 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:dasbus.connection:Connecting to the system bus. 00:54:09,061 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Localization/Task/1. 00:54:09,069 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.threading:Running Thread: AnaTaskThread-ApplyKeyboardTask-1 (281473135669728) 00:54:09,070 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:program:Running... loadkeys us 00:54:09,255 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:program:Return code: 0 00:54:09,256 INFO dbus-daemon:[system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.18' (uid=0 pid=1749 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 00:54:09,267 INFO systemd:Starting Locale Service... 00:54:09,650 INFO dbus-daemon:[system] Successfully activated service 'org.freedesktop.locale1' 00:54:09,651 INFO systemd:Started Locale Service. 00:54:09,730 INFO systemd-localed:Changed X11 keyboard layout to 'us' model '' variant '' options '' 00:54:09,732 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.threading:Thread Done: AnaTaskThread-ApplyKeyboardTask-1 (281473135669728) 00:54:09,733 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Virtual console keymap is set to us. 00:54:09,733 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:X Layouts are set to ['us']. 00:54:10,770 DEBUG anaconda:dnf: User-Agent: constructed: 'libdnf (CentOS Linux 8; generic; Linux.aarch64)' 00:54:10,891 INFO anaconda:packaging: setting DNF platform id to: platform:el8 00:54:10,892 DEBUG anaconda:packaging: getting release version from tree at None (8) 00:54:10,892 DEBUG anaconda:packaging: using default release version of 8 00:54:10,898 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Payloads/Source/1. 00:54:10,918 INFO anaconda:librepo: Librepo version: 1.12.0 with CURL_GLOBAL_ACK_EINTR support (libcurl/7.61.1 OpenSSL/1.1.1g zlib/1.2.11 brotli/1.0.6 libidn2/2.2.0 libpsl/0.20.2 (+libidn2/2.2.0) libssh/0.9.4/openssl/zlib nghttp2/1.33.0) 00:54:10,923 DEBUG NetworkManager: [1631667250.9237] ndisc[0xaaab0311d610,"enp1s0"]: solicit: schedule sending next solicitation in 34.001 seconds 00:54:10,925 DEBUG anaconda:packaging: Dnf configuration:#012[main]#012allow_vendor_change = 1#012assumeno = 0#012assumeyes = 0#012autocheck_running_kernel = 1#012bandwidth = 0#012best = 0#012bugtracker_url = https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=dnf#012cachedir = /tmp/dnf.cache#012cacheonly = 0#012check_config_file_age = 1#012clean_requirements_on_remove = 1#012color = auto#012color_list_available_downgrade = magenta#012color_list_available_install = bold,cyan#012color_list_available_reinstall = bold,underline,green#012color_list_available_upgrade = bold,blue#012color_list_installed_extra = bold,red#012color_list_installed_newer = bold,yellow#012color_list_installed_older = yellow#012color_list_installed_reinstall = cyan#012color_search_match = bold,magenta#012color_update_installed = red#012color_update_local = green#012color_update_remote = bold,green#012config_file_path = /etc/dnf/dnf.conf#012countme = 0#012debug_solver = 0#012debuglevel = 2#012defaultyes = 0#012deltarpm = 1#012deltarpm_percentage = 75#012disable_excludes = #012diskspacecheck = 1#012enabled = 1#012enablegroups = 1#012errorlevel = 3#012exclude = #012excludepkgs = #012exit_on_lock = 0#012fastestmirror = 0#012gpgcheck = 0#012gpgkey_dns_verification = 0#012group_package_types = mandatory, default, conditional#012history_list_view = commands#012history_record = 1#012history_record_packages = dnf, rpm#012ignorearch = 0#012includepkgs = #012install_weak_deps = 1#012installonly_limit = 3#012installonlypkgs = kernel, kernel-PAE, installonlypkg(kernel), installonlypkg(kernel-module), installonlypkg(vm), multiversion(kernel)#012installroot = /mnt/sysroot#012ip_resolve = whatever#012keepcache = 0#012localpkg_gpgcheck = 0#012log_compress = 0#012log_rotate = 4#012log_size = 1048576#012logdir = /tmp/#012logfilelevel = 9#012max_parallel_downloads = 3#012metadata_expire = 172800#012metadata_timer_sync = 10800#012minrate = 1000#012module_platform_id = platform:el8#012module_stream_switch = 0#012multilib_policy = best#012obsoletes = 1#012password = #012persistdir = /mnt/sysroot/var/lib/dnf#012pluginconfpath = /tmp/dnf.pluginconf#012pluginpath = /usr/lib/python3.6/site-packages/dnf-plugins#012plugins = 1#012protect_running_kernel = 1#012protected_packages = dnf, dnf, systemd, systemd-udev, setup#012proxy = #012proxy_auth_method = any#012recent = 7#012repo_gpgcheck = 0#012reposdir = /etc/yum.repos.d, /etc/anaconda.repos.d, /tmp/updates/anaconda.repos.d, /tmp/product/anaconda.repos.d#012reset_nice = 1#012retries = 10#012rpmverbosity = info#012showdupesfromrepos = 0#012skip_broken = 0#012skip_if_unavailable = 0#012sslcacert = #012sslclientcert = #012sslclientkey = #012sslverify = 1#012strict = 1#012system_cachedir = /var/cache/dnf#012throttle = 0#012timeout = 30#012transformdb = 1#012tsflags = #012upgrade_group_objects_upgrade = 1#012user_agent = libdnf (CentOS Linux 8; generic; Linux.aarch64)#012username = #012varsdir = /etc/yum/vars, /etc/dnf/vars#012zchunk = 1 00:54:10,965 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.source.url.url:The repo_configuration is set to RepoConfigurationData(cost=1000, excluded_packages=[], included_packages=[], name='anaconda-0', proxy='', ssl_configuration=SSLConfigurationData(ca_cert_path='', client_cert_path='', client_key_path=''), ssl_verification_enabled=True, type='BASEURL', url='http://qa.centos.org/centos/8/BaseOS/aarch64/os/') 00:54:10,973 DEBUG anaconda:dnf: User-Agent: constructed: 'libdnf (CentOS Linux 8; generic; Linux.aarch64)' 00:54:10,980 INFO anaconda:packaging: setting DNF platform id to: platform:el8 00:54:10,981 DEBUG anaconda:packaging: getting release version from tree at None (8) 00:54:10,981 DEBUG anaconda:packaging: using default release version of 8 00:54:11,003 INFO anaconda:librepo: Librepo version: 1.12.0 with CURL_GLOBAL_ACK_EINTR support (libcurl/7.61.1 OpenSSL/1.1.1g zlib/1.2.11 brotli/1.0.6 libidn2/2.2.0 libpsl/0.20.2 (+libidn2/2.2.0) libssh/0.9.4/openssl/zlib nghttp2/1.33.0) 00:54:11,009 DEBUG anaconda:packaging: Dnf configuration:#012[main]#012allow_vendor_change = 1#012assumeno = 0#012assumeyes = 0#012autocheck_running_kernel = 1#012bandwidth = 0#012best = 0#012bugtracker_url = https://bugzilla.redhat.com/enter_bug.cgi?product=Fedora&component=dnf#012cachedir = /tmp/dnf.cache#012cacheonly = 0#012check_config_file_age = 1#012clean_requirements_on_remove = 1#012color = auto#012color_list_available_downgrade = magenta#012color_list_available_install = bold,cyan#012color_list_available_reinstall = bold,underline,green#012color_list_available_upgrade = bold,blue#012color_list_installed_extra = bold,red#012color_list_installed_newer = bold,yellow#012color_list_installed_older = yellow#012color_list_installed_reinstall = cyan#012color_search_match = bold,magenta#012color_update_installed = red#012color_update_local = green#012color_update_remote = bold,green#012config_file_path = /etc/dnf/dnf.conf#012countme = 0#012debug_solver = 0#012debuglevel = 2#012defaultyes = 0#012deltarpm = 1#012deltarpm_percentage = 75#012disable_excludes = #012diskspacecheck = 1#012enabled = 1#012enablegroups = 1#012errorlevel = 3#012exclude = #012excludepkgs = #012exit_on_lock = 0#012fastestmirror = 0#012gpgcheck = 0#012gpgkey_dns_verification = 0#012group_package_types = mandatory, default, conditional#012history_list_view = commands#012history_record = 1#012history_record_packages = dnf, rpm#012ignorearch = 0#012includepkgs = #012install_weak_deps = 1#012installonly_limit = 3#012installonlypkgs = kernel, kernel-PAE, installonlypkg(kernel), installonlypkg(kernel-module), installonlypkg(vm), multiversion(kernel)#012installroot = /mnt/sysroot#012ip_resolve = whatever#012keepcache = 0#012localpkg_gpgcheck = 0#012log_compress = 0#012log_rotate = 4#012log_size = 1048576#012logdir = /tmp/#012logfilelevel = 9#012max_parallel_downloads = 3#012metadata_expire = 172800#012metadata_timer_sync = 10800#012minrate = 1000#012module_platform_id = platform:el8#012module_stream_switch = 0#012multilib_policy = best#012obsoletes = 1#012password = #012persistdir = /mnt/sysroot/var/lib/dnf#012pluginconfpath = /tmp/dnf.pluginconf#012pluginpath = /usr/lib/python3.6/site-packages/dnf-plugins#012plugins = 1#012protect_running_kernel = 1#012protected_packages = dnf, dnf, systemd, systemd-udev, setup#012proxy = #012proxy_auth_method = any#012recent = 7#012repo_gpgcheck = 0#012reposdir = /etc/yum.repos.d, /etc/anaconda.repos.d, /tmp/updates/anaconda.repos.d, /tmp/product/anaconda.repos.d#012reset_nice = 1#012retries = 10#012rpmverbosity = info#012showdupesfromrepos = 0#012skip_broken = 0#012skip_if_unavailable = 0#012sslcacert = #012sslclientcert = #012sslclientkey = #012sslverify = 1#012strict = 1#012system_cachedir = /var/cache/dnf#012throttle = 0#012timeout = 30#012transformdb = 1#012tsflags = #012upgrade_group_objects_upgrade = 1#012user_agent = libdnf (CentOS Linux 8; generic; Linux.aarch64)#012username = #012varsdir = /etc/yum/vars, /etc/dnf/vars#012zchunk = 1 00:54:11,034 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.localization.localization:Language is set to en_US.UTF-8. 00:54:11,038 DEBUG anaconda:anaconda: localization: setting locale to: en_US.UTF-8 00:54:11,042 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.boss:Setting locale of all modules to en_US.UTF-8. 00:54:11,043 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,043 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.boss.module_manager.module_manager:Setting locale of all modules to en_US.UTF-8. 00:54:11,045 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,047 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,050 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,052 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,055 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,057 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,060 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,063 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.common.base.base:Locale is set to en_US.UTF-8. 00:54:11,065 DEBUG anaconda:anaconda: network: Initialization started. 00:54:11,072 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Dumping configuration state - Initialization started. 00:54:11,075 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'autoconnect-retries': <1>, 'id': <'Wired Connection'>, 'multi-connect': <3>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'a7b6f21e-0f48-49b0-b77e-155e6110a87d'>, 'wait-device-timeout': <60000>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dhcp-vendor-class-identifier': <'anaconda-Linux'>, 'dns': <@au []>, 'dns-search': <@as []>, 'may-fail': , 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:11,087 DEBUG anaconda:anaconda: network: Devices found: ['enp1s0'] 00:54:11,090 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/1. 00:54:11,098 DEBUG anaconda:anaconda: network: Running task Consolidate initramfs connections 00:54:11,100 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConsolidateInitramfsConnectionsTask-1 (281473311830496) 00:54:11,102 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConsolidateInitramfsConnectionsTask-1 (281473311830496) 00:54:11,103 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Consolidate initramfs connections result: [] 00:54:11,113 DEBUG anaconda:anaconda: network: Consolidate initramfs connections result: [] 00:54:11,115 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/2. 00:54:11,124 DEBUG anaconda:anaconda: network: Running task Apply kickstart 00:54:11,126 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-ApplyKickstartTask-1 (281473311830496) 00:54:11,127 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:kickstart specification --device=link -> enp1s0 (first device with link found) 00:54:11,128 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.ifcfg:Ifcfg file for enp1s0 not found 00:54:11,129 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.initialization:Apply kickstart: pre kickstart - adding connection for enp1s0 00:54:11,137 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:Bind to device: enp1s0 -> enp1s0 00:54:11,138 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:add connection: abd15c20-86d1-42db-a7d7-7b2d19fd8708 for enp1s0 00:54:11,138 WARNING org.fedoraproject.Anaconda.Modules.Network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}> Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11890/12000 }, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}} 00:54:11,140 WARNING org.fedoraproject.Anaconda.Modules.Network:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/modules/network/nm_client.py:458: Warning: g_main_context_push_thread_default: assertion 'acquired_context' failed 00:54:11,140 WARNING org.fedoraproject.Anaconda.Modules.Network: device_to_activate 00:54:11,141 WARNING org.fedoraproject.Anaconda.Modules.Network:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/modules/network/nm_client.py:458: Warning: g_main_context_pop_thread_default: assertion 'stack != NULL' failed 00:54:11,141 WARNING org.fedoraproject.Anaconda.Modules.Network: device_to_activate 00:54:11,141 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:kickstart specification --device=link -> enp1s0 (first device with link found) 00:54:11,142 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.ifcfg:Ifcfg file for enp1s0 not found 00:54:11,142 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.initialization:Apply kickstart: pre kickstart - adding connection for enp1s0 00:54:11,143 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:Bind to device: enp1s0 -> enp1s0 00:54:11,144 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:add connection: 4379aba0-6b8b-420b-b650-2795f5b95107 for enp1s0 00:54:11,144 WARNING org.fedoraproject.Anaconda.Modules.Network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'4379aba0-6b8b-420b-b650-2795f5b95107'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}} 00:54:11,145 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-ApplyKickstartTask-1 (281473311830496) 00:54:11,146 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Apply kickstart result: ['enp1s0', 'enp1s0'] 00:54:11,146 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Dumping configuration state - Apply kickstart 00:54:11,146 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/etc/sysconfig/network-scripts/ifcfg-enp1s0: 00:54:11,146 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 00:54:11,147 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 00:54:11,147 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 00:54:11,147 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 00:54:11,147 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 00:54:11,147 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 00:54:11,148 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 00:54:11,148 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 00:54:11,148 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 00:54:11,148 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 00:54:11,148 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 00:54:11,148 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=abd15c20-86d1-42db-a7d7-7b2d19fd8708 00:54:11,149 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 00:54:11,149 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 00:54:11,149 DEBUG NetworkManager: [1631667251.1498] ++ connection 'new connection' (0xaaab03099ce0/NMSimpleConnection/"802-3-ethernet"): [/org/freedesktop/NetworkManager/Settings/2] 00:54:11,150 DEBUG NetworkManager: [1631667251.1499] ++ connection [ 0xaaab030cd0e0 ] 00:54:11,150 DEBUG NetworkManager: [1631667251.1500] ++ connection.id = 'enp1s0' 00:54:11,150 DEBUG NetworkManager: [1631667251.1500] ++ connection.interface-name = 'enp1s0' 00:54:11,150 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'autoconnect-retries': <1>, 'id': <'Wired Connection'>, 'multi-connect': <3>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'a7b6f21e-0f48-49b0-b77e-155e6110a87d'>, 'wait-device-timeout': <60000>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dhcp-vendor-class-identifier': <'anaconda-Linux'>, 'dns': <@au []>, 'dns-search': <@as []>, 'may-fail': , 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:11,150 DEBUG NetworkManager: [1631667251.1501] ++ connection.permissions = [] 00:54:11,151 DEBUG NetworkManager: [1631667251.1501] ++ connection.type = '802-3-ethernet' 00:54:11,151 DEBUG NetworkManager: [1631667251.1502] ++ connection.uuid = 'abd15c20-86d1-42db-a7d7-7b2d19fd8708' 00:54:11,151 DEBUG NetworkManager: [1631667251.1503] ++ 802-3-ethernet [ 0xaaab030e8930 ] 00:54:11,151 DEBUG NetworkManager: [1631667251.1503] ++ 802-3-ethernet.mac-address-blacklist = [] 00:54:11,151 DEBUG NetworkManager: [1631667251.1504] ++ 802-3-ethernet.s390-options = ((GHashTable*) 0xffff7c028800) 00:54:11,152 DEBUG NetworkManager: [1631667251.1504] ++ ipv4 [ 0xaaab030fa9f0 ] 00:54:11,152 DEBUG NetworkManager: [1631667251.1505] ++ ipv4.addresses = ((GPtrArray*) 0xaaab0319f460) 00:54:11,152 DEBUG NetworkManager: [1631667251.1505] ++ ipv4.dns = [] 00:54:11,152 DEBUG NetworkManager: [1631667251.1506] ++ ipv4.dns-search = [] 00:54:11,152 DEBUG NetworkManager: [1631667251.1506] ++ ipv4.method = 'auto' 00:54:11,153 DEBUG NetworkManager: [1631667251.1507] ++ ipv4.routes = ((GPtrArray*) 0xaaab0319f2e0) 00:54:11,153 DEBUG NetworkManager: [1631667251.1507] ++ ipv4.routing-rules = 00:54:11,153 DEBUG NetworkManager: [1631667251.1508] ++ ipv6 [ 0xaaab030faac0 ] 00:54:11,153 DEBUG NetworkManager: [1631667251.1509] ++ ipv6.addr-gen-mode = 0 00:54:11,153 DEBUG NetworkManager: [1631667251.1509] ++ ipv6.addresses = ((GPtrArray*) 0xaaab03191460) 00:54:11,153 DEBUG NetworkManager: [1631667251.1510] ++ ipv6.dns = [] 00:54:11,154 DEBUG NetworkManager: [1631667251.1510] ++ ipv6.dns-search = [] 00:54:11,154 DEBUG NetworkManager: [1631667251.1511] ++ ipv6.method = 'auto' 00:54:11,154 DEBUG NetworkManager: [1631667251.1511] ++ ipv6.routes = ((GPtrArray*) 0xaaab0319d4e0) 00:54:11,154 DEBUG NetworkManager: [1631667251.1512] ++ ipv6.routing-rules = 00:54:11,154 DEBUG NetworkManager: [1631667251.1521] create NMAuditManager singleton (faa07b54e4b818a3) 00:54:11,155 INFO NetworkManager: [1631667251.1522] audit: op="connection-add" uuid="abd15c20-86d1-42db-a7d7-7b2d19fd8708" name="enp1s0" pid=1758 uid=0 result="success" 00:54:11,155 DEBUG NetworkManager: [1631667251.1527] Saving secrets for connection /org/freedesktop/NetworkManager/Settings/2 (enp1s0) 00:54:11,159 DEBUG NetworkManager: [1631667251.1589] ++ connection 'new connection' (0xaaab0319e980/NMSimpleConnection/"802-3-ethernet"): [/org/freedesktop/NetworkManager/Settings/3] 00:54:11,159 DEBUG NetworkManager: [1631667251.1590] ++ connection [ 0xaaab030cd620 ] 00:54:11,159 DEBUG NetworkManager: [1631667251.1591] ++ connection.id = 'enp1s0' 00:54:11,159 DEBUG NetworkManager: [1631667251.1592] ++ connection.interface-name = 'enp1s0' 00:54:11,159 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:connection abd15c20-86d1-42db-a7d7-7b2d19fd8708 added: 00:54:11,159 WARNING org.fedoraproject.Anaconda.Modules.Network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:11,160 DEBUG NetworkManager: [1631667251.1592] ++ connection.permissions = [] 00:54:11,160 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:activating with device enp1s0 00:54:11,161 DEBUG NetworkManager: [1631667251.1593] ++ connection.type = '802-3-ethernet' 00:54:11,161 DEBUG NetworkManager: [1631667251.1593] ++ connection.uuid = '4379aba0-6b8b-420b-b650-2795f5b95107' 00:54:11,161 DEBUG NetworkManager: [1631667251.1594] ++ 802-3-ethernet [ 0xaaab030e8ed0 ] 00:54:11,161 DEBUG NetworkManager: [1631667251.1594] ++ 802-3-ethernet.mac-address-blacklist = [] 00:54:11,161 DEBUG NetworkManager: [1631667251.1595] ++ 802-3-ethernet.s390-options = ((GHashTable*) 0xffff7c029640) 00:54:11,162 DEBUG NetworkManager: [1631667251.1595] ++ ipv4 [ 0xaaab030f68e0 ] 00:54:11,162 DEBUG NetworkManager: [1631667251.1596] ++ ipv4.addresses = ((GPtrArray*) 0xaaab0319f8e0) 00:54:11,162 DEBUG NetworkManager: [1631667251.1596] ++ ipv4.dns = [] 00:54:11,162 DEBUG NetworkManager: [1631667251.1597] ++ ipv4.dns-search = [] 00:54:11,162 DEBUG NetworkManager: [1631667251.1597] ++ ipv4.method = 'auto' 00:54:11,162 DEBUG NetworkManager: [1631667251.1598] ++ ipv4.routes = ((GPtrArray*) 0xaaab0319f880) 00:54:11,163 DEBUG NetworkManager: [1631667251.1598] ++ ipv4.routing-rules = 00:54:11,163 DEBUG NetworkManager: [1631667251.1599] ++ ipv6 [ 0xaaab030f69b0 ] 00:54:11,163 DEBUG NetworkManager: [1631667251.1599] ++ ipv6.addr-gen-mode = 0 00:54:11,163 DEBUG NetworkManager: [1631667251.1600] ++ ipv6.addresses = ((GPtrArray*) 0xaaab0319f840) 00:54:11,163 DEBUG NetworkManager: [1631667251.1600] ++ ipv6.dns = [] 00:54:11,164 DEBUG NetworkManager: [1631667251.1601] ++ ipv6.dns-search = [] 00:54:11,164 DEBUG NetworkManager: [1631667251.1602] ++ ipv6.method = 'auto' 00:54:11,164 DEBUG NetworkManager: [1631667251.1602] ++ ipv6.routes = ((GPtrArray*) 0xaaab0309ad80) 00:54:11,164 DEBUG NetworkManager: [1631667251.1603] ++ ipv6.routing-rules = 00:54:11,164 INFO NetworkManager: [1631667251.1612] audit: op="connection-add" uuid="4379aba0-6b8b-420b-b650-2795f5b95107" name="enp1s0" pid=1758 uid=0 result="success" 00:54:11,164 DEBUG NetworkManager: [1631667251.1618] Saving secrets for connection /org/freedesktop/NetworkManager/Settings/3 (enp1s0) 00:54:11,165 DEBUG NetworkManager: [1631667251.1621] active-connection[0xaaab0311de00]: set device "enp1s0" [0xaaab03178850] 00:54:11,165 DEBUG NetworkManager: [1631667251.1622] device[28976bd3d15055d4] (enp1s0): add_pending_action (1): 'activation-2' 00:54:11,165 DEBUG NetworkManager: [1631667251.1627] active-connection[0xaaab0311de00]: constructed (NMActRequest, version-id 2, type managed) 00:54:11,165 DEBUG NetworkManager: [1631667251.1645] device[28976bd3d15055d4] (enp1s0): queue activation request waiting for currently active connection to disconnect 00:54:11,166 INFO NetworkManager: [1631667251.1646] device (enp1s0): disconnecting for new activation request. 00:54:11,166 INFO NetworkManager: [1631667251.1646] device (enp1s0): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed') 00:54:11,166 DEBUG NetworkManager: [1631667251.1646] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'in-state-change' 00:54:11,166 DEBUG NetworkManager: [1631667251.1657] active-connection[0xaaab0311c930]: set state deactivating (was activated) 00:54:11,166 INFO NetworkManager: [1631667251.1663] manager: NetworkManager state is now DISCONNECTING 00:54:11,167 DEBUG NetworkManager: [1631667251.1671] active-connection[0xaaab0311c930]: check-master-ready: not signalling (state deactivating, no master) 00:54:11,168 DEBUG NetworkManager: [1631667251.1684] manager: ActivatingConnection now (none) 00:54:11,169 DEBUG NetworkManager: [1631667251.1687] dispatcher: (6) (enp1s0) dispatching action 'pre-down' (with callback) 00:54:11,171 DEBUG NetworkManager: [1631667251.1701] device[28976bd3d15055d4] (enp1s0): connectivity state changed from FULL to NONE 00:54:11,171 INFO dbus-daemon:[system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.3' (uid=0 pid=1606 comm="/usr/sbin/NetworkManager --no-daemon " label="system_u:system_r:kernel_t:s0") 00:54:11,172 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NeworkManager state changed to 00:54:11,172 DEBUG NetworkManager: [1631667251.1704] device[28976bd3d15055d4] (enp1s0): connectivity state changed from FULL to NONE 00:54:11,172 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: False 00:54:11,172 DEBUG NetworkManager: [1631667251.1706] manager: connectivity checking indicates NONE 00:54:11,172 DEBUG NetworkManager: [1631667251.1709] dispatcher: (7) dispatching action 'connectivity-change' 00:54:11,173 DEBUG NetworkManager: [1631667251.1711] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'in-state-change' 00:54:11,173 INFO NetworkManager: [1631667251.1713] audit: op="connection-activate" uuid="abd15c20-86d1-42db-a7d7-7b2d19fd8708" name="enp1s0" pid=1758 uid=0 result="success" 00:54:11,173 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:connection 4379aba0-6b8b-420b-b650-2795f5b95107 added: 00:54:11,173 WARNING org.fedoraproject.Anaconda.Modules.Network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'4379aba0-6b8b-420b-b650-2795f5b95107'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:11,179 INFO systemd:Starting Network Manager Script Dispatcher Service... 00:54:11,201 INFO dbus-daemon:[system] Successfully activated service 'org.freedesktop.nm_dispatcher' 00:54:11,202 INFO systemd:Started Network Manager Script Dispatcher Service. 00:54:11,205 INFO nm-dispatcher:req:1 'pre-down' [enp1s0]: new request (0 scripts) 00:54:11,205 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: CONNECTION_DBUS_PATH=/org/freedesktop/NetworkManager/Settings/1 00:54:11,206 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: CONNECTION_FILENAME=/run/NetworkManager/system-connections/default_connection.nmconnection 00:54:11,206 DEBUG NetworkManager: [1631667251.2059] dispatcher: (6) succeeded but no scripts invoked 00:54:11,206 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: CONNECTION_UUID=a7b6f21e-0f48-49b0-b77e-155e6110a87d 00:54:11,206 DEBUG NetworkManager: [1631667251.2059] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'queued-state-change-disconnected' 00:54:11,207 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: CONNECTION_ID=Wired Connection 00:54:11,207 DEBUG NetworkManager: [1631667251.2060] device[28976bd3d15055d4] (enp1s0): queue-state[disconnected, reason:new-activation, id:135]: queue state change 00:54:11,207 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: DEVICE_IFACE=enp1s0 00:54:11,207 DEBUG NetworkManager: [1631667251.2061] device[28976bd3d15055d4] (enp1s0): queue-state[disconnected, reason:new-activation, id:135]: change state 00:54:11,207 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: DEVICE_IP_IFACE=enp1s0 00:54:11,208 INFO NetworkManager: [1631667251.2062] device (enp1s0): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed') 00:54:11,208 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,208 DEBUG NetworkManager: [1631667251.2062] device[28976bd3d15055d4] (enp1s0): add_pending_action (3): 'in-state-change' 00:54:11,208 DEBUG nm-dispatcher:req:1 'pre-down' [enp1s0]: environment: NM_DISPATCHER_ACTION=pre-down 00:54:11,208 DEBUG NetworkManager: [1631667251.2062] device[28976bd3d15055d4] (enp1s0): will enable userland IPv6LL 00:54:11,209 INFO nm-dispatcher:req:1 'pre-down' [enp1s0]: completed: no scripts 00:54:11,209 DEBUG NetworkManager: [1631667251.2063] platform-linux: link: change 2: user-ipv6ll: set IPv6 address generation mode to none 00:54:11,209 INFO nm-dispatcher:req:2 'connectivity-change': new request (2 scripts) 00:54:11,209 DEBUG NetworkManager: [1631667251.2065] platform-linux: do-request-link: 2 00:54:11,209 DEBUG nm-dispatcher:req:2 'connectivity-change': environment: CONNECTIVITY_STATE=NONE 00:54:11,209 DEBUG NetworkManager: [1631667251.2066] platform: (enp1s0) signal: link changed: 2: enp1s0 mtu 1500 arp 1 ethernet? init addrgenmode none addr 52:54:00:AF:B9:5E brd FF:FF:FF:FF:FF:FF driver virtio_net rx:395552,611120343 tx:158285,10449285 00:54:11,210 DEBUG nm-dispatcher:req:2 'connectivity-change': environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,210 DEBUG NetworkManager: [1631667251.2067] device[28976bd3d15055d4] (enp1s0): queued link change for ifindex 2 00:54:11,210 DEBUG nm-dispatcher:req:2 'connectivity-change': environment: NM_DISPATCHER_ACTION=connectivity-change 00:54:11,210 DEBUG NetworkManager: [1631667251.2069] platform-linux: do-change-link[2]: success changing link: success 00:54:11,210 INFO nm-dispatcher:req:2 'connectivity-change': start running ordered scripts... 00:54:11,211 DEBUG NetworkManager: [1631667251.2071] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/disable_ipv6' to '1' (current value is '0') 00:54:11,211 DEBUG nm-dispatcher:req:2 'connectivity-change', "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": run script 00:54:11,211 DEBUG NetworkManager: [1631667251.2076] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/disable_ipv6' to '0' (current value is '1') 00:54:11,211 DEBUG nm-dispatcher:req:2 'connectivity-change', "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": complete 00:54:11,212 DEBUG NetworkManager: [1631667251.2079] device[28976bd3d15055d4] (enp1s0): deactivating device (reason 'new-activation') [60] 00:54:11,212 DEBUG nm-dispatcher:req:2 'connectivity-change', "/etc/NetworkManager/dispatcher.d/20-chrony": run script 00:54:11,212 DEBUG NetworkManager: [1631667251.2080] firewall: [bdd59fc02735a24d,remove*:"enp1s0"]: firewall zone remove enp1s0:default (not running, simulate success) 00:54:11,212 DEBUG NetworkManager: [1631667251.2080] firewall: [bdd59fc02735a24d,remove*:"enp1s0"]: complete: drop request simulating success 00:54:11,214 DEBUG nm-dispatcher:req:2 'connectivity-change', "/etc/NetworkManager/dispatcher.d/20-chrony": complete 00:54:11,214 DEBUG nm-dispatcher:req:2 'connectivity-change': completed (2 scripts) 00:54:11,269 INFO NetworkManager: [1631667251.2691] dhcp4 (enp1s0): canceled DHCP transaction 00:54:11,269 INFO NetworkManager: [1631667251.2692] dhcp4 (enp1s0): state changed bound -> done 00:54:11,270 DEBUG NetworkManager: [1631667251.2702] ndisc[0xaaab0311d610,"enp1s0"]: stopping neighbor discovery for ifindex 2 00:54:11,270 DEBUG NetworkManager: [1631667251.2704] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/use_tempaddr' to '0' (current value is identical) 00:54:11,270 DEBUG NetworkManager: [1631667251.2705] platform: (enp1s0) ip4-route: delete type unicast 0.0.0.0/0 via 192.168.122.1 dev 2 metric 100 mss 0 rt-src rt-dhcp scope global 00:54:11,271 DEBUG NetworkManager: [1631667251.2706] platform: (enp1s0) signal: route 6 removed: type unicast fe80::/64 via :: dev 2 metric 100 mss 0 rt-src rt-kernel 00:54:11,271 DEBUG NetworkManager: [1631667251.2707] device[28976bd3d15055d4] (enp1s0): queued IP6 config change 00:54:11,271 DEBUG NetworkManager: [1631667251.2708] platform: (enp1s0) signal: route 6 removed: type local table 255 fe80::5054:ff:feaf:b95e/128 via :: dev 2 metric 0 mss 0 rt-src rt-kernel 00:54:11,271 DEBUG NetworkManager: [1631667251.2709] platform: (enp1s0) signal: route 6 removed: type unicast table 255 ff00::/8 via :: dev 2 metric 256 mss 0 rt-src rt-boot 00:54:11,271 DEBUG NetworkManager: [1631667251.2710] platform: (enp1s0) signal: address 6 removed: fe80::5054:ff:feaf:b95e/64 lft forever pref forever lifetime 31-0[4294967295,4294967295] dev 2 flags permanent,noprefixroute src kernel 00:54:11,272 DEBUG NetworkManager: [1631667251.2711] platform: (enp1s0) signal: route 6 added: type unicast table 255 ff00::/8 via :: dev 2 metric 256 mss 0 rt-src rt-boot 00:54:11,272 DEBUG NetworkManager: [1631667251.2713] platform: (enp1s0) signal: route 4 removed: type unicast 0.0.0.0/0 via 192.168.122.1 dev 2 metric 100 mss 0 rt-src rt-dhcp scope global 00:54:11,272 DEBUG NetworkManager: [1631667251.2714] device[28976bd3d15055d4] (enp1s0): queued IP4 config change 00:54:11,272 DEBUG NetworkManager: [1631667251.2715] platform-linux: do-delete-ip4-route[type unicast 0.0.0.0/0 via 192.168.122.1 dev 2 metric 100 mss 0 rt-src rt-dhcp scope global]: success 00:54:11,272 DEBUG NetworkManager: [1631667251.2716] platform: (enp1s0) ip4-route: delete type unicast 192.168.122.0/24 via 0.0.0.0 dev 2 metric 100 mss 0 rt-src rt-kernel scope link pref-src 192.168.122.219 00:54:11,272 DEBUG NetworkManager: [1631667251.2717] platform: (enp1s0) signal: route 4 removed: type unicast 192.168.122.0/24 via 0.0.0.0 dev 2 metric 100 mss 0 rt-src rt-kernel scope link pref-src 192.168.122.219 00:54:11,273 DEBUG NetworkManager: [1631667251.2718] platform-linux: do-delete-ip4-route[type unicast 192.168.122.0/24 via 0.0.0.0 dev 2 metric 100 mss 0 rt-src rt-kernel scope link pref-src 192.168.122.219]: success 00:54:11,273 DEBUG NetworkManager: [1631667251.2719] platform: (enp1s0) ip4-route: delete type local table 255 192.168.122.219/32 via 0.0.0.0 dev 2 metric 0 mss 0 rt-src rt-kernel scope host pref-src 192.168.122.219 00:54:11,273 DEBUG NetworkManager: [1631667251.2720] platform: (enp1s0) signal: route 4 removed: type local table 255 192.168.122.219/32 via 0.0.0.0 dev 2 metric 0 mss 0 rt-src rt-kernel scope host pref-src 192.168.122.219 00:54:11,273 DEBUG NetworkManager: [1631667251.2721] platform-linux: do-delete-ip4-route[type local table 255 192.168.122.219/32 via 0.0.0.0 dev 2 metric 0 mss 0 rt-src rt-kernel scope host pref-src 192.168.122.219]: success 00:54:11,273 DEBUG NetworkManager: [1631667251.2721] platform: (enp1s0) ip6-route: delete type unicast table 255 ff00::/8 via :: dev 2 metric 256 mss 0 rt-src rt-boot 00:54:11,274 DEBUG NetworkManager: [1631667251.2723] platform: (enp1s0) signal: route 6 removed: type unicast table 255 ff00::/8 via :: dev 2 metric 256 mss 0 rt-src rt-boot 00:54:11,274 DEBUG NetworkManager: [1631667251.2723] platform-linux: do-delete-ip6-route[type unicast table 255 ff00::/8 via :: dev 2 metric 256 mss 0 rt-src rt-boot]: success 00:54:11,274 DEBUG NetworkManager: [1631667251.2724] platform: (enp1s0) address: deleting IPv4 address 192.168.122.219/24, dev enp1s0 00:54:11,274 DEBUG NetworkManager: [1631667251.2725] platform: (enp1s0) signal: address 4 removed: 192.168.122.219/24 brd 192.168.122.255 lft 3571sec pref 3571sec lifetime 31-2[3600,3600] dev 2 flags noprefixroute src kernel 00:54:11,274 DEBUG NetworkManager: [1631667251.2727] platform-linux: do-delete-ip4-address[2: 192.168.122.219/24]: success 00:54:11,274 DEBUG NetworkManager: [1631667251.2728] rules-manager: sync 00:54:11,275 DEBUG NetworkManager: [1631667251.2728] device[28976bd3d15055d4] (enp1s0): set metered value 0 00:54:11,275 DEBUG NetworkManager: [1631667251.2732] manager: new metered value: 0 00:54:11,275 DEBUG NetworkManager: [1631667251.2735] device[28976bd3d15055d4] (enp1s0): ip4-config: update (commit=1, new-config=7a3def21a771801d, route-table-sync-mode=0) 00:54:11,275 DEBUG NetworkManager: [1631667251.2736] device[28976bd3d15055d4] (enp1s0): ip4-config: clear IP Config instance (/org/freedesktop/NetworkManager/IP4Config/1) 00:54:11,275 DEBUG NetworkManager: [1631667251.2743] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,276 DEBUG NetworkManager: [1631667251.2743] dns-mgr: (device_ip_config_changed): DNS configuration changed 00:54:11,276 DEBUG NetworkManager: [1631667251.2744] dns-mgr: (device_ip_config_changed): committing DNS changes (0) 00:54:11,276 DEBUG NetworkManager: [1631667251.2744] dns-mgr: update-dns: updating resolv.conf 00:54:11,277 DEBUG NetworkManager: [1631667251.2776] device[28976bd3d15055d4] (enp1s0): ip6-config: update (commit=1, new-config=7a3def21a771801d, route-table-sync-mode=0) 00:54:11,277 DEBUG NetworkManager: [1631667251.2776] device[28976bd3d15055d4] (enp1s0): ip6-config: clear IP Config instance (/org/freedesktop/NetworkManager/IP6Config/1) 00:54:11,278 DEBUG NetworkManager: [1631667251.2785] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,278 DEBUG NetworkManager: [1631667251.2786] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,279 DEBUG NetworkManager: [1631667251.2786] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,281 DEBUG NetworkManager: [1631667251.2809] active-connection[0xaaab0311c930]: set state deactivated (was deactivating) 00:54:11,282 INFO NetworkManager: [1631667251.2815] manager: NetworkManager state is now DISCONNECTED 00:54:11,282 DEBUG NetworkManager: [1631667251.2820] active-connection[0xaaab0311c930]: check-master-ready: not signalling (state deactivated, no master) 00:54:11,285 DEBUG NetworkManager: [1631667251.2828] dns-mgr: (update_routing_and_dns): queueing DNS updates (1) 00:54:11,285 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NeworkManager state changed to 00:54:11,285 DEBUG NetworkManager: [1631667251.2829] manager: PrimaryConnection now (none) 00:54:11,286 INFO NetworkManager: [1631667251.2836] policy: set-hostname: set hostname to 'localhost.localdomain' (no hostname found) 00:54:11,286 DEBUG NetworkManager: [1631667251.2838] dns-mgr: (update_routing_and_dns): DNS configuration did not change 00:54:11,286 DEBUG NetworkManager: [1631667251.2839] dns-mgr: (update_routing_and_dns): no DNS changes to commit (0) 00:54:11,286 INFO NetworkManager: [1631667251.2839] device (enp1s0): Activation: starting connection 'enp1s0' (abd15c20-86d1-42db-a7d7-7b2d19fd8708) 00:54:11,286 DEBUG NetworkManager: [1631667251.2840] device[28976bd3d15055d4] (enp1s0): activation-stage: schedule activate_stage1_device_prepare,v4 (id 144) 00:54:11,287 DEBUG NetworkManager: [1631667251.2840] dispatcher: (8) (enp1s0) dispatching action 'down' 00:54:11,287 INFO systemd-hostnamed:Changed host name to 'localhost.localdomain' 00:54:11,288 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: False 00:54:11,288 INFO nm-dispatcher:req:3 'down' [enp1s0]: new request (2 scripts) 00:54:11,288 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: CONNECTION_DBUS_PATH=/org/freedesktop/NetworkManager/Settings/1 00:54:11,288 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: CONNECTION_FILENAME=/run/NetworkManager/system-connections/default_connection.nmconnection 00:54:11,289 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: CONNECTION_UUID=a7b6f21e-0f48-49b0-b77e-155e6110a87d 00:54:11,289 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: CONNECTION_ID=Wired Connection 00:54:11,289 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: DEVICE_IFACE=enp1s0 00:54:11,289 DEBUG NetworkManager: [1631667251.2894] device[28976bd3d15055d4] (enp1s0): remove_pending_action (2): 'in-state-change' 00:54:11,289 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: DEVICE_IP_IFACE=enp1s0 00:54:11,290 DEBUG NetworkManager: [1631667251.2894] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'queued-state-change-disconnected' 00:54:11,290 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,290 DEBUG NetworkManager: [1631667251.2895] dispatcher: (7) /usr/lib/NetworkManager/dispatcher.d/04-iscsi succeeded 00:54:11,290 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: environment: NM_DISPATCHER_ACTION=down 00:54:11,290 DEBUG NetworkManager: [1631667251.2896] dispatcher: (7) /etc/NetworkManager/dispatcher.d/20-chrony succeeded 00:54:11,290 INFO nm-dispatcher:req:3 'down' [enp1s0]: start running ordered scripts... 00:54:11,291 DEBUG NetworkManager: [1631667251.2900] device[28976bd3d15055d4] (enp1s0): ip6-config: update (commit=0, new-config=f109067960ea4e7c, route-table-sync-mode=0) 00:54:11,291 DEBUG nm-dispatcher:req:3 'down' [enp1s0], "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": run script 00:54:11,291 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Current hostname changed to localhost.localdomain 00:54:11,291 DEBUG NetworkManager: [1631667251.2904] device[28976bd3d15055d4] (enp1s0): ip6-config: set IP Config instance (/org/freedesktop/NetworkManager/IP6Config/3) 00:54:11,291 DEBUG NetworkManager: [1631667251.2906] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,292 DEBUG NetworkManager: [1631667251.2907] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,292 DEBUG NetworkManager: [1631667251.2907] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,292 DEBUG NetworkManager: [1631667251.2908] device[28976bd3d15055d4] (enp1s0): ip4-config: update (commit=0, new-config=35974653eaceb11c, route-table-sync-mode=0) 00:54:11,292 DEBUG NetworkManager: [1631667251.2913] device[28976bd3d15055d4] (enp1s0): ip4-config: set IP Config instance (/org/freedesktop/NetworkManager/IP4Config/3) 00:54:11,293 DEBUG NetworkManager: [1631667251.2917] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,293 DEBUG NetworkManager: [1631667251.2917] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,293 DEBUG NetworkManager: [1631667251.2918] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,293 DEBUG NetworkManager: [1631667251.2920] active-connection[0xaaab0311c930]: disposing 00:54:11,293 DEBUG NetworkManager: [1631667251.2924] device[28976bd3d15055d4] (enp1s0): activation-stage: invoke activate_stage1_device_prepare,v4 (id 144) 00:54:11,294 INFO NetworkManager: [1631667251.2928] device (enp1s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed') 00:54:11,294 DEBUG NetworkManager: [1631667251.2928] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'in-state-change' 00:54:11,294 DEBUG NetworkManager: [1631667251.2937] active-connection[0xaaab0311de00]: set state activating (was unknown) 00:54:11,294 INFO NetworkManager: [1631667251.2941] manager: NetworkManager state is now CONNECTING 00:54:11,294 DEBUG NetworkManager: [1631667251.2945] active-connection[0xaaab0311de00]: check-master-ready: not signalling (state activating, no master) 00:54:11,295 DEBUG NetworkManager: [1631667251.2946] manager: ActivatingConnection now enp1s0 00:54:11,295 DEBUG NetworkManager: [1631667251.2949] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'in-state-change' 00:54:11,295 DEBUG NetworkManager: [1631667251.2951] device[28976bd3d15055d4] (enp1s0): set-link: ignore link negotiation 00:54:11,295 DEBUG NetworkManager: [1631667251.2952] device[28976bd3d15055d4] (enp1s0): activation-stage: synchronously invoke activate_stage2_device_config,v4 00:54:11,295 INFO NetworkManager: [1631667251.2952] device (enp1s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed') 00:54:11,295 DEBUG nm-dispatcher:req:3 'down' [enp1s0], "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": complete 00:54:11,296 DEBUG NetworkManager: [1631667251.2952] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'in-state-change' 00:54:11,296 DEBUG nm-dispatcher:req:3 'down' [enp1s0], "/etc/NetworkManager/dispatcher.d/20-chrony": run script 00:54:11,296 DEBUG NetworkManager: [1631667251.2958] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'in-state-change' 00:54:11,296 DEBUG NetworkManager: [1631667251.2959] rules-manager: sync 00:54:11,296 DEBUG NetworkManager: [1631667251.2959] device[28976bd3d15055d4] (enp1s0): bringing up device 2 00:54:11,297 DEBUG NetworkManager: [1631667251.2960] platform: (enp1s0) link: setting up 00:54:11,297 DEBUG NetworkManager: [1631667251.2960] platform-linux: link: change 2: flags: set 0x1/0x1 ([up] / [up]) 00:54:11,297 DEBUG NetworkManager: [1631667251.2962] platform-linux: do-request-link: 2 00:54:11,297 DEBUG NetworkManager: [1631667251.2964] platform-linux: do-change-link[2]: success changing link: success 00:54:11,297 DEBUG NetworkManager: [1631667251.2966] firewall: [2918b15f75b62cd8,change*:"enp1s0"]: firewall zone change enp1s0:default (not running, simulate success) 00:54:11,298 DEBUG NetworkManager: [1631667251.2967] firewall: [2918b15f75b62cd8,change*:"enp1s0"]: complete: fake success 00:54:11,298 DEBUG NetworkManager: [1631667251.2968] device[28976bd3d15055d4] (enp1s0): activation-stage: schedule activate_stage3_ip_config_start,v4 (id 148) 00:54:11,298 DEBUG NetworkManager: [1631667251.2968] device[28976bd3d15055d4] (enp1s0): activation-stage: invoke activate_stage3_ip_config_start,v4 (id 148) 00:54:11,298 DEBUG NetworkManager: [1631667251.2969] active-connection[0xaaab0311de00]: set state-flags layer2-ready (was none) 00:54:11,298 INFO NetworkManager: [1631667251.2971] device (enp1s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed') 00:54:11,299 DEBUG NetworkManager: [1631667251.2972] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'in-state-change' 00:54:11,299 DEBUG NetworkManager: [1631667251.2978] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'in-state-change' 00:54:11,299 DEBUG NetworkManager: [1631667251.2979] device[28976bd3d15055d4] (enp1s0): IPv4 config method is auto 00:54:11,299 DEBUG NetworkManager: [1631667251.2981] device[28976bd3d15055d4] (enp1s0): ipv4.dhcp-client-id: no explicit client-id configured 00:54:11,299 INFO NetworkManager: [1631667251.2983] dhcp4 (enp1s0): activation: beginning transaction (timeout in 45 seconds) 00:54:11,300 DEBUG NetworkManager: [1631667251.2984] device[28976bd3d15055d4] (enp1s0): IPv6 config method is auto 00:54:11,300 DEBUG NetworkManager: [1631667251.2985] device[28976bd3d15055d4] (enp1s0): will enable userland IPv6LL 00:54:11,300 DEBUG NetworkManager: [1631667251.2986] platform-linux: link: change 2: user-ipv6ll: set IPv6 address generation mode to none 00:54:11,300 DEBUG NetworkManager: [1631667251.2987] platform-linux: do-request-link: 2 00:54:11,300 DEBUG NetworkManager: [1631667251.2989] platform-linux: do-change-link[2]: success changing link: success 00:54:11,300 DEBUG NetworkManager: [1631667251.2991] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/disable_ipv6' to '1' (current value is '0') 00:54:11,301 DEBUG NetworkManager: [1631667251.2994] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/disable_ipv6' to '0' (current value is '1') 00:54:11,301 DEBUG NetworkManager: [1631667251.2998] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/accept_ra' to '0' (current value is identical) 00:54:11,301 DEBUG NetworkManager: [1631667251.2999] platform: (enp1s0) signal: route 6 added: type unicast table 255 ff00::/8 via :: dev 2 metric 256 mss 0 rt-src rt-boot 00:54:11,301 DEBUG NetworkManager: [1631667251.2999] device[28976bd3d15055d4] (enp1s0): queued IP6 config change 00:54:11,301 DEBUG NetworkManager: [1631667251.3004] device[28976bd3d15055d4] (enp1s0): linklocal6: starting IPv6 with method 'auto', but the device has no link-local addresses configured. Wait. 00:54:11,302 DEBUG NetworkManager: [1631667251.3005] device[28976bd3d15055d4] (enp1s0): linklocal6: generated EUI-64 IPv6LL address fe80::5054:ff:feaf:b95e 00:54:11,302 DEBUG NetworkManager: [1631667251.3007] device[28976bd3d15055d4] (enp1s0): ip6-config: update (commit=1, new-config=3ec20e66b37da3f5, route-table-sync-mode=1) 00:54:11,302 DEBUG NetworkManager: [1631667251.3008] platform: (enp1s0) address: adding or updating IPv6 address: fe80::5054:ff:feaf:b95e/64 lft forever pref forever lifetime 31-0[4294967295,4294967295] dev 2 flags noprefixroute src unknown 00:54:11,302 DEBUG NetworkManager: [1631667251.3011] platform: (enp1s0) signal: address 6 added: fe80::5054:ff:feaf:b95e/64 lft forever pref forever lifetime 31-0[4294967295,4294967295] dev 2 flags permanent,noprefixroute,tentative src kernel 00:54:11,302 DEBUG NetworkManager: [1631667251.3012] platform-linux: do-add-ip6-address[2: fe80::5054:ff:feaf:b95e]: success 00:54:11,303 DEBUG NetworkManager: [1631667251.3012] platform: (enp1s0) route: append IPv6 route: type unicast fe80::/64 via :: dev 2 metric 100 mss 0 rt-src ipv6ll 00:54:11,303 DEBUG NetworkManager: [1631667251.3014] platform: (enp1s0) signal: route 6 added: type unicast fe80::/64 via :: dev 2 metric 100 mss 0 rt-src rt-kernel 00:54:11,303 DEBUG NetworkManager: [1631667251.3014] platform-linux: do-add-ip6-route[type unicast fe80::/64 via :: dev 2 metric 100 mss 0 rt-src rt-kernel]: success 00:54:11,303 DEBUG NetworkManager: [1631667251.3021] device[28976bd3d15055d4] (enp1s0): ip6-config: update IP Config instance (/org/freedesktop/NetworkManager/IP6Config/3) 00:54:11,303 DEBUG NetworkManager: [1631667251.3021] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,304 DEBUG NetworkManager: [1631667251.3022] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,304 DEBUG NetworkManager: [1631667251.3022] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,304 DEBUG NetworkManager: [1631667251.3024] platform-linux: sysctl: setting '/proc/sys/net/ipv6/conf/enp1s0/use_tempaddr' to '0' (current value is identical) 00:54:11,304 DEBUG NetworkManager: [1631667251.3025] dispatcher: (9) dispatching action 'hostname' 00:54:11,304 DEBUG NetworkManager: [1631667251.3032] dhcp4 (enp1s0): send DISCOVER to 255.255.255.255 00:54:11,304 DEBUG NetworkManager: [1631667251.3034] device[28976bd3d15055d4] (enp1s0): ip6-config: update (commit=0, new-config=23307220009449d7, route-table-sync-mode=0) 00:54:11,305 DEBUG NetworkManager: [1631667251.3040] device[28976bd3d15055d4] (enp1s0): ip6-config: update IP Config instance (/org/freedesktop/NetworkManager/IP6Config/3) 00:54:11,305 DEBUG NetworkManager: [1631667251.3040] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,305 DEBUG NetworkManager: [1631667251.3041] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,305 DEBUG NetworkManager: [1631667251.3041] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,305 DEBUG NetworkManager: [1631667251.3042] dhcp4 (enp1s0): received OFFER of 192.168.122.219 from 192.168.122.1 00:54:11,306 DEBUG NetworkManager: [1631667251.3043] dhcp4 (enp1s0): send REQUEST of 192.168.122.219 to 255.255.255.255 00:54:11,306 DEBUG NetworkManager: [1631667251.3047] dhcp4 (enp1s0): received ACK of 192.168.122.219 from 192.168.122.1 00:54:11,306 DEBUG NetworkManager: [1631667251.3051] dhcp4 (enp1s0): option broadcast_address => '192.168.122.255' 00:54:11,306 DEBUG NetworkManager: [1631667251.3052] dhcp4 (enp1s0): option dhcp_lease_time => '3600' 00:54:11,306 DEBUG NetworkManager: [1631667251.3052] dhcp4 (enp1s0): option dhcp_server_identifier => '192.168.122.1' 00:54:11,306 DEBUG NetworkManager: [1631667251.3052] dhcp4 (enp1s0): option domain_name_servers => '192.168.122.1' 00:54:11,307 DEBUG NetworkManager: [1631667251.3053] dhcp4 (enp1s0): option expiry => '1631670851' 00:54:11,307 DEBUG NetworkManager: [1631667251.3053] dhcp4 (enp1s0): option ip_address => '192.168.122.219' 00:54:11,307 DEBUG NetworkManager: [1631667251.3053] dhcp4 (enp1s0): option next_server => '192.168.122.1' 00:54:11,307 DEBUG NetworkManager: [1631667251.3054] dhcp4 (enp1s0): option requested_broadcast_address => '1' 00:54:11,307 DEBUG NetworkManager: [1631667251.3054] dhcp4 (enp1s0): option requested_domain_name => '1' 00:54:11,308 DEBUG NetworkManager: [1631667251.3054] dhcp4 (enp1s0): option requested_domain_name_servers => '1' 00:54:11,308 DEBUG NetworkManager: [1631667251.3055] dhcp4 (enp1s0): option requested_domain_search => '1' 00:54:11,308 DEBUG NetworkManager: [1631667251.3055] dhcp4 (enp1s0): option requested_host_name => '1' 00:54:11,308 DEBUG NetworkManager: [1631667251.3056] dhcp4 (enp1s0): option requested_interface_mtu => '1' 00:54:11,308 DEBUG NetworkManager: [1631667251.3056] dhcp4 (enp1s0): option requested_ms_classless_static_routes => '1' 00:54:11,309 DEBUG NetworkManager: [1631667251.3056] dhcp4 (enp1s0): option requested_nis_domain => '1' 00:54:11,309 DEBUG NetworkManager: [1631667251.3057] dhcp4 (enp1s0): option requested_nis_servers => '1' 00:54:11,309 DEBUG NetworkManager: [1631667251.3057] dhcp4 (enp1s0): option requested_ntp_servers => '1' 00:54:11,309 DEBUG NetworkManager: [1631667251.3058] dhcp4 (enp1s0): option requested_rfc3442_classless_static_routes => '1' 00:54:11,310 DEBUG NetworkManager: [1631667251.3058] dhcp4 (enp1s0): option requested_root_path => '1' 00:54:11,310 DEBUG NetworkManager: [1631667251.3058] dhcp4 (enp1s0): option requested_routers => '1' 00:54:11,310 DEBUG NetworkManager: [1631667251.3059] dhcp4 (enp1s0): option requested_static_routes => '1' 00:54:11,310 DEBUG NetworkManager: [1631667251.3059] dhcp4 (enp1s0): option requested_subnet_mask => '1' 00:54:11,310 DEBUG NetworkManager: [1631667251.3060] dhcp4 (enp1s0): option requested_time_offset => '1' 00:54:11,311 DEBUG NetworkManager: [1631667251.3060] dhcp4 (enp1s0): option requested_wpad => '1' 00:54:11,311 DEBUG NetworkManager: [1631667251.3060] dhcp4 (enp1s0): option routers => '192.168.122.1' 00:54:11,311 DEBUG NetworkManager: [1631667251.3061] dhcp4 (enp1s0): option subnet_mask => '255.255.255.0' 00:54:11,311 INFO NetworkManager: [1631667251.3061] dhcp4 (enp1s0): state changed unknown -> bound, address=192.168.122.219 00:54:11,311 DEBUG NetworkManager: [1631667251.3061] device[28976bd3d15055d4] (enp1s0): new DHCPv4 client state 1 00:54:11,312 DEBUG NetworkManager: [1631667251.3071] device[28976bd3d15055d4] (enp1s0): activation-stage: schedule activate_stage5_ip_config_result_4,v4 (id 157) 00:54:11,312 DEBUG NetworkManager: [1631667251.3072] device[28976bd3d15055d4] (enp1s0): activation-stage: invoke activate_stage5_ip_config_result_4,v4 (id 157) 00:54:11,312 DEBUG NetworkManager: [1631667251.3073] device[28976bd3d15055d4] (enp1s0): ip4-config: update (commit=1, new-config=b88e5eaf2932497c, route-table-sync-mode=1) 00:54:11,312 DEBUG NetworkManager: [1631667251.3074] platform: (enp1s0) address: adding or updating IPv4 address: 192.168.122.219/24 brd 192.168.122.255 lft 3600sec pref 3600sec lifetime 31-0[3600,3600] dev 2 flags noprefixroute src unknown 00:54:11,312 DEBUG NetworkManager: [1631667251.3076] platform: (enp1s0) signal: address 4 added: 192.168.122.219/24 brd 192.168.122.255 lft 3600sec pref 3600sec lifetime 31-31[3600,3600] dev 2 flags noprefixroute src kernel 00:54:11,313 DEBUG NetworkManager: [1631667251.3077] device[28976bd3d15055d4] (enp1s0): queued IP4 config change 00:54:11,313 DEBUG NetworkManager: [1631667251.3078] platform: (enp1s0) signal: route 4 added: type local table 255 192.168.122.219/32 via 0.0.0.0 dev 2 metric 0 mss 0 rt-src rt-kernel scope host pref-src 192.168.122.219 00:54:11,313 DEBUG NetworkManager: [1631667251.3079] platform-linux: do-add-ip4-address[2: 192.168.122.219/24]: success 00:54:11,313 DEBUG NetworkManager: [1631667251.3080] platform: (enp1s0) route: append IPv4 route: type unicast 192.168.122.0/24 via 0.0.0.0 dev 2 metric 100 mss 0 rt-src rt-kernel scope link pref-src 192.168.122.219 00:54:11,314 DEBUG NetworkManager: [1631667251.3081] platform: (enp1s0) signal: route 4 added: type unicast 192.168.122.0/24 via 0.0.0.0 dev 2 metric 100 mss 0 rt-src rt-kernel scope link pref-src 192.168.122.219 00:54:11,314 DEBUG NetworkManager: [1631667251.3082] platform-linux: do-add-ip4-route[type unicast 192.168.122.0/24 via 0.0.0.0 dev 2 metric 100 mss 0 rt-src rt-kernel scope link pref-src 192.168.122.219]: success 00:54:11,314 DEBUG NetworkManager: [1631667251.3083] platform: (enp1s0) route: append IPv4 route: type unicast 0.0.0.0/0 via 192.168.122.1 dev 2 metric 100 mss 0 rt-src dhcp 00:54:11,314 DEBUG NetworkManager: [1631667251.3084] platform: (enp1s0) signal: route 4 added: type unicast 0.0.0.0/0 via 192.168.122.1 dev 2 metric 100 mss 0 rt-src rt-dhcp scope global 00:54:11,314 DEBUG NetworkManager: [1631667251.3085] platform-linux: do-add-ip4-route[type unicast 0.0.0.0/0 via 192.168.122.1 dev 2 metric 100 mss 0 rt-src rt-dhcp scope global]: success 00:54:11,317 INFO nm-dispatcher:req:4 'hostname': new request (2 scripts) 00:54:11,318 DEBUG nm-dispatcher:req:4 'hostname': environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,318 DEBUG nm-dispatcher:req:4 'hostname': environment: NM_DISPATCHER_ACTION=hostname 00:54:11,318 DEBUG nm-dispatcher:req:3 'down' [enp1s0], "/etc/NetworkManager/dispatcher.d/20-chrony": complete 00:54:11,318 DEBUG nm-dispatcher:req:3 'down' [enp1s0]: completed (2 scripts) 00:54:11,318 INFO nm-dispatcher:req:4 'hostname': start running ordered scripts... 00:54:11,319 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NeworkManager state changed to 00:54:11,319 DEBUG nm-dispatcher:req:4 'hostname', "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": run script 00:54:11,320 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: False 00:54:11,324 DEBUG nm-dispatcher:req:4 'hostname', "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": complete 00:54:11,324 DEBUG nm-dispatcher:req:4 'hostname', "/etc/NetworkManager/dispatcher.d/20-chrony": run script 00:54:11,324 DEBUG NetworkManager: [1631667251.3240] device[28976bd3d15055d4] (enp1s0): ip4-config: update IP Config instance (/org/freedesktop/NetworkManager/IP4Config/3) 00:54:11,324 DEBUG NetworkManager: [1631667251.3241] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,324 DEBUG NetworkManager: [1631667251.3242] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,325 DEBUG NetworkManager: [1631667251.3242] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,325 DEBUG NetworkManager: [1631667251.3248] active-connection[0xaaab0311de00]: set state-flags layer2-ready,ip4-ready (was layer2-ready) 00:54:11,325 INFO NetworkManager: [1631667251.3252] device (enp1s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed') 00:54:11,325 DEBUG NetworkManager: [1631667251.3252] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'in-state-change' 00:54:11,327 DEBUG NetworkManager: [1631667251.3265] dispatcher: (10) (enp1s0) dispatching action 'pre-up' (with callback) 00:54:11,330 DEBUG NetworkManager: [1631667251.3301] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'in-state-change' 00:54:11,330 DEBUG NetworkManager: [1631667251.3302] dispatcher: (8) /usr/lib/NetworkManager/dispatcher.d/04-iscsi succeeded 00:54:11,330 DEBUG NetworkManager: [1631667251.3303] dispatcher: (8) /etc/NetworkManager/dispatcher.d/20-chrony succeeded 00:54:11,330 DEBUG NetworkManager: [1631667251.3306] device[28976bd3d15055d4] (enp1s0): ip4-config: update (commit=0, new-config=9ce88d7d6be1454f, route-table-sync-mode=0) 00:54:11,332 DEBUG nm-dispatcher:req:4 'hostname', "/etc/NetworkManager/dispatcher.d/20-chrony": complete 00:54:11,332 DEBUG NetworkManager: [1631667251.3311] device[28976bd3d15055d4] (enp1s0): ip4-config: update IP Config instance (/org/freedesktop/NetworkManager/IP4Config/3) 00:54:11,332 DEBUG nm-dispatcher:req:4 'hostname': completed (2 scripts) 00:54:11,332 DEBUG NetworkManager: [1631667251.3311] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:11,333 INFO nm-dispatcher:req:5 'pre-up' [enp1s0]: new request (0 scripts) 00:54:11,333 DEBUG NetworkManager: [1631667251.3319] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:11,333 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: CONNECTION_DBUS_PATH=/org/freedesktop/NetworkManager/Settings/2 00:54:11,333 DEBUG NetworkManager: [1631667251.3319] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:11,333 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: CONNECTION_FILENAME=/etc/sysconfig/network-scripts/ifcfg-enp1s0 00:54:11,334 DEBUG NetworkManager: [1631667251.3327] dispatcher: (9) /usr/lib/NetworkManager/dispatcher.d/04-iscsi succeeded 00:54:11,334 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: CONNECTION_UUID=abd15c20-86d1-42db-a7d7-7b2d19fd8708 00:54:11,334 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: CONNECTION_ID=enp1s0 00:54:11,334 DEBUG NetworkManager: [1631667251.3340] dispatcher: (9) /etc/NetworkManager/dispatcher.d/20-chrony succeeded 00:54:11,334 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: DEVICE_IFACE=enp1s0 00:54:11,335 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: DEVICE_IP_IFACE=enp1s0 00:54:11,335 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,335 DEBUG nm-dispatcher:req:5 'pre-up' [enp1s0]: environment: NM_DISPATCHER_ACTION=pre-up 00:54:11,335 INFO nm-dispatcher:req:5 'pre-up' [enp1s0]: completed: no scripts 00:54:11,336 DEBUG NetworkManager: [1631667251.3363] dispatcher: (10) succeeded but no scripts invoked 00:54:11,336 DEBUG NetworkManager: [1631667251.3364] device[28976bd3d15055d4] (enp1s0): add_pending_action (2): 'queued-state-change-secondaries' 00:54:11,336 DEBUG NetworkManager: [1631667251.3365] device[28976bd3d15055d4] (enp1s0): queue-state[secondaries, reason:none, id:166]: queue state change 00:54:11,337 DEBUG NetworkManager: [1631667251.3366] device[28976bd3d15055d4] (enp1s0): queue-state[secondaries, reason:none, id:166]: change state 00:54:11,337 INFO NetworkManager: [1631667251.3366] device (enp1s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed') 00:54:11,337 DEBUG NetworkManager: [1631667251.3366] device[28976bd3d15055d4] (enp1s0): add_pending_action (3): 'in-state-change' 00:54:11,337 DEBUG NetworkManager: [1631667251.3373] device[28976bd3d15055d4] (enp1s0): add_pending_action (4): 'queued-state-change-activated' 00:54:11,337 DEBUG NetworkManager: [1631667251.3374] device[28976bd3d15055d4] (enp1s0): queue-state[activated, reason:none, id:167]: queue state change 00:54:11,338 DEBUG NetworkManager: [1631667251.3374] device[28976bd3d15055d4] (enp1s0): device entered SECONDARIES state 00:54:11,338 DEBUG NetworkManager: [1631667251.3375] device[28976bd3d15055d4] (enp1s0): remove_pending_action (3): 'in-state-change' 00:54:11,338 DEBUG NetworkManager: [1631667251.3375] device[28976bd3d15055d4] (enp1s0): remove_pending_action (2): 'queued-state-change-secondaries' 00:54:11,338 DEBUG NetworkManager: [1631667251.3376] device[28976bd3d15055d4] (enp1s0): queue-state[activated, reason:none, id:167]: change state 00:54:11,338 INFO NetworkManager: [1631667251.3376] device (enp1s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed') 00:54:11,339 DEBUG NetworkManager: [1631667251.3377] device[28976bd3d15055d4] (enp1s0): add_pending_action (3): 'in-state-change' 00:54:11,339 DEBUG NetworkManager: [1631667251.3388] active-connection[0xaaab0311de00]: set state activated (was activating) 00:54:11,339 INFO NetworkManager: [1631667251.3394] manager: NetworkManager state is now CONNECTED_LOCAL 00:54:11,342 DEBUG NetworkManager: [1631667251.3401] active-connection[0xaaab0311de00]: check-master-ready: not signalling (state activated, no master) 00:54:11,342 DEBUG NetworkManager: [1631667251.3418] device[28976bd3d15055d4] (enp1s0): remove_pending_action (2): 'activation-2' 00:54:11,342 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NeworkManager state changed to 00:54:11,344 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: True 00:54:11,344 DEBUG NetworkManager: [1631667251.3444] dns-mgr: (device_state_changed): queueing DNS updates (1) 00:54:11,344 DEBUG NetworkManager: [1631667251.3445] dns-mgr: (update_routing_and_dns): queueing DNS updates (2) 00:54:11,347 INFO NetworkManager: [1631667251.3464] manager: NetworkManager state is now CONNECTED_SITE 00:54:11,347 INFO NetworkManager: [1631667251.3471] policy: set 'enp1s0' (enp1s0) as default for IPv4 routing and DNS 00:54:11,348 DEBUG NetworkManager: [1631667251.3472] manager: PrimaryConnection now enp1s0 00:54:11,350 DEBUG NetworkManager: [1631667251.3488] dns-mgr: (update_routing_and_dns): DNS configuration changed 00:54:11,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NeworkManager state changed to 00:54:11,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: True 00:54:11,351 DEBUG NetworkManager: [1631667251.3488] dns-mgr: (update_routing_and_dns): no DNS changes to commit (1) 00:54:11,351 DEBUG NetworkManager: [1631667251.3489] dns-mgr: (device_state_changed): DNS configuration changed 00:54:11,351 DEBUG NetworkManager: [1631667251.3489] dns-mgr: (device_state_changed): committing DNS changes (0) 00:54:11,352 DEBUG NetworkManager: [1631667251.3489] dns-mgr: update-dns: updating resolv.conf 00:54:11,352 INFO NetworkManager: [1631667251.3518] device (enp1s0): Activation: successful, device activated. 00:54:11,352 DEBUG NetworkManager: [1631667251.3518] device[28976bd3d15055d4] (enp1s0): set metered value 4 00:54:11,353 DEBUG NetworkManager: [1631667251.3522] manager: new metered value: 4 00:54:11,353 DEBUG NetworkManager: [1631667251.3525] dispatcher: (11) (enp1s0) dispatching action 'up' 00:54:11,353 DEBUG NetworkManager: [1631667251.3536] device[28976bd3d15055d4] (enp1s0): connectivity state changed from NONE to FULL 00:54:11,353 DEBUG NetworkManager: [1631667251.3538] manager: connectivity checking indicates FULL 00:54:11,354 INFO NetworkManager: [1631667251.3539] manager: NetworkManager state is now CONNECTED_GLOBAL 00:54:11,354 DEBUG NetworkManager: [1631667251.3544] dispatcher: (12) dispatching action 'connectivity-change' 00:54:11,354 DEBUG NetworkManager: [1631667251.3548] device[28976bd3d15055d4] (enp1s0): ip4-config: update (commit=1, new-config=92afdb50216202bc, route-table-sync-mode=1) 00:54:11,355 DEBUG NetworkManager: [1631667251.3549] platform: (enp1s0) address: adding or updating IPv4 address: 192.168.122.219/24 brd 192.168.122.255 lft 3600sec pref 3600sec lifetime 31-0[3600,3600] dev 2 flags noprefixroute src unknown 00:54:11,364 DEBUG NetworkManager: [1631667251.3565] platform-linux: do-add-ip4-address[2: 192.168.122.219/24]: success 00:54:11,364 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NeworkManager state changed to 00:54:11,364 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Connected to network: True 00:54:11,364 INFO nm-dispatcher:req:6 'up' [enp1s0]: new request (2 scripts) 00:54:11,364 DEBUG NetworkManager: [1631667251.3566] device[28976bd3d15055d4] (enp1s0): connectivity state changed from NONE to FULL 00:54:11,364 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: CONNECTION_DBUS_PATH=/org/freedesktop/NetworkManager/Settings/2 00:54:11,365 DEBUG NetworkManager: [1631667251.3569] device[28976bd3d15055d4] (enp1s0): ip4-config: update (commit=1, new-config=837dc14698059675, route-table-sync-mode=1) 00:54:11,365 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: CONNECTION_FILENAME=/etc/sysconfig/network-scripts/ifcfg-enp1s0 00:54:11,365 DEBUG NetworkManager: [1631667251.3570] platform: (enp1s0) address: adding or updating IPv4 address: 192.168.122.219/24 brd 192.168.122.255 lft 3600sec pref 3600sec lifetime 31-0[3600,3600] dev 2 flags noprefixroute src unknown 00:54:11,365 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: CONNECTION_UUID=abd15c20-86d1-42db-a7d7-7b2d19fd8708 00:54:11,365 DEBUG NetworkManager: [1631667251.3572] platform-linux: do-add-ip4-address[2: 192.168.122.219/24]: success 00:54:11,366 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: CONNECTION_ID=enp1s0 00:54:11,366 DEBUG NetworkManager: [1631667251.3573] device[28976bd3d15055d4] (enp1s0): remove_pending_action (1): 'in-state-change' 00:54:11,366 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DEVICE_IFACE=enp1s0 00:54:11,366 DEBUG NetworkManager: [1631667251.3573] device[28976bd3d15055d4] (enp1s0): remove_pending_action (0): 'queued-state-change-activated' 00:54:11,366 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DEVICE_IP_IFACE=enp1s0 00:54:11,367 DEBUG NetworkManager: [1631667251.3584] device[28976bd3d15055d4] (enp1s0): hostname-from-dns: lookup done for 192.168.122.219, result "localhost.localdomain" 00:54:11,367 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_ADDRESS_0=192.168.122.219/24 192.168.122.1 00:54:11,367 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_NUM_ADDRESSES=1 00:54:11,367 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_GATEWAY=192.168.122.1 00:54:11,367 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_NAMESERVERS=192.168.122.1 00:54:11,368 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_ROUTE_0=192.168.122.219/32 0.0.0.0 0 00:54:11,368 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_ROUTE_1=192.168.122.0/24 0.0.0.0 100 00:54:11,368 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP4_NUM_ROUTES=2 00:54:11,368 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP6_ADDRESS_0=fe80::5054:ff:feaf:b95e/64 0.0.0.0 00:54:11,368 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP6_NUM_ADDRESSES=1 00:54:11,369 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP6_GATEWAY=0.0.0.0 00:54:11,369 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP6_ROUTE_0=ff00::/8 :: 256 00:54:11,369 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP6_ROUTE_1=fe80::/64 :: 100 00:54:11,369 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: IP6_NUM_ROUTES=2 00:54:11,369 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_BROADCAST_ADDRESS=192.168.122.255 00:54:11,369 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_DHCP_LEASE_TIME=3600 00:54:11,370 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_DHCP_SERVER_IDENTIFIER=192.168.122.1 00:54:11,370 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_DOMAIN_NAME_SERVERS=192.168.122.1 00:54:11,370 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_EXPIRY=1631670851 00:54:11,370 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_IP_ADDRESS=192.168.122.219 00:54:11,370 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_NEXT_SERVER=192.168.122.1 00:54:11,371 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_BROADCAST_ADDRESS=1 00:54:11,371 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_DOMAIN_NAME=1 00:54:11,371 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_DOMAIN_NAME_SERVERS=1 00:54:11,371 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_DOMAIN_SEARCH=1 00:54:11,371 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_HOST_NAME=1 00:54:11,372 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_INTERFACE_MTU=1 00:54:11,372 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_MS_CLASSLESS_STATIC_ROUTES=1 00:54:11,372 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_NIS_DOMAIN=1 00:54:11,372 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_NIS_SERVERS=1 00:54:11,372 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_NTP_SERVERS=1 00:54:11,372 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_RFC3442_CLASSLESS_STATIC_ROUTES=1 00:54:11,373 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_ROOT_PATH=1 00:54:11,373 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_ROUTERS=1 00:54:11,373 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_STATIC_ROUTES=1 00:54:11,373 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_SUBNET_MASK=1 00:54: Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11880/12000 11,373 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_TIME_OFFSET=1 00:54:11,374 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_REQUESTED_WPAD=1 00:54:11,374 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_ROUTERS=192.168.122.1 00:54:11,374 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: DHCP4_SUBNET_MASK=255.255.255.0 00:54:11,374 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,374 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: environment: NM_DISPATCHER_ACTION=up 00:54:11,374 INFO nm-dispatcher:req:6 'up' [enp1s0]: start running ordered scripts... 00:54:11,375 DEBUG nm-dispatcher:req:6 'up' [enp1s0], "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": run script 00:54:11,375 INFO nm-dispatcher:req:7 'connectivity-change': new request (2 scripts) 00:54:11,375 DEBUG nm-dispatcher:req:7 'connectivity-change': environment: CONNECTIVITY_STATE=FULL 00:54:11,375 DEBUG nm-dispatcher:req:7 'connectivity-change': environment: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin 00:54:11,375 DEBUG nm-dispatcher:req:7 'connectivity-change': environment: NM_DISPATCHER_ACTION=connectivity-change 00:54:11,392 WARNING systemd:iscsi.service: Unit cannot be reloaded because it is inactive. 00:54:11,395 DEBUG nm-dispatcher:req:6 'up' [enp1s0], "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": complete 00:54:11,395 DEBUG nm-dispatcher:req:6 'up' [enp1s0], "/etc/NetworkManager/dispatcher.d/20-chrony": run script 00:54:11,402 DEBUG nm-dispatcher:req:6 'up' [enp1s0], "/etc/NetworkManager/dispatcher.d/20-chrony": complete 00:54:11,402 DEBUG nm-dispatcher:req:6 'up' [enp1s0]: completed (2 scripts) 00:54:11,402 INFO nm-dispatcher:req:7 'connectivity-change': start running ordered scripts... 00:54:11,402 DEBUG nm-dispatcher:req:7 'connectivity-change', "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": run script 00:54:11,403 DEBUG NetworkManager: [1631667251.4038] dispatcher: (11) /usr/lib/NetworkManager/dispatcher.d/04-iscsi succeeded 00:54:11,404 DEBUG NetworkManager: [1631667251.4039] dispatcher: (11) /etc/NetworkManager/dispatcher.d/20-chrony succeeded 00:54:11,406 DEBUG nm-dispatcher:req:7 'connectivity-change', "/usr/lib/NetworkManager/dispatcher.d/04-iscsi": complete 00:54:11,406 DEBUG nm-dispatcher:req:7 'connectivity-change', "/etc/NetworkManager/dispatcher.d/20-chrony": run script 00:54:11,410 DEBUG nm-dispatcher:req:7 'connectivity-change', "/etc/NetworkManager/dispatcher.d/20-chrony": complete 00:54:11,410 DEBUG nm-dispatcher:req:7 'connectivity-change': completed (2 scripts) 00:54:11,411 DEBUG NetworkManager: [1631667251.4112] dispatcher: (12) /usr/lib/NetworkManager/dispatcher.d/04-iscsi succeeded 00:54:11,411 DEBUG NetworkManager: [1631667251.4113] dispatcher: (12) /etc/NetworkManager/dispatcher.d/20-chrony succeeded 00:54:12,147 DEBUG anaconda:anaconda: network: Apply kickstart result: ['enp1s0', 'enp1s0'] 00:54:12,160 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/3. 00:54:12,169 DEBUG anaconda:anaconda: network: Running task Dump missing ifcfg files 00:54:12,171 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-DumpMissingIfcfgFilesTask-1 (281473311830496) 00:54:12,178 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.ifcfg:Unexpected number of ifcfg files found for enp1s0: ['/etc/sysconfig/network-scripts/ifcfg-enp1s0', '/etc/sysconfig/network-scripts/ifcfg-enp1s0-1'] 00:54:12,180 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-DumpMissingIfcfgFilesTask-1 (281473311830496) 00:54:12,180 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Dump missing ifcfg files result: [] 00:54:12,429 DEBUG NetworkManager: [1631667252.4294] platform: (enp1s0) signal: address 6 changed: fe80::5054:ff:feaf:b95e/64 lft forever pref forever lifetime 33-0[4294967295,4294967295] dev 2 flags permanent,noprefixroute src kernel 00:54:12,430 DEBUG NetworkManager: [1631667252.4295] device[28976bd3d15055d4] (enp1s0): queued IP6 config change 00:54:12,430 DEBUG NetworkManager: [1631667252.4296] platform: (enp1s0) signal: route 6 added: type local table 255 fe80::5054:ff:feaf:b95e/128 via :: dev 2 metric 0 mss 0 rt-src rt-kernel 00:54:12,430 DEBUG NetworkManager: [1631667252.4299] device[28976bd3d15055d4] (enp1s0): ip6-config: update (commit=0, new-config=3dfde8ebdd9f609b, route-table-sync-mode=0) 00:54:12,431 DEBUG NetworkManager: [1631667252.4307] device[28976bd3d15055d4] (enp1s0): ip6-config: update IP Config instance (/org/freedesktop/NetworkManager/IP6Config/3) 00:54:12,431 DEBUG NetworkManager: [1631667252.4308] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:12,431 DEBUG NetworkManager: [1631667252.4310] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:12,431 DEBUG NetworkManager: [1631667252.4311] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:12,431 DEBUG NetworkManager: [1631667252.4311] device[28976bd3d15055d4] (enp1s0): linklocal6: waiting for link-local addresses successful, continue with method auto 00:54:12,432 DEBUG NetworkManager: [1631667252.4312] device[28976bd3d15055d4] (enp1s0): addrconf6: using the device EUI-64 identifier 00:54:12,432 DEBUG NetworkManager: [1631667252.4314] device[28976bd3d15055d4] (enp1s0): ip6-config: update (commit=1, new-config=ecd580f5349c0908, route-table-sync-mode=1) 00:54:12,432 DEBUG NetworkManager: [1631667252.4315] platform: (enp1s0) address: adding or updating IPv6 address: fe80::5054:ff:feaf:b95e/64 lft forever pref forever lifetime 33-0[4294967295,4294967295] dev 2 flags permanent,noprefixroute src unknown 00:54:12,432 DEBUG NetworkManager: [1631667252.4316] platform-linux: do-add-ip6-address[2: fe80::5054:ff:feaf:b95e]: success 00:54:12,432 DEBUG NetworkManager: [1631667252.4324] device[28976bd3d15055d4] (enp1s0): ip6-config: update IP Config instance (/org/freedesktop/NetworkManager/IP6Config/3) 00:54:12,433 DEBUG NetworkManager: [1631667252.4325] dns-mgr: (device_ip_config_changed): queueing DNS updates (1) 00:54:12,433 DEBUG NetworkManager: [1631667252.4327] dns-mgr: (device_ip_config_changed): DNS configuration did not change 00:54:12,433 DEBUG NetworkManager: [1631667252.4328] dns-mgr: (device_ip_config_changed): no DNS changes to commit (0) 00:54:12,433 DEBUG NetworkManager: [1631667252.4328] ndisc[0xaaab0311ebb0,"enp1s0"]: starting neighbor discovery for ifindex 2 (solicit) 00:54:12,433 DEBUG NetworkManager: [1631667252.4329] ndisc-lndp[0xaaab0311ebb0,"enp1s0"]: processing libndp events 00:54:12,433 DEBUG NetworkManager: [1631667252.4330] ndisc[0xaaab0311ebb0,"enp1s0"]: scheduling RA timeout in 30 seconds 00:54:12,434 DEBUG NetworkManager: [1631667252.4330] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending first solicitation (of 3) in 0.197 seconds 00:54:12,630 DEBUG NetworkManager: [1631667252.6305] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 3.866 seconds 00:54:13,193 DEBUG anaconda:anaconda: network: Dump missing ifcfg files result: [] 00:54:13,196 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/4. 00:54:13,205 DEBUG anaconda:anaconda: network: Running task Set real ONBOOT values from kickstart 00:54:13,207 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-SetRealOnbootValuesFromKickstartTask-1 (281473311830496) 00:54:13,207 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:kickstart specification --device=link -> enp1s0 (first device with link found) 00:54:13,208 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.initialization:Set real ONBOOT values from kickstart: 3 connections found for enp1s0 00:54:13,216 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.ifcfg:Unexpected number of ifcfg files found for enp1s0: ['/etc/sysconfig/network-scripts/ifcfg-enp1s0', '/etc/sysconfig/network-scripts/ifcfg-enp1s0-1'] 00:54:13,216 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.initialization:updating ONBOOT values of connection abd15c20-86d1-42db-a7d7-7b2d19fd8708 for device enp1s0 00:54:13,217 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:updating connection abd15c20-86d1-42db-a7d7-7b2d19fd8708 setting 'connection' 'autoconnect' to 'True' 00:54:13,218 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:updated connection abd15c20-86d1-42db-a7d7-7b2d19fd8708: 00:54:13,218 WARNING org.fedoraproject.Anaconda.Modules.Network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:13,220 WARNING org.fedoraproject.Anaconda.Modules.Network:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/modules/network/nm_client.py:914: Warning: g_main_context_push_thread_default: assertion 'acquired_context' failed 00:54:13,220 WARNING org.fedoraproject.Anaconda.Modules.Network: sync_queue 00:54:13,221 WARNING org.fedoraproject.Anaconda.Modules.Network:WARNING:py.warnings:/usr/lib64/python3.6/site-packages/pyanaconda/modules/network/nm_client.py:914: Warning: g_main_context_pop_thread_default: assertion 'stack != NULL' failed 00:54:13,221 WARNING org.fedoraproject.Anaconda.Modules.Network: sync_queue 00:54:13,230 DEBUG NetworkManager: [1631667253.2301] ++ connection 'update connection' (0xffff7c009d00/NMSimpleConnection/"802-3-ethernet" < 0xaaab03099ce0/NMSimpleConnection/"802-3-ethernet") [/org/freedesktop/NetworkManager/Settings/2]: 00:54:13,230 DEBUG NetworkManager: [1631667253.2302] ++ connection [ 0xaaab030cdd20 < 0xaaab030cd0e0 ] 00:54:13,230 DEBUG NetworkManager: [1631667253.2303] ++ connection.timestamp = 1631667251 00:54:13,232 DEBUG NetworkManager: [1631667253.2319] Saving secrets for connection /org/freedesktop/NetworkManager/Settings/2 (enp1s0) 00:54:13,232 INFO NetworkManager: [1631667253.2321] audit: op="connection-update" uuid="abd15c20-86d1-42db-a7d7-7b2d19fd8708" name="enp1s0" args="connection.timestamp" pid=1758 uid=0 result="success" 00:54:13,233 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:kickstart specification --device=link -> enp1s0 (first device with link found) 00:54:13,233 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.initialization:Set real ONBOOT values from kickstart: 3 connections found for enp1s0 00:54:13,238 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.ifcfg:Unexpected number of ifcfg files found for enp1s0: ['/etc/sysconfig/network-scripts/ifcfg-enp1s0', '/etc/sysconfig/network-scripts/ifcfg-enp1s0-1'] 00:54:13,238 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.initialization:updating ONBOOT values of connection abd15c20-86d1-42db-a7d7-7b2d19fd8708 for device enp1s0 00:54:13,239 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:updating connection abd15c20-86d1-42db-a7d7-7b2d19fd8708 setting 'connection' 'autoconnect' to 'True' 00:54:13,239 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.nm_client:updated connection abd15c20-86d1-42db-a7d7-7b2d19fd8708: 00:54:13,239 WARNING org.fedoraproject.Anaconda.Modules.Network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:13,249 DEBUG NetworkManager: [1631667253.2492] Saving secrets for connection /org/freedesktop/NetworkManager/Settings/2 (enp1s0) 00:54:13,249 INFO NetworkManager: [1631667253.2494] audit: op="connection-update" uuid="abd15c20-86d1-42db-a7d7-7b2d19fd8708" name="enp1s0" pid=1758 uid=0 result="success" 00:54:13,250 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-SetRealOnbootValuesFromKickstartTask-1 (281473311830496) 00:54:13,251 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Set real ONBOOT values from kickstart result: ['enp1s0', 'enp1s0'] 00:54:13,251 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Dumping configuration state - Set real ONBOOT values from kickstart 00:54:13,252 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/etc/sysconfig/network-scripts/ifcfg-enp1s0: 00:54:13,252 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 00:54:13,252 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 00:54:13,252 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 00:54:13,252 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 00:54:13,253 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 00:54:13,253 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 00:54:13,253 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 00:54:13,253 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 00:54:13,253 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 00:54:13,253 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 00:54:13,254 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 00:54:13,254 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=abd15c20-86d1-42db-a7d7-7b2d19fd8708 00:54:13,254 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 00:54:13,254 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 00:54:13,254 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/etc/sysconfig/network-scripts/ifcfg-enp1s0-1: 00:54:13,254 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 00:54:13,255 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 00:54:13,255 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 00:54:13,255 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 00:54:13,255 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 00:54:13,255 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 00:54:13,256 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 00:54:13,256 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 00:54:13,256 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 00:54:13,256 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 00:54:13,256 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 00:54:13,256 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=4379aba0-6b8b-420b-b650-2795f5b95107 00:54:13,257 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 00:54:13,257 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 00:54:13,259 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'autoconnect-retries': <1>, 'id': <'Wired Connection'>, 'multi-connect': <3>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'a7b6f21e-0f48-49b0-b77e-155e6110a87d'>, 'wait-device-timeout': <60000>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dhcp-vendor-class-identifier': <'anaconda-Linux'>, 'dns': <@au []>, 'dns-search': <@as []>, 'may-fail': , 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:13,259 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:13,260 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'4379aba0-6b8b-420b-b650-2795f5b95107'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 00:54:14,229 DEBUG anaconda:anaconda: network: Set real ONBOOT values from kickstart result: ['enp1s0', 'enp1s0'] 00:54:14,233 DEBUG anaconda:anaconda: network: Creating network configurations. 00:54:14,234 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:add_device: not adding lo: unsupported type 00:54:14,235 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:add device: adding device enp1s0 00:54:14,236 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:physical device enp1s0 has multiple connections: ['a7b6f21e-0f48-49b0-b77e-155e6110a87d', 'abd15c20-86d1-42db-a7d7-7b2d19fd8708', '4379aba0-6b8b-420b-b650-2795f5b95107'] 00:54:14,240 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.ifcfg:Unexpected number of ifcfg files found for enp1s0: ['/etc/sysconfig/network-scripts/ifcfg-enp1s0', '/etc/sysconfig/network-scripts/ifcfg-enp1s0-1'] 00:54:14,242 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:added NetworkDeviceConfiguration(connection_uuid='abd15c20-86d1-42db-a7d7-7b2d19fd8708', device_name='enp1s0', device_type=) 00:54:14,242 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Device configurations changed: [(NetworkDeviceConfiguration(connection_uuid='', device_name='', device_type=0), NetworkDeviceConfiguration(connection_uuid='abd15c20-86d1-42db-a7d7-7b2d19fd8708', device_name='enp1s0', device_type=))] 00:54:14,246 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:add_connection: not adding a7b6f21e-0f48-49b0-b77e-155e6110a87d: interface name is required for type 00:54:14,246 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:add_connection: not adding abd15c20-86d1-42db-a7d7-7b2d19fd8708: already existing: [NetworkDeviceConfiguration(connection_uuid='abd15c20-86d1-42db-a7d7-7b2d19fd8708', device_name='enp1s0', device_type=)] 00:54:14,247 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:add_connection: adding connection 4379aba0-6b8b-420b-b650-2795f5b95107 00:54:14,247 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.device_configuration:add_connection: already have abd15c20-86d1-42db-a7d7-7b2d19fd8708 for device enp1s0, not adding 4379aba0-6b8b-420b-b650-2795f5b95107 00:54:14,248 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Device configurations created: [NetworkDeviceConfiguration(connection_uuid='abd15c20-86d1-42db-a7d7-7b2d19fd8708', device_name='enp1s0', device_type=)] 00:54:14,250 DEBUG anaconda:anaconda: network: Initialization finished. 00:54:14,251 INFO anaconda:anaconda: threading: Running Thread: AnaWaitForConnectingNMThread (281472750186976) 00:54:14,252 DEBUG anaconda:anaconda: anaconda: setting display mode to TUI 00:54:14,268 WARNING anaconda:anaconda: stdout: Not asking for VNC because of an automated install 00:54:14,269 WARNING anaconda:anaconda: stdout: Not asking for VNC because text mode was explicitly asked for in kickstart 00:54:14,269 INFO anaconda:anaconda: anaconda: Display mode is set to 'interactive text mode'. 00:54:14,310 INFO anaconda:anaconda: isys: 4204736 kB (4106 MB) are available 00:54:14,311 INFO anaconda:program: Running... losetup --list 00:54:14,325 INFO anaconda:anaconda: startup_utils: check_memory(): total:4106, needed:320, graphical:410 00:54:14,327 DEBUG anaconda:anaconda: addons: Loading ks section into module path for addon com_redhat_kdump 00:54:14,327 DEBUG anaconda:anaconda: addons: Loading spokes into module path for addon com_redhat_kdump 00:54:14,328 DEBUG anaconda:anaconda: addons: Loading ks section into module path for addon org_fedora_oscap 00:54:14,347 INFO anaconda:anaconda: network: got 0 NTP servers from DHCP 00:54:14,353 DEBUG anaconda:anaconda: startup_utils: no default systemd target set & in text/vnc mode - setting multi-user.target. 00:54:14,355 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.services:Default target is set to multi-user.target. 00:54:14,358 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.timezone.timezone:NTP servers are set to []. 00:54:14,362 INFO anaconda:anaconda: threading: Thread Done: AnaWaitForConnectingNMThread (281472750186976) 00:54:14,364 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.checker.checker:Constraint 'min_ram' is set to '335544320'. 00:54:14,370 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_selection.selection:Disk images are set to '{}'. 00:54:14,380 INFO anaconda:program: Running... udevadm settle --timeout=300 00:54:14,485 DEBUG anaconda:program: Return code: 0 00:54:14,692 INFO anaconda:program: Running [1] lvm version ... 00:54:14,708 INFO anaconda:program: stdout[1]: LVM version: 2.03.11(2)-RHEL8 (2021-01-28)#012 Library version: 1.02.175-RHEL8 (2021-01-28)#012 Driver version: 4.43.0#012 Configuration: ./configure --build=aarch64-redhat-linux-gnu --host=aarch64-redhat-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-default-dm-run-dir=/run --with-default-run-dir=/run/lvm --with-default-pid-dir=/run --with-default-locking-dir=/run/lock/lvm --with-usrlibdir=/usr/lib64 --enable-fsadm --enable-write_install --with-user= --with-group= --with-device-uid=0 --with-device-gid=6 --with-device-mode=0660 --enable-pkgconfig --enable-cmdlib --enable-dmeventd --enable-blkid_wiping --with-cluster=internal --with-udevdir=/usr/lib/udev/rules.d --enable-udev_sync --with-thin=internal --with-cache=internal --enable-lvmpolld --enable-lvmlockd-sanlock --enable-dbus-service --enable-notify-dbus --enable-dmfilemapd --with-writecache=internal --with-vdo=internal --with-vdo-format=/usr/bin/vdoformat --with-integrity=internal --disable-silent-rules 00:54:14,708 INFO anaconda:program: stderr[1]: 00:54:14,709 INFO anaconda:program: ...done [1] (exit code: 0) 00:54:14,834 INFO anaconda:program: Running... udevadm settle --timeout=300 00:54:14,925 DEBUG anaconda:program: Return code: 0 00:54:14,942 DEBUG anaconda:anaconda: core.storage: LABEL=OEMDRV matches [] for devicetree=None and disks_only=True 00:54:14,955 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_selection.selection:Protected devices are set to '[]'. 00:54:14,964 INFO anaconda:anaconda: threading: Running Thread: AnaStorageThread (281472750186976) 00:54:14,969 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:starting Blivet copy 00:54:14,970 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:finished Blivet copy 00:54:14,972 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/1. 00:54:14,974 INFO anaconda:anaconda: threading: Running Thread: AnaTimeInitThread (281472726462944) 00:54:14,985 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-ScanDevicesTask-1 (281472995160544) 00:54:14,987 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:no initiator set 00:54:14,987 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:resetting Blivet (version 3.2.2) instance 00:54:14,990 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:DeviceTree.populate: ignored_disks is [] ; exclusive_disks is [] 00:54:14,993 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:Failed to call the update_volume_info method: libstoragemgmt functionality not available 00:54:14,994 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [3] multipath --version ... 00:54:15,005 INFO anaconda:program: Running... hwclock --hctosys --utc 00:54:15,007 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[3]: 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[3]: Unknown switch: (null) 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage:multipath-tools v0.8.4 (05/04, 2020) 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage:Usage: 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-B|-d|-i|-q|-r] [-b file] [-p policy] [device] 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-R retries] -f device 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-R retries] -F 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-l|-ll] [device] 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-a|-w] device 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-A|-W] 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-i] [-c|-C] device 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-v level] [-i] [-u|-U] 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath [-h|-t|-T] 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage:Where: 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -h print this usage text 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -l show multipath topology (sysfs and DM info) 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -ll show multipath topology (maximum info) 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -f flush a multipath device map 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -F flush all multipath device maps 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -a add a device wwid to the wwids file 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -A add devices from kernel command line mpath.wwids 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: parameters to wwids file 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -c check if a device should be a path in a multipath device 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -C check if a multipath device has usable paths 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -q allow queue_if_no_path when multipathd is not running 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -d dry run, do not create or update devmaps 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -t display the currently used multipathd configuration 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -T display the multipathd configuration without builtin defaults 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -r force devmap reload 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -i ignore wwids file 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -B treat the bindings file as read only 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -b fil bindings file location 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -w remove a device from the wwids file 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -W reset the wwids file include only the current devices 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -R num number of times to retry removes of in-use devices 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -u check if the device specified in the program environment should be a 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: path in a multipath device 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -U check if the device specified in the program environment is a 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: multipath device with usable paths, see -C flag 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: -p pol force all maps to specified path grouping policy: 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: . failover one path per priority group 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: . multibus all paths in one priority group 00:54:15,008 WARNING org.fedoraproject.Anaconda.Modules.Storage: . group_by_serial one priority group per serial 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . group_by_prio one priority group per priority lvl 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . group_by_node_name one priority group per target node 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: -v lvl verbosity level: 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . 0 no output 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . 1 print created devmap names only 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . 2 default verbosity 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . 3 print debug information 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: device action limited to: 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . multipath named 'device' (ex: mpath0) 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . multipath whose wwid is 'device' (ex: 60051...) 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . multipath including the path named 'device' (ex: /dev/sda or 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: /dev/dm-0) 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage: . multipath including the path with maj:min 'device' (ex: 8:0) 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [3] (exit code: 1) 00:54:15,015 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [4] mpathconf --find_multipaths y --user_friendly_names y --with_multipathd y ... 00:54:15,065 DEBUG anaconda:anaconda: payload.manager: Restarting payload thread 00:54:15,069 INFO anaconda:anaconda: threading: Running Thread: AnaPayloadRestartThread (281472716960224) 00:54:15,071 INFO anaconda:anaconda: geoloc: Geolocation is disabled due to automated kickstart based installation. 00:54:15,073 INFO anaconda:anaconda: threading: Running Thread: AnaPayloadThread (281472708506080) 00:54:15,074 DEBUG anaconda:anaconda: payload.manager: Updating payload thread state: STARTED 00:54:15,074 DEBUG anaconda:anaconda: payload.manager: Updating payload thread state: WAITING_STORAGE 00:54:15,078 INFO anaconda:anaconda: threading: Thread Done: AnaPayloadRestartThread (281472716960224) 00:54:15,096 INFO anaconda:program: Running... systemctl start chronyd 00:54:15,003 DEBUG anaconda:program: Return code: 0 00:54:15,005 INFO anaconda:anaconda: threading: Thread Done: AnaTimeInitThread (281472726462944) 00:54:15,006 NOTICE rsyslogd:imjournal: journal files changed, reloading... [v8.1911.0-7.el8 try https://www.rsyslog.com/e/0 ] 00:54:15,012 INFO systemd:Starting NTP client/server... 00:54:15,048 INFO multipathd:Multipath configuration updated. 00:54:15,048 INFO multipathd:Reload multipathd for changes to take effect 00:54:15,064 INFO chronyd:chronyd version 3.5 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +SECHASH +IPV6 +DEBUG) 00:54:15,071 INFO chronyd:Using right/UTC timezone to obtain leap second data 00:54:15,080 INFO systemd:Reloading Device-Mapper Multipath Device Controller. 00:54:15,093 INFO multipathd:reconfigure (operator) 00:54:15,094 INFO multipathd:ok 00:54:15,104 INFO systemd:Reloaded Device-Mapper Multipath Device Controller. 00:54:15,107 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[4]: 00:54:15,107 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[4]: 00:54:15,107 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [4] (exit code: 0) 00:54:15,108 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:15,165 INFO systemd:Started NTP client/server. 00:54:15,187 DEBUG anaconda:program: Return code: 0 00:54:15,191 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:15,197 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,199 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,201 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,204 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,206 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,211 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,211 DEBUG anaconda:simpleline: GLib event loop is used! 00:54:15,212 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:devices to scan: ['vda', 'loop0', 'loop1', 'loop2', 'live-rw', 'live-base'] 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_device: name: vda ; info: {'DEVLINKS': '/dev/disk/by-path/virtio-pci-0000:03:00.0 ' 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: '/dev/disk/by-path/pci-0000:03:00.0', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVNAME': '/dev/vda', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVPATH': '/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVTYPE': 'disk', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_PART_TABLE_TYPE': 'gpt', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_PART_TABLE_UUID': '915ae8ed-01cd-45c0-a221-11ef24f00527', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_PATH': 'pci-0000:03:00.0', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_PATH_TAG': 'pci-0000_03_00_0', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MAJOR': '252', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MINOR': '0', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SUBSYSTEM': 'block', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_NAME': 'vda', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_PATH': '/sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'TAGS': ':systemd:', 00:54:15,222 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'USEC_INITIALIZED': '59640167'} ; 00:54:15,224 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:scanning vda (/sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda)... 00:54:15,224 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [5] lvm lvs --noheadings --nosuffix --nameprefixes --unquoted --units=b -a -o vg_name,lv_name,lv_uuid,lv_size,lv_attr,segtype,origin,pool_lv,data_lv,metadata_lv,role,move_pv,data_percent,metadata_percent,copy_percent --config= devices { preferred_names=["^/dev/mapper/", "^/dev/md/", "^/dev/sd"] } log {level=7 file=/tmp/lvm.log syslog=0} ... 00:54:15,371 INFO anaconda:anaconda: core.util: Skipping detection of unsupported hardware. 00:54:15,372 INFO anaconda:anaconda: core.util: Skipping detection of SMT. 00:54:15,405 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[5]: 00:54:15,406 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[5]: 00:54:15,406 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [5] (exit code: 0) 00:54:15,413 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:15,418 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,433 INFO anaconda:anaconda: lifecycle: Adding controller: SummaryHub 00:54:15,434 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevicePopulator.run: name: vda ; 00:54:15,436 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/device/vendor: 3078316166340a 00:54:15,437 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:15,437 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:vda is a disk 00:54:15,438 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 5 00:54:15,439 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 6 00:54:15,447 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice._set_format: vda ; type: None ; current: None ; 00:54:15,450 INFO anaconda:anaconda: lifecycle: Module initialized: TimeSpoke 00:54:15,454 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.update_sysfs_path: vda ; status: True ; 00:54:15,455 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda sysfs_path set to /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda 00:54:15,463 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.read_current_size: exists: True ; path: /dev/vda ; sysfs_path: /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda ; 00:54:15,464 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/size: 32303937313532300a 00:54:15,465 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated vda size to 10 GiB (10 GiB) 00:54:15,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/queue/rotational: 310a 00:54:15,467 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added disk vda (id 4) to device tree 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got device: DiskDevice instance (0xffff89e69dd8) -- 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = vda status = True id = 4 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = [] 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 10 GiB 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = existing None 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 252 minor = 0 exists = True protected = False 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 10 GiB path = /dev/vda 00:54:15,470 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = None removable = False wwn = None 00:54:15,472 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/ro: 300a 00:54:15,478 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_format: name: vda ; 00:54:15,487 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: AppleBootstrapFS.supported: supported: True ; 00:54:15,488 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('appleboot') returning AppleBootstrapFS instance with object id 8 00:54:15,497 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:15,498 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... modprobe --dry-run vfat 00:54:15,513 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:15,513 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efi') returning EFIFS instance with object id 9 00:54:15,523 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:15,525 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 10 00:54:15,534 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:15,534 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 11 00:54:15,540 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabelFormatPopulator.run: device: vda ; label_type: gpt ; 00:54:15,547 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: False ; status: True ; controllable: True ; 00:54:15,554 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.__init__: uuid: 915ae8ed-01cd-45c0-a221-11ef24f00527 ; label: None ; device: /dev/vda ; serial: None ; exists: True ; 00:54:15,570 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:Clear pmbr_boot on parted.Disk instance -- 00:54:15,570 WARNING org.fedoraproject.Anaconda.Modules.Storage: type: gpt primaryPartitionCount: 0 00:54:15,570 WARNING org.fedoraproject.Anaconda.Modules.Storage: lastPartitionNumber: -1 maxPrimaryPartitionCount: 128 00:54:15,570 WARNING org.fedoraproject.Anaconda.Modules.Storage: partitions: [] 00:54:15,570 WARNING org.fedoraproject.Anaconda.Modules.Storage: device: 00:54:15,570 WARNING org.fedoraproject.Anaconda.Modules.Storage: PedDisk: <_ped.Disk object at 0xffff89f44208> 00:54:15,574 INFO kernel: vda: 00:54:15,631 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('disklabel') returning DiskLabel instance with object id 12 00:54:15,638 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice._set_format: vda ; type: disklabel ; current: None ; 00:54:15,641 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got format: existing gpt disklabel 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_device: name: loop0 ; info: {'DEVNAME': '/dev/loop0', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVPATH': '/devices/virtual/block/loop0', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVTYPE': 'disk', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_TYPE': 'squashfs', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_USAGE': 'filesystem', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_VERSION': '4.0', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MAJOR': '7', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MINOR': '0', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SUBSYSTEM': 'block', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_NAME': 'loop0', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_PATH': '/sys/devices/virtual/block/loop0', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'TAGS': ':systemd:', 00:54:15,648 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'USEC_INITIALIZED': '59669538'} ; 00:54:15,650 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:scanning loop0 (/sys/devices/virtual/block/loop0)... 00:54:15,654 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: loop0 ; incomplete: False ; hidden: False ; 00:54:15,660 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,665 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevicePopulator.run: name: loop0 ; 00:54:15,672 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: /tmp/curl_fetch_url1/install.img (deleted) ; incomplete: False ; hidden: False ; 00:54:15,677 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,678 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 15 00:54:15,679 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 16 00:54:15,686 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice._set_format: /tmp/curl_fetch_url1/install.img (deleted) ; type: None ; current: None ; 00:54:15,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added file /tmp/curl_fetch_url1/install.img (deleted) (id 14) to device tree 00:54:15,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 19 00:54:15,698 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice.add_child: name: /tmp/curl_fetch_url1/install.img (deleted) ; child: loop0 ; kids: 0 ; 00:54:15,698 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 20 00:54:15,705 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice._set_format: loop0 ; type: None ; current: None ; 00:54:15,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added loop loop0 (id 18) to device tree 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got device: LoopDevice instance (0xffff89f61048) -- 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = loop0 status = False id = 18 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = ['existing 0 B file /tmp/curl_fetch_url1/install.img (deleted) (14)'] 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 0 B 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = existing None 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 0 minor = 0 exists = True protected = False 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 0 B path = /dev/loop0 00:54:15,709 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = None 00:54:15,712 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/loop0/ro: 310a 00:54:15,717 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_format: name: loop0 ; 00:54:15,726 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: AppleBootstrapFS.supported: supported: True ; 00:54:15,726 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('appleboot') returning AppleBootstrapFS instance with object id 22 00:54:15,735 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:15,735 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efi') returning EFIFS instance with object id 23 00:54:15,745 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:15,746 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 24 00:54:15,755 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:15,755 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 25 00:54:15,756 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:type detected on 'loop0' is 'squashfs' 00:54:15,756 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('squashfs') returning DeviceFormat instance with object id 26 00:54:15,763 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice._set_format: loop0 ; type: None ; current: None ; 00:54:15,765 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got format: existing None 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_device: name: loop1 ; info: {'DEVLINKS': '/dev/disk/by-uuid/7e7a9636-d983-4638-bac2-985eaa574dd4 ' 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: '/dev/disk/by-label/Anaconda', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVNAME': '/dev/loop1', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVPATH': '/devices/virtual/block/loop1', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVTYPE': 'disk', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_LABEL': 'Anaconda', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_LABEL_ENC': 'Anaconda', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_TYPE': 'ext4', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_USAGE': 'filesystem', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_UUID': '7e7a9636-d983-4638-bac2-985eaa574dd4', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_UUID_ENC': '7e7a9636-d983-4638-bac2-985eaa574dd4', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_VERSION': '1.0', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MAJOR': '7', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MINOR': '1', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SUBSYSTEM': 'block', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_NAME': 'loop1', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_PATH': '/sys/devices/virtual/block/loop1', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'TAGS': ':systemd:', 00:54:15,772 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'USEC_INITIALIZED': '59680409'} ; 00:54:15,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:scanning loop1 (/sys/devices/virtual/block/loop1)... 00:54:15,778 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: loop1 ; incomplete: False ; hidden: False ; 00:54:15,783 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,789 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevicePopulator.run: name: loop1 ; 00:54:15,794 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: /LiveOS/rootfs.img ; incomplete: False ; hidden: False ; 00:54:15,800 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,801 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 29 00:54:15,801 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 30 00:54:15,808 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice._set_format: /LiveOS/rootfs.img ; type: None ; current: None ; 00:54:15,810 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added file /LiveOS/rootfs.img (id 28) to device tree 00:54:15,810 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 33 00:54:15,820 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice.add_child: name: /LiveOS/rootfs.img ; child: loop1 ; kids: 0 ; 00:54:15,821 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 34 00:54:15,828 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice._set_format: loop1 ; type: None ; current: None ; 00:54:15,829 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added loop loop1 (id 32) to device tree 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got device: LoopDevice instance (0xffff89f74908) -- 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = loop1 status = False id = 32 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = ['existing 0 B file /LiveOS/rootfs.img (28)'] 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 0 B 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = existing None 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 0 minor = 0 exists = True protected = False 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 0 B path = /dev/loop1 00:54:15,831 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = None 00:54:15,833 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/loop1/ro: 310a 00:54:15,838 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_format: name: loop1 ; 00:54:15,847 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: AppleBootstrapFS.supported: supported: True ; 00:54:15,847 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('appleboot') returning AppleBootstrapFS instance with object id 36 00:54:15,856 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:15,856 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efi') returning EFIFS instance with object id 37 00:54:15,865 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:15,866 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 38 00:54:15,875 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:15,876 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 39 00:54:15,876 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:type detected on 'loop1' is 'ext4' 00:54:15,877 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... dumpe2fs -h /dev/loop1 00:54:15,890 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:15,891 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem volume name: Anaconda 00:54:15,891 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last mounted on: /var/tmp/lorax/lorax.imgutils.t7or23n_ 00:54:15,891 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem UUID: 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:15,892 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem magic number: 0xEF53 00:54:15,892 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem revision #: 1 (dynamic) 00:54:15,892 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem features: has_journal ext_attr resize_inode dir_index filetype extent 64bit flex_bg sparse_super large_file huge_file dir_nlink extra_isize metadata_csum 00:54:15,892 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem flags: unsigned_directory_hash 00:54:15,893 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Default mount options: user_xattr acl 00:54:15,893 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem state: clean 00:54:15,893 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Errors behavior: Continue 00:54:15,894 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem OS type: Linux 00:54:15,894 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode count: 196608 00:54:15,894 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Block count: 786432 00:54:15,894 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved block count: 0 00:54:15,895 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Free blocks: 211470 00:54:15,895 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Free inodes: 158699 00:54:15,895 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:First block: 0 00:54:15,896 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Block size: 4096 00:54:15,896 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Fragment size: 4096 00:54:15,896 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Group descriptor size: 64 00:54:15,896 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved GDT blocks: 383 00:54:15,897 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Blocks per group: 32768 00:54:15,897 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Fragments per group: 32768 00:54:15,897 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inodes per group: 8192 00:54:15,898 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode blocks per group: 512 00:54:15,898 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Flex block group size: 16 00:54:15,898 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem created: Tue Jun 1 20:27:53 2021 00:54:15,898 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last mount time: Tue Jun 1 20:27:54 2021 00:54:15,899 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last write time: Tue Jun 1 20:28:21 2021 00:54:15,899 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Mount count: 1 00:54:15,899 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Maximum mount count: -1 00:54:15,899 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last checked: Tue Jun 1 20:27:53 2021 00:54:15,900 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Check interval: Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11870/12000 0 () 00:54:15,900 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Lifetime writes: 2229 MB 00:54:15,900 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved blocks uid: 0 (user root) 00:54:15,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved blocks gid: 0 (group root) 00:54:15,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:First inode: 11 00:54:15,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode size:#011 256 00:54:15,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Required extra isize: 32 00:54:15,902 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Desired extra isize: 32 00:54:15,902 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal inode: 8 00:54:15,902 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Default directory hash: half_md4 00:54:15,903 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Directory Hash Seed: 48c7030f-80a7-422b-b827-5aa3b23040e9 00:54:15,903 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal backup: inode blocks 00:54:15,903 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Checksum type: crc32c 00:54:15,903 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Checksum: 0xa13ad080 00:54:15,904 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal features: journal_64bit journal_checksum_v3 00:54:15,904 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal size: 64M 00:54:15,904 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal length: 16384 00:54:15,905 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal sequence: 0x00000007 00:54:15,905 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal start: 0 00:54:15,905 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal checksum type: crc32c 00:54:15,905 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal checksum: 0xa6311df9 00:54:15,906 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: 00:54:15,906 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:15,908 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'dumpe2fs 1.45.6 (20-Mar-2020)' 00:54:15,908 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:15,910 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... resize2fs -P /dev/loop1 00:54:15,922 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:15,923 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Couldn't find valid filesystem superblock. 00:54:15,923 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:15,923 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'resize2fs 1.45.6 (20-Mar-2020)' 00:54:15,924 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'resize2fs: Device or resource busy while trying to open /dev/loop1' 00:54:15,924 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 1 00:54:15,924 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:Failed to obtain minimum size for device /dev/loop1: failed to gather info from resize program: 1 00:54:15,932 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:15,933 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('ext4') returning Ext4FS instance with object id 40 00:54:15,943 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice._set_format: loop1 ; type: ext4 ; current: None ; 00:54:15,943 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got format: existing ext4 filesystem 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_device: name: loop2 ; info: {'DEVNAME': '/dev/loop2', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVPATH': '/devices/virtual/block/loop2', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVTYPE': 'disk', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MAJOR': '7', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MINOR': '2', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SUBSYSTEM': 'block', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_NAME': 'loop2', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_PATH': '/sys/devices/virtual/block/loop2', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'TAGS': ':systemd:', 00:54:15,950 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'USEC_INITIALIZED': '59675789'} ; 00:54:15,951 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:scanning loop2 (/sys/devices/virtual/block/loop2)... 00:54:15,956 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: loop2 ; incomplete: False ; hidden: False ; 00:54:15,962 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,967 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevicePopulator.run: name: loop2 ; 00:54:15,972 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: /overlay (deleted) ; incomplete: False ; hidden: False ; 00:54:15,978 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:15,978 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 43 00:54:15,979 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 44 00:54:15,986 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice._set_format: /overlay (deleted) ; type: None ; current: None ; 00:54:15,987 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added file /overlay (deleted) (id 42) to device tree 00:54:15,988 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 47 00:54:15,996 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice.add_child: name: /overlay (deleted) ; child: loop2 ; kids: 0 ; 00:54:15,996 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 48 00:54:16,003 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice._set_format: loop2 ; type: None ; current: None ; 00:54:16,004 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added loop loop2 (id 46) to device tree 00:54:16,005 INFO anaconda:anaconda: lifecycle: Module initialized: LangSpoke 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got device: LoopDevice instance (0xffff89f00160) -- 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = loop2 status = False id = 46 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = ['existing 0 B file /overlay (deleted) (42)'] 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 0 B 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = existing None 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 0 minor = 0 exists = True protected = False 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 0 B path = /dev/loop2 00:54:16,005 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = None 00:54:16,007 INFO anaconda:anaconda: threading: Running Thread: AnaSoftwareWatcher (281472726462944) 00:54:16,008 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/loop2/ro: 300a 00:54:16,008 INFO anaconda:anaconda: threading: Running Thread: AnaSourceWatcher (281472716960224) 00:54:16,013 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_format: name: loop2 ; 00:54:16,014 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:no type or existing type for loop2, bailing 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_device: name: live-rw ; info: {'DEVLINKS': '/dev/disk/by-id/dm-name-live-rw ' 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: '/dev/disk/by-uuid/7e7a9636-d983-4638-bac2-985eaa574dd4 ' 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: '/dev/mapper/live-rw /dev/disk/by-label/Anaconda', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVNAME': '/dev/dm-0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVPATH': '/devices/virtual/block/dm-0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVTYPE': 'disk', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_NAME': 'live-rw', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_SUSPENDED': '0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_UDEV_DISABLE_LIBRARY_FALLBACK_FLAG': '1', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_UDEV_PRIMARY_SOURCE_FLAG': '1', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_UDEV_RULES_VSN': '2', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_LABEL': 'Anaconda', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_LABEL_ENC': 'Anaconda', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_TYPE': 'ext4', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_USAGE': 'filesystem', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_UUID': '7e7a9636-d983-4638-bac2-985eaa574dd4', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_UUID_ENC': '7e7a9636-d983-4638-bac2-985eaa574dd4', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_VERSION': '1.0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MAJOR': '253', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MINOR': '0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SUBSYSTEM': 'block', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_NAME': 'dm-0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_PATH': '/sys/devices/virtual/block/dm-0', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'TAGS': ':systemd:', 00:54:16,023 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'USEC_INITIALIZED': '50450401'} ; 00:54:16,027 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:scanning live-rw (/sys/devices/virtual/block/dm-0)... 00:54:16,033 INFO anaconda:anaconda: threading: Running Thread: AnaStorageWatcher (281472699265504) 00:54:16,034 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: live-rw ; incomplete: False ; hidden: False ; 00:54:16,040 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:16,040 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [6] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,047 INFO anaconda:anaconda: lifecycle: Module initialized: NetworkSpoke 00:54:16,057 INFO anaconda:anaconda: lifecycle: Module initialized: PasswordSpoke 00:54:16,063 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[6]: 00:54:16,063 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[6]: 00:54:16,064 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [6] (exit code: 0) 00:54:16,064 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [7] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,066 WARNING anaconda:anaconda: ui.tui.hubs: Spoke PasswordSpoke initialization failure! 00:54:16,072 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[7]: 00:54:16,072 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[7]: 00:54:16,073 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [7] (exit code: 0) 00:54:16,073 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [8] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,081 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[8]: 00:54:16,082 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[8]: 00:54:16,082 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [8] (exit code: 0) 00:54:16,083 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [9] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,085 INFO anaconda:anaconda: lifecycle: Module initialized: UserSpoke 00:54:16,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[9]: 00:54:16,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[9]: 00:54:16,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [9] (exit code: 0) 00:54:16,092 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [10] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,093 INFO anaconda:anaconda: lifecycle: Initialization of all modules (8) has been started. 00:54:16,100 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[10]: 00:54:16,100 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[10]: 00:54:16,101 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [10] (exit code: 0) 00:54:16,101 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [11] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,109 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[11]: 00:54:16,110 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[11]: 00:54:16,110 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [11] (exit code: 0) 00:54:16,110 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [12] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,118 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[12]: 00:54:16,119 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[12]: 00:54:16,119 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [12] (exit code: 0) 00:54:16,119 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [13] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,128 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[13]: 00:54:16,128 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[13]: 00:54:16,128 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [13] (exit code: 0) 00:54:16,129 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [14] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,137 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[14]: 00:54:16,137 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[14]: 00:54:16,138 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [14] (exit code: 0) 00:54:16,143 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevicePopulator.run: name: live-rw ; 00:54:16,154 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: loop1 ; incomplete: False ; hidden: False ; 00:54:16,163 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 0 B loop loop1 (32) with existing ext4 filesystem 00:54:16,171 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: loop2 ; incomplete: False ; hidden: False ; 00:54:16,177 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 0 B loop loop2 (46) 00:54:16,183 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: live-rw ; incomplete: False ; hidden: False ; 00:54:16,188 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:16,189 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 52 00:54:16,197 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice.add_child: name: loop1 ; child: live-rw ; kids: 0 ; 00:54:16,198 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 53 00:54:16,205 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice._set_format: live-rw ; type: None ; current: None ; 00:54:16,212 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice.update_sysfs_path: live-rw ; status: True ; 00:54:16,213 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:live-rw sysfs_path set to /sys/devices/virtual/block/dm-0 00:54:16,220 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice.read_current_size: exists: True ; path: /dev/mapper/live-rw ; sysfs_path: /sys/devices/virtual/block/dm-0 ; 00:54:16,222 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/dm-0/size: 363239313435360a 00:54:16,223 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated live-rw size to 3 GiB (3 GiB) 00:54:16,223 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added dm live-rw (id 51) to device tree 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got device: DMDevice instance (0xffff89f00e48) -- 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = live-rw status = True id = 51 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = ['existing 0 B loop loop1 (32) with existing ext4 filesystem'] 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 3 GiB 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = existing None 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 0 minor = 0 exists = True protected = True 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = /sys/devices/virtual/block/dm-0 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 3 GiB path = /dev/mapper/live-rw 00:54:16,226 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = None target = None dm_uuid = None 00:54:16,228 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [15] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,236 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[15]: 00:54:16,237 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[15]: 00:54:16,237 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [15] (exit code: 0) 00:54:16,237 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [16] dmsetup info -co subsystem --noheadings live-rw ... 00:54:16,245 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[16]: 00:54:16,246 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[16]: 00:54:16,246 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [16] (exit code: 0) 00:54:16,247 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/dm-0/ro: 300a 00:54:16,253 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_format: name: live-rw ; 00:54:16,262 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: AppleBootstrapFS.supported: supported: True ; 00:54:16,262 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('appleboot') returning AppleBootstrapFS instance with object id 55 00:54:16,270 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:16,271 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efi') returning EFIFS instance with object id 56 00:54:16,280 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:16,280 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 57 00:54:16,289 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:16,290 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 58 00:54:16,290 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:type detected on 'live-rw' is 'ext4' 00:54:16,291 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... dumpe2fs -h /dev/mapper/live-rw 00:54:16,308 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:16,308 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem volume name: Anaconda 00:54:16,309 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last mounted on: /sysroot 00:54:16,309 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem UUID: 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:16,309 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem magic number: 0xEF53 00:54:16,310 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem revision #: 1 (dynamic) 00:54:16,310 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery extent 64bit flex_bg sparse_super large_file huge_file dir_nlink extra_isize metadata_csum 00:54:16,310 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem flags: unsigned_directory_hash 00:54:16,310 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Default mount options: user_xattr acl 00:54:16,311 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem state: clean 00:54:16,311 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Errors behavior: Continue 00:54:16,311 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem OS type: Linux 00:54:16,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode count: 196608 00:54:16,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Block count: 786432 00:54:16,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved block count: 0 00:54:16,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Free blocks: 211470 00:54:16,313 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Free inodes: 158699 00:54:16,313 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:First block: 0 00:54:16,313 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Block size: 4096 00:54:16,314 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Fragment size: 4096 00:54:16,314 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Group descriptor size: 64 00:54:16,314 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved GDT blocks: 383 00:54:16,315 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Blocks per group: 32768 00:54:16,315 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Fragments per group: 32768 00:54:16,315 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inodes per group: 8192 00:54:16,315 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode blocks per group: 512 00:54:16,316 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Flex block group size: 16 00:54:16,316 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem created: Tue Jun 1 20:27:53 2021 00:54:16,316 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last mount time: Wed Sep 15 00:53:26 2021 00:54:16,317 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last write time: Wed Sep 15 00:53:26 2021 00:54:16,317 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Mount count: 2 00:54:16,317 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Maximum mount count: -1 00:54:16,317 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last checked: Tue Jun 1 20:27:53 2021 00:54:16,318 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Check interval: 0 () 00:54:16,318 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Lifetime writes: 2229 MB 00:54:16,318 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved blocks uid: 0 (user root) 00:54:16,318 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved blocks gid: 0 (group root) 00:54:16,319 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:First inode: 11 00:54:16,319 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode size:#011 256 00:54:16,319 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Required extra isize: 32 00:54:16,320 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Desired extra isize: 32 00:54:16,320 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal inode: 8 00:54:16,320 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Default directory hash: half_md4 00:54:16,320 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Directory Hash Seed: 48c7030f-80a7-422b-b827-5aa3b23040e9 00:54:16,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal backup: inode blocks 00:54:16,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Checksum type: crc32c 00:54:16,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Checksum: 0x41823c36 00:54:16,322 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal features: journal_64bit journal_checksum_v3 00:54:16,322 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal size: 64M 00:54:16,322 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal length: 16384 00:54:16,322 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal sequence: 0x00000008 00:54:16,323 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal start: 1 00:54:16,323 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal checksum type: crc32c 00:54:16,323 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal checksum: 0xa21a0407 00:54:16,324 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: 00:54:16,324 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:16,324 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'dumpe2fs 1.45.6 (20-Mar-2020)' 00:54:16,324 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:16,326 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... resize2fs -P /dev/mapper/live-rw 00:54:16,339 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:16,339 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Estimated minimum size of the filesystem: 786432 00:54:16,340 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:16,340 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'resize2fs 1.45.6 (20-Mar-2020)' 00:54:16,340 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:16,344 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:using current size 3 GiB as min size 00:54:16,351 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:16,352 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('ext4') returning Ext4FS instance with object id 59 00:54:16,359 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice._set_format: live-rw ; type: ext4 ; current: None ; 00:54:16,360 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got format: existing ext4 filesystem 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_device: name: live-base ; info: {'DEVLINKS': '/dev/mapper/live-base ' 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: '/dev/disk/by-uuid/7e7a9636-d983-4638-bac2-985eaa574dd4 ' 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: '/dev/disk/by-id/dm-name-live-base /dev/disk/by-label/Anaconda', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVNAME': '/dev/dm-1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVPATH': '/devices/virtual/block/dm-1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DEVTYPE': 'disk', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_NAME': 'live-base', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_SUSPENDED': '0', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_UDEV_DISABLE_LIBRARY_FALLBACK_FLAG': '1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_UDEV_PRIMARY_SOURCE_FLAG': '1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'DM_UDEV_RULES_VSN': '2', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_LABEL': 'Anaconda', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_LABEL_ENC': 'Anaconda', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_TYPE': 'ext4', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_USAGE': 'filesystem', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_UUID': '7e7a9636-d983-4638-bac2-985eaa574dd4', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_UUID_ENC': '7e7a9636-d983-4638-bac2-985eaa574dd4', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'ID_FS_VERSION': '1.0', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MAJOR': '253', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'MINOR': '1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SUBSYSTEM': 'block', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_NAME': 'dm-1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'SYS_PATH': '/sys/devices/virtual/block/dm-1', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'TAGS': ':systemd:', 00:54:16,368 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'USEC_INITIALIZED': '50536991'} ; 00:54:16,371 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:scanning live-base (/sys/devices/virtual/block/dm-1)... 00:54:16,375 DEBUG NetworkManager: [1631667256.3748] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 7.727 seconds 00:54:16,375 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: live-base ; incomplete: False ; hidden: False ; 00:54:16,380 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:16,381 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [17] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,390 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[17]: 00:54:16,391 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[17]: 00:54:16,391 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [17] (exit code: 0) 00:54:16,391 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [18] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,400 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[18]: 00:54:16,400 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[18]: 00:54:16,401 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [18] (exit code: 0) 00:54:16,401 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [19] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,409 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[19]: 00:54:16,410 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[19]: 00:54:16,410 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [19] (exit code: 0) 00:54:16,411 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [20] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,419 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[20]: 00:54:16,419 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[20]: 00:54:16,420 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [20] (exit code: 0) 00:54:16,420 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [21] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,429 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[21]: 00:54:16,429 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[21]: 00:54:16,429 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [21] (exit code: 0) 00:54:16,430 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [22] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,438 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[22]: 00:54:16,439 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[22]: 00:54:16,439 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [22] (exit code: 0) 00:54:16,439 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [23] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,447 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[23]: 00:54:16,448 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[23]: 00:54:16,448 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [23] (exit code: 0) 00:54:16,448 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [24] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[24]: 00:54:16,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[24]: 00:54:16,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [24] (exit code: 0) 00:54:16,458 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [25] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[25]: 00:54:16,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[25]: 00:54:16,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [25] (exit code: 0) 00:54:16,472 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevicePopulator.run: name: live-base ; 00:54:16,480 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: loop1 ; incomplete: False ; hidden: False ; 00:54:16,486 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 0 B loop loop1 (32) with existing ext4 filesystem 00:54:16,492 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: live-base ; incomplete: False ; hidden: False ; 00:54:16,498 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned None 00:54:16,499 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 62 00:54:16,507 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice.add_child: name: loop1 ; child: live-base ; kids: 1 ; 00:54:16,507 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 63 00:54:16,514 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice._set_format: live-base ; type: None ; current: None ; 00:54:16,521 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice.update_sysfs_path: live-base ; status: True ; 00:54:16,522 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:live-base sysfs_path set to /sys/devices/virtual/block/dm-1 00:54:16,529 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice.read_current_size: exists: True ; path: /dev/mapper/live-base ; sysfs_path: /sys/devices/virtual/block/dm-1 ; 00:54:16,530 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/dm-1/size: 363239313435360a 00:54:16,531 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated live-base size to 3 GiB (3 GiB) 00:54:16,531 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added dm live-base (id 61) to device tree 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got device: DMDevice instance (0xffff89f04630) -- 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = live-base status = True id = 61 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = ['existing 0 B loop loop1 (32) with existing ext4 filesystem'] 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 3 GiB 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = existing None 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 0 minor = 0 exists = True protected = True 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = /sys/devices/virtual/block/dm-1 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 3 GiB path = /dev/mapper/live-base 00:54:16,533 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = None target = None dm_uuid = None 00:54:16,534 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [26] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,543 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[26]: 00:54:16,543 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[26]: 00:54:16,543 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [26] (exit code: 0) 00:54:16,544 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running [27] dmsetup info -co subsystem --noheadings live-base ... 00:54:16,552 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout[27]: 00:54:16,552 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr[27]: 00:54:16,552 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:...done [27] (exit code: 0) 00:54:16,554 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/virtual/block/dm-1/ro: 310a 00:54:16,559 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.handle_format: name: live-base ; 00:54:16,569 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: AppleBootstrapFS.supported: supported: True ; 00:54:16,569 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('appleboot') returning AppleBootstrapFS instance with object id 65 00:54:16,578 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:16,578 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efi') returning EFIFS instance with object id 66 00:54:16,587 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:16,587 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 67 00:54:16,596 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: MacEFIFS.supported: supported: True ; 00:54:16,596 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('macefi') returning MacEFIFS instance with object id 68 00:54:16,597 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:type detected on 'live-base' is 'ext4' 00:54:16,598 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... dumpe2fs -h /dev/mapper/live-base 00:54:16,610 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:16,611 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem volume name: Anaconda 00:54:16,611 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last mounted on: /var/tmp/lorax/lorax.imgutils.t7or23n_ 00:54:16,611 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem UUID: 7e7a9636-d983-4638-bac2-985eaa574dd4 00:54:16,611 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem magic number: 0xEF53 00:54:16,612 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem revision #: 1 (dynamic) 00:54:16,612 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem features: has_journal ext_attr resize_inode dir_index filetype extent 64bit flex_bg sparse_super large_file huge_file dir_nlink extra_isize metadata_csum 00:54:16,612 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem flags: unsigned_directory_hash 00:54:16,613 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Default mount options: user_xattr acl 00:54:16,613 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem state: clean 00:54:16,613 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Errors behavior: Continue 00:54:16,613 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem OS type: Linux 00:54:16,614 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode count: 196608 00:54:16,614 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Block count: 786432 00:54:16,614 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved block count: 0 00:54:16,615 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Free blocks: 211470 00:54:16,615 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Free inodes: 158699 00:54:16,615 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:First block: 0 00:54:16,616 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Block size: 4096 00:54:16,616 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Fragment size: 4096 00:54:16,616 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Group descriptor size: 64 00:54:16,616 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved GDT blocks: 383 00:54:16,617 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Blocks per group: 32768 00:54:16,617 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Fragments per group: 32768 00:54:16,617 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inodes per group: 8192 00:54:16,617 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode blocks per group: 512 00:54:16,618 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Flex block group size: 16 00:54:16,618 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Filesystem created: Tue Jun 1 20:27:53 2021 00:54:16,618 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last mount time: Tue Jun 1 20:27:54 2021 00:54:16,619 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last write time: Tue Jun 1 20:28:21 2021 00:54:16,619 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Mount count: 1 00:54:16,619 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Maximum mount count: -1 00:54:16,619 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Last checked: Tue Jun 1 20:27:53 2021 00:54:16,620 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Check interval: 0 () 00:54:16,620 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Lifetime writes: 2229 MB 00:54:16,620 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved blocks uid: 0 (user root) 00:54:16,621 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Reserved blocks gid: 0 (group root) 00:54:16,621 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:First inode: 11 00:54:16,621 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Inode size:#011 256 00:54:16,621 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Required extra isize: 32 00:54:16,622 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Desired extra isize: 32 00:54:16,622 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal inode: 8 00:54:16,622 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Default directory hash: half_md4 00:54:16,623 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Directory Hash Seed: 48c7030f-80a7-422b-b827-5aa3b23040e9 00:54:16,623 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal backup: inode blocks 00:54:16,623 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Checksum type: crc32c 00:54:16,623 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Checksum: 0xa13ad080 00:54:16,624 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal features: journal_64bit journal_checksum_v3 00:54:16,624 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal size: 64M 00:54:16,624 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal length: 16384 00:54:16,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal sequence: 0x00000007 00:54:16,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal start: 0 00:54:16,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal checksum type: crc32c 00:54:16,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Journal checksum: 0xa6311df9 00:54:16,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: 00:54:16,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:16,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'dumpe2fs 1.45.6 (20-Mar-2020)' 00:54:16,627 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:16,628 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... resize2fs -P /dev/mapper/live-base 00:54:16,637 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:16,638 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Couldn't find valid filesystem superblock. 00:54:16,638 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:16,638 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'resize2fs 1.45.6 (20-Mar-2020)' 00:54:16,639 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'resize2fs: Operation not permitted while trying to open /dev/mapper/live-base' 00:54:16,639 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 1 00:54:16,640 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:Failed to obtain minimum size for device /dev/mapper/live-base: failed to gather info from resize program: 1 00:54:16,647 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:16,648 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('ext4') returning Ext4FS instance with object id 69 00:54:16,654 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DMDevice._set_format: live-base ; type: ext4 ; current: None ; 00:54:16,660 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:got format: existing ext4 filesystem 00:54:16,660 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:16,750 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:16,755 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:16,757 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:16,759 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:16,761 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:16,763 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:16,766 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:16,769 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:device /dev/vda data[440:443] = 00000000 00:54:16,769 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:edd: MBR signature on vda is zero. new disk image? 00:54:16,770 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:edd: collected mbr signatures: {} 00:54:16,772 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:glob: /sys/firmware/edd/int13_dev*/ 00:54:16,778 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.teardown: vda ; status: True ; controllable: True ; 00:54:16,783 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.teardown: device: /dev/vda ; type: disklabel ; status: False ; 00:54:16,788 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.teardown: device: /dev/vda ; type: disklabel ; status: False ; 00:54:16,788 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:16,880 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:16,885 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice.teardown: loop2 ; status: False ; controllable: False ; 00:54:16,893 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice.teardown: /overlay (deleted) ; status: False ; controllable: False ; 00:54:16,895 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.bootloader.factory:Created the boot loader Aarch64EFIGRUB. 00:54:16,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.teardown: vda ; status: True ; controllable: True ; 00:54:16,906 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.teardown: device: /dev/vda ; type: disklabel ; status: False ; 00:54:16,912 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.teardown: device: /dev/vda ; type: disklabel ; status: False ; 00:54:16,912 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:16,960 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:16,965 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice.teardown: loop2 ; status: False ; controllable: False ; 00:54:16,970 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice.teardown: /overlay (deleted) ; status: False ; controllable: False ; 00:54:16,996 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:17,003 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:17,009 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:17,015 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-ScanDevicesTask-1 (281472995160544) 00:54:17,016 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:The storage model has changed. 00:54:17,901 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:The storage model has changed. 00:54:17,902 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:The partitioning NONE is applied. 00:54:17,905 INFO anaconda:anaconda: threading: Thread Done: AnaStorageThread (281472750186976) 00:54:17,906 DEBUG anaconda:anaconda: payload.manager: Updating payload thread state: WAITING_NETWORK 00:54:17,906 DEBUG anaconda:anaconda: payload.manager: Updating payload thread state: DOWNLOADING_PKG_METADATA 00:54:17,907 INFO anaconda:packaging: Configuring the base repo 00:54:17,910 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Payloads/Task/1. 00:54:17,918 WARNING org.fedoraproject.Anaconda.Modules.Payloads:INFO:anaconda.threading:Running Thread: AnaTaskThread-TearDownSourcesTask-1 (281472624226784) 00:54:17,918 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.base.initialization:Collected [] tasks from SourceType.URL source 00:54:17,919 WARNING org.fedoraproject.Anaconda.Modules.Payloads:INFO:anaconda.threading:Thread Done: AnaTaskThread-TearDownSourcesTask-1 (281472624226784) 00:54:17,937 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.disk_selection.selection:Selected disks are set to '['vda']'. 00:54:17,940 DEBUG anaconda:anaconda: ui.lib.storage: Selecting all disks by default: vda 00:54:17,942 INFO anaconda:anaconda: lifecycle: Module initialized: StorageSpoke 00:54:17,943 INFO anaconda:anaconda: threading: Thread Done: AnaStorageWatcher (281472699265504) 00:54:17,969 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Payloads/Task/2. 00:54:17,976 WARNING org.fedoraproject.Anaconda.Modules.Payloads:INFO:anaconda.threading:Running Thread: AnaTaskThread-SetUpSourcesTask-1 (281472624226784) 00:54:17,977 WARNING org.fedoraproject.Anaconda.Modules.Payloads:DEBUG:anaconda.modules.payloads.base.initialization:Collected [] tasks from SourceType.URL source 00:54:17,977 WARNING org.fedoraproject.Anaconda.Modules.Payloads:INFO:anaconda.threading:Thread Done: AnaTaskThread-SetUpSourcesTask-1 (281472624226784) 00:54:18,032 DEBUG anaconda:packaging: Using the repo configuration: RepoConfigurationData(cost=1000, excluded_packages=[], included_packages=[], name='anaconda-0', proxy='', ssl_configuration=SSLConfigurationData(ca_cert_path='', client_cert_path='', client_key_path=''), ssl_verification_enabled=True, type='BASEURL', url='http://qa.centos.org/centos/8/BaseOS/aarch64/os/') 00:54:18,033 DEBUG anaconda:packaging: retrieving treeinfo from http://qa.centos.org/centos/8/BaseOS/aarch64/os/ (proxy: None ; ssl_verify: True) 00:54:18,034 INFO anaconda:packaging: Trying to download '.treeinfo' 00:54:18,490 DEBUG anaconda:packaging: Retrieved '.treeinfo' from http://qa.centos.org/centos/8/BaseOS/aarch64/os/ 00:54:18,502 DEBUG anaconda:packaging: getting release version from tree at http://qa.centos.org/centos/8/BaseOS/aarch64/os/ (8) 00:54:18,502 DEBUG anaconda:packaging: using treeinfo release version of 8 00:54:18,503 DEBUG anaconda:packaging: Treeinfo points base repository to http://qa.centos.org/centos/8/BaseOS/aarch64/os/. 00:54:18,504 DEBUG anaconda:packaging: releasever from http://qa.centos.org/centos/8/BaseOS/aarch64/os/ is 8 00:54:18,505 DEBUG anaconda:packaging: Adding new treeinfo repository: AppStream enabled: True 00:54:18,507 INFO anaconda:packaging: added repo: 'AppStream' - http://qa.centos.org/centos/8/AppStream/aarch64/os 00:54:18,508 INFO anaconda:librepo: Librepo version: 1.12.0 with CURL_GLOBAL_ACK_EINTR support (libcurl/7.61.1 OpenSSL/1.1.1g zlib/1.2.11 brotli/1.0.6 libidn2/2.2.0 libpsl/0.20.2 (+libidn2/2.2.0) libssh/0.9.4/openssl/zlib nghttp2/1.33.0) 00:54:18,533 DEBUG anaconda:dnf: repo: downloading from remote: AppStream 00:54:18,534 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/repomd.xml 00:54:18,578 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/f7b87e380eb56e3cc969de91c6ba6ecd81b13e5816fdcb39bc6e55e659adff77-primary.xml.gz 00:54:18,578 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/a138f8a422ceb8beccc25559c5827fdaf9012bbe703b023bba03d0c3ea1645bc-filelists.xml.gz 00:54:18,579 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/796548d400db5a3b22104cb8c8982e06c952cdfbfbaebb7b6f3f5cdf68143c4d-comps-AppStream.aarch64.xml 00:54:18,595 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/10592d52ea7062b096f6867d0b57ae7966fd713ce552d099189bf51b1ff660fc-modules.yaml.xz 00:54:18,726 INFO anaconda:packaging: enabled repo: 'AppStream' - ['http://qa.centos.org/centos/8/AppStream/aarch64/os'] and got repomd 00:54:18,729 INFO anaconda:packaging: added repo: 'anaconda' - http://qa.centos.org/centos/8/BaseOS/aarch64/os/ 00:54:18,729 DEBUG anaconda:dnf: repo: downloading from remote: anaconda 00:54:18,730 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/repomd.xml 00:54:18,734 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/530be29f98f0d9691be610c92ed1ffff1624deeffd3777eac92afc5590bda9e4-primary.xml.gz 00:54:18,735 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/be45064687469872a2ab3d345f30df09cc474430ec0c4b70c3023890214b00bc-filelists.xml.gz 00:54:18,736 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/55b027c1a59c8ec7023f20955b5ccc9ca63c4f6e900e1b870d96ddf5340a2e09-comps-BaseOS.aarch64.xml 00:54:19,529 INFO anaconda:packaging: enabled repo: 'anaconda' - ['http://qa.centos.org/centos/8/BaseOS/aarch64/os/'] and got repomd 00:54:19,530 DEBUG anaconda:packaging: repo koji-override-0: mirrorlist None, baseurl http://qa.centos.org/centos/8/BaseOS/aarch64/os/, metalink False 00:54:19,531 INFO anaconda:packaging: added repo: 'koji-override-0' - http://qa.centos.org/centos/8/BaseOS/aarch64/os/ 00:54:19,532 DEBUG anaconda:packaging: repo koji-override-1: mirrorlist None, baseurl http://qa.centos.org/centos/8/AppStream/aarch64/os/, metalink False 00:54:19,534 INFO anaconda:packaging: added repo: 'koji-override-1' - http://qa.centos.org/centos/8/AppStream/aarch64/os/ 00:54:19,534 DEBUG anaconda:packaging: repo AppStream: mirrorlist None, baseurl http://qa.centos.org/centos/8/AppStream/aarch64/os, metalink False 00:54:19,536 INFO anaconda:packaging: added repo: 'AppStream' - http://qa.centos.org/centos/8/AppStream/aarch64/os 00:54:19,539 DEBUG anaconda:dnf: repo: downloading from remote: koji-override-0 00:54:19,540 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/repomd.xml 00:54:19,544 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/530be29f98f0d9691be610c92ed1ffff1624deeffd3777eac92afc5590bda9e4-primary.xml.gz 00:54:19,545 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/be45064687469872a2ab3d345f30df09cc474430ec0c4b70c3023890214b00bc-filelists.xml.gz 00:54:19,546 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/repodata/55b027c1a59c8ec7023f20955b5ccc9ca63c4f6e900e1b870d96ddf5340a2e09-comps-BaseOS.aarch64.xml 00:54:19,650 INFO anaconda:packaging: enabled repo: 'koji-override-0' - ['http://qa.centos.org/centos/8/BaseOS/aarch64/os/'] and got repomd 00:54:19,651 DEBUG anaconda:dnf: repo: downloading from remote: koji-override-1 00:54:19,652 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/repomd.xml 00:54:19,657 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/f7b87e380eb56e3cc969de91c6ba6ecd81b13e5816fdcb39bc6e55e659adff77-primary.xml.gz 00:54:19,657 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/a138f8a422ceb8beccc25559c5827fdaf9012bbe703b023bba03d0c3ea1645bc-filelists.xml.gz 00:54:19,658 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/796548d400db5a3b22104cb8c8982e06c952cdfbfbaebb7b6f3f5cdf68143c4d-comps-AppStream.aarch64.xml 00:54:19,676 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/repodata/10592d52ea7062b096f6867d0b57ae7966fd713ce552d099189bf51b1ff660fc-modules.yaml.xz 00:54:19,814 INFO anaconda:packaging: enabled repo: 'koji-override-1' - ['http://qa.centos.org/centos/8/AppStream/aarch64/os/'] and got repomd 00:54:19,854 DEBUG anaconda:dnf: repo: using cache for: AppStream 00:54:19,855 INFO anaconda:packaging: enabled repo: 'AppStream' - ['http://qa.centos.org/centos/8/AppStream/aarch64/os'] and got repomd 00:54:19,856 DEBUG anaconda:anaconda: payload.manager: Updating payload thread state: DOWNLOADING_GROUP_METADATA 00:54:19,858 DEBUG anaconda:dnf: repo: using cache for: anaconda 00:54:19,859 DEBUG anaconda:packaging: repo anaconda: _sync_metadata success from ['http://qa.centos.org/centos/8/BaseOS/aarch64/os/'] 00:54:19,860 DEBUG anaconda:dnf: repo: using cache for: koji-override-0 00:54:19,861 DEBU Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11860/12000 G anaconda:packaging: repo koji-override-0: _sync_metadata success from ['http://qa.centos.org/centos/8/BaseOS/aarch64/os/'] 00:54:19,862 DEBUG anaconda:dnf: repo: using cache for: koji-override-1 00:54:19,863 DEBUG anaconda:packaging: repo koji-override-1: _sync_metadata success from ['http://qa.centos.org/centos/8/AppStream/aarch64/os/'] 00:54:19,863 DEBUG anaconda:dnf: repo: using cache for: AppStream 00:54:19,864 DEBUG anaconda:packaging: repo AppStream: _sync_metadata success from ['http://qa.centos.org/centos/8/AppStream/aarch64/os'] 00:54:19,868 DEBUG anaconda:dnf: repo: using cache for: anaconda 00:54:21,291 INFO systemd:NetworkManager-dispatcher.service: Succeeded. 00:54:23,485 DEBUG anaconda:dnf: anaconda: using metadata from Wed 08 Sep 2021 04:17:26 PM UTC. 00:54:23,486 DEBUG anaconda:dnf: repo: using cache for: koji-override-0 00:54:24,104 DEBUG NetworkManager: [1631667264.1048] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 16.086 seconds 00:54:27,089 DEBUG anaconda:dnf: koji-override-0: using metadata from Wed 08 Sep 2021 04:17:26 PM UTC. 00:54:27,090 DEBUG anaconda:dnf: repo: using cache for: koji-override-1 00:54:33,168 DEBUG anaconda:dnf: koji-override-1: using metadata from Wed 08 Sep 2021 04:17:41 PM UTC. 00:54:33,169 DEBUG anaconda:dnf: repo: using cache for: AppStream 00:54:39,190 DEBUG anaconda:dnf: AppStream: using metadata from Wed 08 Sep 2021 04:17:41 PM UTC. 00:54:39,193 INFO anaconda:dnf: Last metadata expiration check: 0:00:05 ago on Wed 15 Sep 2021 12:54:19 AM UTC. 00:54:39,201 DEBUG anaconda:dnf: User-Agent: constructed: 'libdnf (CentOS Linux 8; generic; Linux.aarch64)' 00:54:39,666 INFO systemd:systemd-localed.service: Succeeded. 00:54:40,193 DEBUG NetworkManager: [1631667280.1934] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 33.701 seconds 00:54:41,226 INFO systemd:systemd-hostnamed.service: Succeeded. 00:54:42,309 DEBUG NetworkManager: [1631667282.3088] device[28976bd3d15055d4] (enp1s0): timed out waiting for IPv6 router advertisement 00:54:42,309 DEBUG NetworkManager: [1631667282.3090] device[28976bd3d15055d4] (enp1s0): activation-stage: schedule activate_stage4_ip_config_timeout_6,v6 (id 220) 00:54:42,310 DEBUG NetworkManager: [1631667282.3091] device[28976bd3d15055d4] (enp1s0): activation-stage: invoke activate_stage4_ip_config_timeout_6,v6 (id 220) 00:54:45,589 INFO anaconda:packaging: Refreshing environment_addons 00:54:45,991 INFO anaconda:packaging: Failed to parse proxy for test if repo available : No host url 00:54:46,001 INFO anaconda:packaging: Failed to parse proxy for test if repo available : No host url 00:54:46,011 INFO anaconda:packaging: Failed to parse proxy for test if repo available : No host url 00:54:46,020 INFO anaconda:packaging: Failed to parse proxy for test if repo available : No host url 00:54:46,028 DEBUG anaconda:anaconda: payload.manager: Updating payload thread state: FINISHED 00:54:46,029 DEBUG anaconda:anaconda: ui.tui.spokes.software_selection: Payload restarted, set new info and clear the old one. 00:54:46,030 INFO anaconda:anaconda: threading: Thread Done: AnaPayloadThread (281472708506080) 00:54:46,030 DEBUG anaconda:anaconda: ui.tui.spokes.software_selection: Apply called old env None, new env None and addons set() 00:54:46,033 INFO anaconda:anaconda: lifecycle: Module initialized: SoftwareSpoke 00:54:46,033 INFO anaconda:anaconda: threading: Thread Done: AnaSoftwareWatcher (281472726462944) 00:54:46,045 INFO anaconda:anaconda: lifecycle: Module initialized: SourceSpoke 00:54:46,046 INFO anaconda:anaconda: lifecycle: All modules have been initialized. 00:54:46,046 INFO anaconda:anaconda: threading: Thread Done: AnaSourceWatcher (281472716960224) 00:54:46,972 DEBUG anaconda:anaconda: ui.tui.spokes.storage: Saving storage configuration... 00:54:46,974 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:starting Blivet copy 00:54:46,995 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:finished Blivet copy 00:54:46,997 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/2. 00:54:47,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-CustomPartitioningTask-1 (281472995160544) 00:54:47,029 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:checking whether disk vda has an empty extended 00:54:47,031 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:extended is None ; logicals is [] 00:54:47,032 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.automatic.noninteractive_partitioning:Looking at disk: vda 00:54:47,047 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_dependent_devices: dep: existing 10 GiB disk vda (4) with existing gpt disklabel ; hidden: False ; 00:54:47,048 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:dep is a leaf 00:54:47,048 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.automatic.noninteractive_partitioning:Removing vda. 00:54:47,049 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:removing vda 00:54:47,053 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_dependent_devices: dep: existing 10 GiB disk vda (4) with existing gpt disklabel ; hidden: False ; 00:54:47,054 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:dep is a leaf 00:54:47,054 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 99 00:54:47,061 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice._set_format: vda ; type: None ; current: disklabel ; 00:54:47,063 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [98] destroy format gpt disklabel on disk vda (id 4) 00:54:47,064 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.automatic.noninteractive_partitioning:Initializing vda. 00:54:47,065 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 101 00:54:47,070 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice._set_format: vda ; type: None ; current: None ; 00:54:47,070 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [100] destroy format None on disk vda (id 4) 00:54:47,075 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.__init__: device: /dev/vda ; 00:54:47,076 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:selecting None disklabel for vda based on size 00:54:47,081 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.fresh_parted_disk: device: /dev/vda ; label_type: gpt ; 00:54:47,082 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:selecting None disklabel for vda based on size 00:54:47,085 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:Clear pmbr_boot on parted.Disk instance -- 00:54:47,085 WARNING org.fedoraproject.Anaconda.Modules.Storage: type: gpt primaryPartitionCount: 0 00:54:47,085 WARNING org.fedoraproject.Anaconda.Modules.Storage: lastPartitionNumber: -1 maxPrimaryPartitionCount: 128 00:54:47,085 WARNING org.fedoraproject.Anaconda.Modules.Storage: partitions: [] 00:54:47,085 WARNING org.fedoraproject.Anaconda.Modules.Storage: device: 00:54:47,085 WARNING org.fedoraproject.Anaconda.Modules.Storage: PedDisk: <_ped.Disk object at 0xffff89eef408> 00:54:47,161 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('disklabel') returning DiskLabel instance with object id 102 00:54:47,167 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice._set_format: vda ; type: disklabel ; current: None ; 00:54:47,169 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [103] create format gpt disklabel on disk vda (id 4) 00:54:47,170 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Execute the bootloader with dry run True. 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:new disk list: [DiskDevice instance (0xffff895663c8) -- 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = vda status = True id = 4 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = [] 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = [] 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 10 GiB 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = non-existent gpt disklabel 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 252 minor = 0 exists = True protected = False 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 10 GiB path = /dev/vda 00:54:47,181 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = disklabel removable = False wwn = None] 00:54:47,191 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Applying bootloader location: MBR 00:54:47,197 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Applying bootloader timeout: 1 00:54:47,200 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Applying drive order: [] 00:54:47,201 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:new disk order: [] 00:54:47,204 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Use the requested boot drive. 00:54:47,205 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:47,301 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:47,305 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,308 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,310 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,314 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,316 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,319 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:47,401 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:47,405 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,408 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,409 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,412 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,414 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,416 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,426 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:47,431 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:47,432 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:resolved 'vda' to 'vda' (disk) 00:54:47,436 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:47,441 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.core.storage:vda matches ['vda'] for devicetree=existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage:existing 0 B file /tmp/curl_fetch_url1/install.img (deleted) (14) 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 0 B loop loop0 (18) 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage:existing 0 B file /LiveOS/rootfs.img (28) 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 0 B loop loop1 (32) with existing ext4 filesystem 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 3 GiB dm live-rw (51) with existing ext4 filesystem 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 3 GiB dm live-base (61) with existing ext4 filesystem 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage:existing 0 B file /overlay (deleted) (42) 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 0 B loop loop2 (46) 00:54:47,444 WARNING org.fedoraproject.Anaconda.Modules.Storage: and disks_only=True 00:54:47,447 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Using a boot drive: vda 00:54:47,451 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:47,456 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:47,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:resolved 'vda' to 'vda' (disk) 00:54:47,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.custom.custom_partitioning:Executing the custom partitioning. 00:54:47,459 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.custom.custom_partitioning:Looking for platform-specific bootloader requirements. 00:54:47,462 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.custom.custom_partitioning:Applying requirements: 00:54:47,462 WARNING org.fedoraproject.Anaconda.Modules.Storage:PartSpec instance (0xffff89ef6080) -- 00:54:47,462 WARNING org.fedoraproject.Anaconda.Modules.Storage: mountpoint = /boot/efi lv = False thin = False btrfs = False 00:54:47,462 WARNING org.fedoraproject.Anaconda.Modules.Storage: weight = 0 fstype = efi encrypted = False 00:54:47,462 WARNING org.fedoraproject.Anaconda.Modules.Storage: size = 200 MiB max_size = 600 MiB grow = True 00:54:47,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:stage1 device cannot be of type disk 00:54:47,473 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:47,473 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efi') returning EFIFS instance with object id 104 00:54:47,474 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 106 00:54:47,482 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: req0 ; kids: 0 ; 00:54:47,488 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_format: req0 ; type: efi ; current: None ; 00:54:47,496 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.remove_child: name: vda ; child: req0 ; kids: 1 ; 00:54:47,497 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added partition req0 (id 105) to device tree 00:54:47,500 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [108] create device partition req0 (id 105) 00:54:47,500 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 110 00:54:47,507 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_format: req0 ; type: efi ; current: efi ; 00:54:47,508 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [109] create format efi filesystem mounted at /boot/efi on partition req0 (id 105) 00:54:47,513 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS.supported: supported: True ; 00:54:47,513 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('xfs') returning XFS instance with object id 111 00:54:47,517 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:47,522 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:47,522 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:resolved 'vda' to 'vda' (disk) 00:54:47,523 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 113 00:54:47,531 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: req1 ; kids: 0 ; 00:54:47,536 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_format: req1 ; type: xfs ; current: None ; 00:54:47,544 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.remove_child: name: vda ; child: req1 ; kids: 1 ; 00:54:47,545 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:added partition req1 (id 112) to device tree 00:54:47,546 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [115] create device partition req1 (id 112) 00:54:47,546 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 117 00:54:47,553 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_format: req1 ; type: xfs ; current: xfs ; 00:54:47,554 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:registered action: [116] create format xfs filesystem mounted at / on partition req1 (id 112) 00:54:47,561 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: False ; status: True ; controllable: True ; 00:54:47,564 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:removing all non-preexisting partitions ['req0(id 105)', 'req1(id 112)'] from disk(s) ['vda'] 00:54:47,566 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:allocate_partitions: disks=['vda'] ; partitions=['req0(id 105)', 'req1(id 112)'] 00:54:47,567 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:removing all non-preexisting partitions ['req0(id 105)', 'req1(id 112)'] from disk(s) ['vda'] 00:54:47,568 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:allocating partition: req0 ; id: 105 ; disks: ['vda'] ; 00:54:47,568 WARNING org.fedoraproject.Anaconda.Modules.Storage:boot: True ; primary: False ; size: 200 MiB ; grow: True ; max_size: 600 MiB ; start: None ; end: None 00:54:47,570 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:checking freespace on vda 00:54:47,572 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_best_free_space_region: disk=/dev/vda part_type=0 req_size=200 MiB boot=True best=None grow=True start=None 00:54:47,573 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:checking 34-20971486 (10 GiB) 00:54:47,574 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:current free range is 34-20971486 (10 GiB) 00:54:47,575 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:evaluating growth potential for new layout 00:54:47,575 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:calculating growth for disk /dev/vda 00:54:47,578 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:using alignment: parted.Alignment instance -- 00:54:47,578 WARNING org.fedoraproject.Anaconda.Modules.Storage: offset: 0 grainSize: 2048 00:54:47,578 WARNING org.fedoraproject.Anaconda.Modules.Storage: PedAlignment: <_ped.Alignment object at 0xffff89ef3518> 00:54:47,579 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adjusted start sector from 34 to 2048 00:54:47,586 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: req0 ; 00:54:47,588 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device req0 new parted_partition parted.Partition instance -- 00:54:47,588 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,588 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:47,588 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,588 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89550518> 00:54:47,593 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: vda1 ; old: None ; new: vda ; 00:54:47,599 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: vda1 ; kids: 0 ; 00:54:47,602 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding request 105 to chunk 20967424 (2048-20969471) on /dev/vda 00:54:47,604 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:Chunk.grow_requests: 20967424 (2048-20969471) on /dev/vda start = 2048 end = 20969471 00:54:47,604 WARNING org.fedoraproject.Anaconda.Modules.Storage:sector_size = 512 B 00:54:47,605 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:req: PartitionRequest instance -- 00:54:47,605 WARNING org.fedoraproject.Anaconda.Modules.Storage:id = 105 name = vda1 growable = True 00:54:47,605 WARNING org.fedoraproject.Anaconda.Modules.Storage:base = 409600 growth = 0 max_grow = 819200 00:54:47,605 WARNING org.fedoraproject.Anaconda.Modules.Storage:done = False 00:54:47,606 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:1 requests and 20557824 (9.8 GiB) left in chunk 00:54:47,606 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding 20557824 (9.8 GiB) to 105 (vda1) 00:54:47,607 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:taking back 19738624 (9.41 GiB) from 105 (vda1) 00:54:47,608 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new grow amount for request 105 (vda1) is 819200 units, or 400 MiB 00:54:47,609 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:request 105 (vda1) growth: 819200 (400 MiB) size: 600 MiB 00:54:47,609 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:disk /dev/vda growth: 819200 (400 MiB) 00:54:47,614 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:47,614 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition None 00:54:47,619 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: req0 ; old: vda ; new: None ; 00:54:47,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.remove_child: name: vda ; child: req0 ; kids: 1 ; 00:54:47,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:total growth: 819200 sectors 00:54:47,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updating use_disk to vda, type: 0 00:54:47,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new free: 34-20971486 / 10 GiB 00:54:47,627 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new free allows for 819200 sectors of growth 00:54:47,627 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:found free space for bootable request 00:54:47,629 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:using alignment: parted.Alignment instance -- 00:54:47,629 WARNING org.fedoraproject.Anaconda.Modules.Storage: offset: 0 grainSize: 2048 00:54:47,629 WARNING org.fedoraproject.Anaconda.Modules.Storage: PedAlignment: <_ped.Alignment object at 0xffff89ef3518> 00:54:47,630 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adjusted start sector from 34 to 2048 00:54:47,632 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:created partition vda1 of 200 MiB and added it to /dev/vda 00:54:47,636 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: req0 ; 00:54:47,637 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device req0 new parted_partition parted.Partition instance -- 00:54:47,637 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,637 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:47,637 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,637 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff8959af68> 00:54:47,642 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: vda1 ; old: None ; new: vda ; 00:54:47,648 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: vda1 ; kids: 0 ; 00:54:47,653 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:47,654 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition parted.Partition instance -- 00:54:47,654 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,654 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:47,654 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,654 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff8959afc0> 00:54:47,656 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:allocating partition: req1 ; id: 112 ; disks: ['vda'] ; 00:54:47,656 WARNING org.fedoraproject.Anaconda.Modules.Storage:boot: False ; primary: False ; size: 7.76 GiB ; grow: False ; max_size: 0 B ; start: None ; end: None 00:54:47,657 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:checking freespace on vda 00:54:47,659 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_best_free_space_region: disk=/dev/vda part_type=0 req_size=7.76 GiB boot=False best=None grow=False start=None 00:54:47,660 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:checking 34-2047 (1007 KiB) 00:54:47,661 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:current free range is 34-2047 (1007 KiB) 00:54:47,662 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:checking 411648-20971486 (9.8 GiB) 00:54:47,662 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:current free range is 411648-20971486 (9.8 GiB) 00:54:47,663 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:evaluating growth potential for new layout 00:54:47,663 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:calculating growth for disk /dev/vda 00:54:47,665 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:using alignment: parted.Alignment instance -- 00:54:47,665 WARNING org.fedoraproject.Anaconda.Modules.Storage: offset: 0 grainSize: 2048 00:54:47,665 WARNING org.fedoraproject.Anaconda.Modules.Storage: PedAlignment: <_ped.Alignment object at 0xffff89ef3518> 00:54:47,671 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: req1 ; 00:54:47,672 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device req1 new parted_partition parted.Partition instance -- 00:54:47,672 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,672 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:47,672 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,672 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89550518> 00:54:47,677 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: vda2 ; old: None ; new: vda ; 00:54:47,682 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: vda2 ; kids: 1 ; 00:54:47,685 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding request 105 to chunk 20967424 (2048-20969471) on /dev/vda 00:54:47,686 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding request 112 to chunk 20967424 (2048-20969471) on /dev/vda 00:54:47,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:Chunk.grow_requests: 20967424 (2048-20969471) on /dev/vda start = 2048 end = 20969471 00:54:47,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:sector_size = 512 B 00:54:47,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:req: PartitionRequest instance -- 00:54:47,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:id = 105 name = vda1 growable = True 00:54:47,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:base = 409600 growth = 0 max_grow = 819200 00:54:47,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:done = False 00:54:47,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:req: PartitionRequest instance -- 00:54:47,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:id = 112 name = vda2 growable = False 00:54:47,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:base = 16281600 growth = 0 max_grow = 0 00:54:47,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:done = True 00:54:47,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:1 requests and 4276224 (2.04 GiB) left in chunk 00:54:47,689 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding 4276224 (2.04 GiB) to 105 (vda1) 00:54:47,689 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:taking back 3457024 (1.65 GiB) from 105 (vda1) 00:54:47,690 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new grow amount for request 105 (vda1) is 819200 units, or 400 MiB 00:54:47,691 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:request 105 (vda1) growth: 819200 (400 MiB) size: 600 MiB 00:54:47,691 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:request 112 (vda2) growth: 0 (0 B) size: 7.76 GiB 00:54:47,692 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:disk /dev/vda growth: 819200 (400 MiB) 00:54:47,697 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:47,697 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition None 00:54:47,702 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: req1 ; old: vda ; new: None ; 00:54:47,709 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.remove_child: name: vda ; child: req1 ; kids: 2 ; 00:54:47,709 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:total growth: 819200 sectors 00:54:47,709 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updating use_disk to vda, type: 0 00:54:47,710 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new free: 411648-20971486 / 9.8 GiB 00:54:47,710 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new free allows for 819200 sectors of growth 00:54:47,712 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:using alignment: parted.Alignment instance -- 00:54:47,712 WARNING org.fedoraproject.Anaconda.Modules.Storage: offset: 0 grainSize: 2048 00:54:47,712 WARNING org.fedoraproject.Anaconda.Modules.Storage: PedAlignment: <_ped.Alignment object at 0xffff89ef3518> 00:54:47,715 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:created partition vda2 of 7.76 GiB and added it to /dev/vda 00:54:47,719 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: req1 ; 00:54:47,720 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device req1 new parted_partition parted.Partition instance -- 00:54:47,720 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,720 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:47,720 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,720 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89efc048> 00:54:47,725 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: vda2 ; old: None ; new: vda ; 00:54:47,731 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: vda2 ; kids: 1 ; 00:54:47,737 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:47,737 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition parted.Partition instance -- 00:54:47,737 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,737 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:47,737 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,737 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89550678> 00:54:47,739 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:grow_partitions: disks=['vda'], partitions=['vda1(id 105)', 'vda2(id 112)'] 00:54:47,739 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:growable partitions are ['vda1'] 00:54:47,742 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding request 105 to chunk 20967424 (2048-20969471) on /dev/vda 00:54:47,742 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding request 112 to chunk 20967424 (2048-20969471) on /dev/vda 00:54:47,743 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:disk vda has 1 chunks 00:54:47,743 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:Chunk.grow_requests: 20967424 (2048-20969471) on /dev/vda start = 2048 end = 20969471 00:54:47,743 WARNING org.fedoraproject.Anaconda.Modules.Storage:sector_size = 512 B 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:req: PartitionRequest instance -- 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:id = 105 name = vda1 growable = True 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:base = 409600 growth = 0 max_grow = 819200 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:done = False 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:req: PartitionRequest instance -- 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:id = 112 name = vda2 growable = False 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:base = 16281600 growth = 0 max_grow = 0 00:54:47,744 WARNING org.fedoraproject.Anaconda.Modules.Storage:done = True 00:54:47,745 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:1 requests and 4276224 (2.04 GiB) left in chunk 00:54:47,745 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:adding 4276224 (2.04 GiB) to 105 (vda1) 00:54:47,746 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:taking back 3457024 (1.65 GiB) from 105 (vda1) 00:54:47,746 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new grow amount for request 105 (vda1) is 819200 units, or 400 MiB 00:54:47,747 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:growing partitions on vda 00:54:47,748 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:partition vda1 (105): 0 00:54:47,749 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new geometry for vda1: parted.Geometry instance -- 00:54:47,749 WARNING org.fedoraproject.Anaconda.Modules.Storage: start: 2048 end: 1230847 length: 1228800 00:54:47,749 WARNING org.fedoraproject.Anaconda.Modules.Storage: device: PedGeometry: <_ped.Geometry object at 0xffff8a033470> 00:54:47,750 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:partition vda2 (112): 0 00:54:47,751 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:new geometry for vda2: parted.Geometry instance -- 00:54:47,751 WARNING org.fedoraproject.Anaconda.Modules.Storage: start: 1230848 end: 17512447 length: 16281600 00:54:47,751 WARNING org.fedoraproject.Anaconda.Modules.Storage: device: PedGeometry: <_ped.Geometry object at 0xffff8a033668> 00:54:47,752 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:removing all non-preexisting partitions ['vda1(id 105)', 'vda2(id 112)'] from disk(s) ['vda'] 00:54:47,757 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:47,757 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition None 00:54:47,762 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: req0 ; old: vda ; new: None ; 00:54:47,768 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.remove_child: name: vda ; child: req0 ; kids: 2 ; 00:54:47,773 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:47,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition None 00:54:47,778 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: req1 ; old: vda ; new: None ; 00:54:47,785 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.remove_child: name: vda ; child: req1 ; kids: 1 ; 00:54:47,786 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:back from remove_new_partitions 00:54:47,787 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:extended: None 00:54:47,788 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:setting req0 new geometry: parted.Geometry instance -- 00:54:47,788 WARNING org.fedoraproject.Anaconda.Modules.Storage: start: 2048 end: 1230847 length: 1228800 00:54:47,788 WARNING org.fedoraproject.Anaconda.Modules.Storage: device: PedGeometry: <_ped.Geometry object at 0xffff8a033470> 00:54:47,793 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: req0 ; 00:54:47,793 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device req0 new parted_partition parted.Partition instance -- 00:54:47,793 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,793 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:47,793 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,793 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff895505c8> 00:54:47,799 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: vda1 ; old: None ; new: vda ; 00:54:47,804 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: vda1 ; kids: 0 ; 00:54:47,810 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:47,810 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition parted.Partition instance -- 00:54:47,810 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,810 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:47,810 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,810 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89550780> 00:54:47,812 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:setting req1 new geometry: parted.Geometry instance -- 00:54:47,812 WARNING org.fedoraproject.Anaconda.Modules.Storage: start: 1230848 end: 17512447 length: 16281600 00:54:47,812 WARNING org.fedoraproject.Anaconda.Modules.Storage: device: PedGeometry: <_ped.Geometry object at 0xffff8a033668> 00:54:47,818 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: req1 ; 00:54:47,818 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device req1 new parted_partition parted.Partition instance -- 00:54:47,818 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,818 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:47,818 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,818 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89550570> 00:54:47,824 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_disk: vda2 ; old: None ; new: vda ; 00:54:47,829 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.add_child: name: vda ; child: vda2 ; kids: 1 ; 00:54:47,835 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:47,836 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition parted.Partition instance -- 00:54:47,836 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:47,836 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:47,836 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:47,836 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff895506d0> 00:54:47,839 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:fixing size of non-existent 600 MiB partition vda1 (105) with non-existent efi filesystem mounted at /boot/efi 00:54:47,841 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:fixing size of non-existent 7.76 GiB partition vda2 (112) with non-existent xfs filesystem mounted at / 00:54:47,847 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.custom.custom_partitioning:Skipping the deprecated command 'btrfs'. 00:54:47,847 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Execute the bootloader with dry run False. 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:new disk list: [DiskDevice instance (0xffff895663c8) -- 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: name = vda status = True id = 4 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: children = ['non-existent 600 MiB partition vda1 (105) with non-existent efi filesystem ' 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'mounted at /boot/efi', 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'non-existent 7.76 GiB partition vda2 (112) with non-existent xfs filesystem ' 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: 'mounted at /'] 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: parents = [] 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: uuid = None size = 10 GiB 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: format = non-existent gpt disklabel 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: major = 252 minor = 0 exists = True protected = False 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: sysfs path = /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: target size = 10 GiB path = /dev/vda 00:54:47,858 WARNING org.fedoraproject.Anaconda.Modules.Storage: format args = [] original_format = disklabel removable = False wwn = None] 00:54:47,870 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Applying bootloader location: MBR 00:54:47,876 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Applying bootloader timeout: 1 00:54:47,879 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Applying drive order: [] 00:54:47,880 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:new disk order: [] 00:54:47,886 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Use the requested boot drive. 00:54:47,886 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:47,990 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:47,995 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,997 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:47,999 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:48,001 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:48,003 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:48,006 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:48,013 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:48,021 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:48,022 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:resolved 'vda' to 'vda' (disk) 00:54:48,027 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:48,032 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.core.storage:vda matches ['vda'] for devicetree=existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: non-existent 600 MiB partition vda1 (105) with non-existent efi filesystem mounted at /boot/efi 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: non-existent 7.76 GiB partition vda2 (112) with non-existent xfs filesystem mounted at / 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage:existing 0 B file /tmp/curl_fetch_url1/install.img (deleted) (14) 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 0 B loop loop0 (18) 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage:existing 0 B file /LiveOS/rootfs.img (28) 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 0 B loop loop1 (32) with existing ext4 filesystem 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 3 GiB dm live-rw (51) with existing ext4 filesystem 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 3 GiB dm live-base (61) with existing ext4 filesystem 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage:existing 0 B file /overlay (deleted) (42) 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: existing 0 B loop loop2 (46) 00:54:48,036 WARNING org.fedoraproject.Anaconda.Modules.Storage: and disks_only=True 00:54:48,040 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.execution:Using a boot drive: vda 00:54:48,044 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name: name: vda ; incomplete: False ; hidden: False ; 00:54:48,049 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_name returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:48,050 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:resolved 'vda' to 'vda' (disk) 00:54:48,056 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:stage1 device cannot be of type disk 00:54:48,060 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_disklabel(vda1) returning True 00:54:48,063 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_size(vda1) returning True 00:54:48,064 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_location(vda1) returning True 00:54:48,064 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:anaconda.modules.storage.bootloader.base:vda1 not bootable 00:54:48,065 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_format(vda1) returning True 00:54:48,065 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:is_valid_stage1_device(vda1) returning True 00:54:48,066 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-CustomPartitioningTask-1 (281472995160544) 00:54:49,026 DEBUG anaconda:anaconda: ui.tui.spokes.storage: Checking storage configuration... 00:54:49,029 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/3. 00:54:49,037 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-StorageValidateTask-1 (281472995160544) 00:54:49,052 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_disklabel(vda1) returning True 00:54:49,054 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_size(vda1) returning True 00:54:49,054 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_location(vda1) returning True 00:54:49,055 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:anaconda.modules.storage.bootloader.base:vda1 not bootable 00:54:49,055 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_format(vda1) returning True 00:54:49,055 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:is_valid_stage1_device(vda1) returning True 00:54:49,056 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_disklabel(vda2) returning True 00:54:49,059 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_size(vda2) returning True 00:54:49,059 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_partition(vda2) returning True 00:54:49,060 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_format(vda2) returning True 00:54:49,061 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:is_valid_stage2_device(vda2) returning True 00:54:49,068 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.checker.utils:Available memory: 1.78 GiB 00:54:49,073 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path: path: /dev/vda1 ; incomplete: False ; hidden: False ; 00:54:49,078 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path returned non-existent 600 MiB partition vda1 (105) with non-existent efi filesystem mounted at /boot/efi 00:54:49,082 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path: path: /dev/vda2 ; incomplete: False ; hidden: False ; 00:54:49,086 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path returned non-existent 7.76 GiB partition vda2 (112) with non-existent xfs filesystem mounted at / 00:54:49,087 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Storage check started with constraints {'min_ram': Size (320 MiB), 'root_device_types': set(), 'min_partition_sizes': {'/': Size (250 MiB), '/usr': Size (250 MiB), '/tmp': Size (50 MiB), '/var': Size (384 MiB), '/home': Size (100 MiB), '/boot': Size (200 MiB)}, 'req_partition_sizes': {}, 'must_be_on_linuxfs': {'/usr/share', '/', '/tmp', '/usr', '/var', '/usr/lib', '/home'}, 'must_be_on_root': {'/etc', '/root', '/proc', '/lib', '/dev', '/bin', '/sbin', 'lost+found', '/mnt'}, 'must_not_be_on_root': set(), 'reformat_whitelist': {'/usr', '/var', '/tmp', '/boot'}, 'reformat_blacklist': {'/usr/local', '/var/www', '/opt', '/home'}, 'swap_is_recommended': True, 'luks2_min_ram': Size (128 MiB)}. 00:54:49,088 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_root. 00:54:49,088 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_s390_constraints. 00:54:49,088 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_partition_formatting. 00:54:49,089 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_partition_sizes. 00:54:49,089 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_partition_format_sizes. 00:54:49,089 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_bootloader. 00:54:49,089 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_gpt_biosboot. 00:54:49,090 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_swap. 00:54:49,090 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Found sanity warning: You have not specified a swap partition. Although not strictly required in all cases, it will significantly improve performance for most installations. 00:54:49,090 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_swap_uuid. 00:54:49,090 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mountpoints_on_linuxfs. 00:54:49,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mountpoints_on_root. 00:54:49,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mountpoints_not_on_root. 00:54:49,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_unlocked_devices_have_key. 00:54:49,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_luks_devices_have_key. 00:54:49,092 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_luks2_memory_requirements. 00:54:49,092 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mounted_partitions. 00:54:49,092 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_lvm_destruction. 00:54:49,092 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_requests. 00:54:49,093 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Storage check finished with failure(s). 00:54:49,093 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-StorageValidateTask-1 (281472995160544) 00:54:50,064 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:starting Blivet copy 00:54:50,099 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_id: id_num: 4 ; incomplete: False ; hidden: False ; 00:54:50,105 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_id returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:50,112 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:50,112 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition parted.Partition instance -- 00:54:50,112 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:50,112 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:50,112 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:50,112 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff894b1d00> 00:54:50,118 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_id: id_num: 4 ; incomplete: False ; hidden: False ; 00:54:50,124 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_id returned existing 10 GiB disk vda (4) with non-existent gpt disklabel 00:54:50,129 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:50,130 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition parted.Partition instance -- 00:54:50,130 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:50,130 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:50,130 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:50,130 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff894b1d58> 00:54:50,131 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:finished Blivet copy 00:54:50,141 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_disklabel(vda1) returning True 00:54:50,143 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_size(vda1) returning True 00:54:50,144 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_location(vda1) returning True 00:54:50,144 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:anaconda.modules.storage.bootloader.base:vda1 not bootable 00:54:50,145 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_format(vda1) returning True 00:54:50,145 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:is_valid_stage1_device(vda1) returning True 00:54:50,146 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_disklabel(vda2) returning True 00:54:50,148 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_size(vda2) returning True 00:54:50,149 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_partition(vda2) returning True 00:54:50,150 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:_is_valid_format(vda2) returning True 00:54:50,150 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:is_valid_stage2_device(vda2) returning True 00:54:50,158 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.checker.utils:Available memory: 1.78 GiB 00:54:50,164 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11850/12000 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path: path: /dev/vda1 ; incomplete: False ; hidden: False ; 00:54:50,170 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path returned non-existent 600 MiB partition vda1 (105) with non-existent efi filesystem mounted at /boot/efi 00:54:50,176 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path: path: /dev/vda2 ; incomplete: False ; hidden: False ; 00:54:50,181 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceTree.get_device_by_path returned non-existent 7.76 GiB partition vda2 (112) with non-existent xfs filesystem mounted at / 00:54:50,183 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Storage check started with constraints {'min_ram': Size (320 MiB), 'root_device_types': set(), 'min_partition_sizes': {'/': Size (250 MiB), '/usr': Size (250 MiB), '/tmp': Size (50 MiB), '/var': Size (384 MiB), '/home': Size (100 MiB), '/boot': Size (200 MiB)}, 'req_partition_sizes': {}, 'must_be_on_linuxfs': {'/usr/share', '/', '/tmp', '/usr', '/var', '/usr/lib', '/home'}, 'must_be_on_root': {'/etc', '/root', '/proc', '/lib', '/dev', '/bin', '/sbin', 'lost+found', '/mnt'}, 'must_not_be_on_root': set(), 'reformat_whitelist': {'/usr', '/var', '/tmp', '/boot'}, 'reformat_blacklist': {'/usr/local', '/var/www', '/opt', '/home'}, 'swap_is_recommended': True, 'luks2_min_ram': Size (128 MiB)}. 00:54:50,183 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_root. 00:54:50,183 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_s390_constraints. 00:54:50,183 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_partition_formatting. 00:54:50,184 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_partition_sizes. 00:54:50,184 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_partition_format_sizes. 00:54:50,184 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_bootloader. 00:54:50,185 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_gpt_biosboot. 00:54:50,185 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_swap. 00:54:50,185 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Found sanity warning: You have not specified a swap partition. Although not strictly required in all cases, it will significantly improve performance for most installations. 00:54:50,185 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_swap_uuid. 00:54:50,186 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mountpoints_on_linuxfs. 00:54:50,186 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mountpoints_on_root. 00:54:50,186 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mountpoints_not_on_root. 00:54:50,186 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_unlocked_devices_have_key. 00:54:50,187 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_luks_devices_have_key. 00:54:50,187 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_luks2_memory_requirements. 00:54:50,187 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_mounted_partitions. 00:54:50,187 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_lvm_destruction. 00:54:50,188 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Run sanity check verify_requests. 00:54:50,188 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.partitioning.validate:Storage check finished with failure(s). 00:54:50,188 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:The storage model has changed. 00:54:50,189 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.storage:The partitioning CUSTOM is applied. 00:54:50,194 DEBUG anaconda:anaconda: ui.tui.spokes.storage: Partitioning has been applied: ValidationReport(error_messages=[], warning_messages=['You have not specified a swap partition. Although not strictly required in all cases, it will significantly improve performance for most installations.']) 00:54:50,196 DEBUG anaconda:simpleline: Scheduling screen SummaryHub 00:54:50,196 DEBUG anaconda:simpleline: New signal RenderScreenSignal enqueued with source ScreenScheduler 00:54:50,199 DEBUG anaconda:simpleline: Scheduling screen ProgressSpoke 00:54:50,200 DEBUG anaconda:simpleline: Starting main loop 00:54:50,202 DEBUG anaconda:simpleline: Processing screen ScreenData(SummaryHub,None,False) 00:54:50,368 DEBUG anaconda:simpleline: Input is required by ScreenData(SummaryHub,None,False) screen 00:54:50,421 INFO anaconda:program: Running... df --output=target,avail 00:54:50,449 INFO anaconda:program: Mounted on Avail 00:54:50,450 INFO anaconda:program: /dev 2000448 00:54:50,450 INFO anaconda:program: /dev/shm 2036800 00:54:50,451 INFO anaconda:program: /run 1962944 00:54:50,451 INFO anaconda:program: /sys/fs/cgroup 2036800 00:54:50,452 INFO anaconda:program: / 814116 00:54:50,452 INFO anaconda:program: /tmp 1976640 00:54:50,453 DEBUG anaconda:program: Return code: 0 00:54:50,479 DEBUG anaconda:packaging: Input mount points: {'/dev': Size (1.90777587890625 GiB), '/dev/shm': Size (1.94244384765625 GiB), '/run': Size (1.87200927734375 GiB), '/sys/fs/cgroup': Size (1.94244384765625 GiB), '/': Size (795.03515625 MiB), '/tmp': Size (1.88507080078125 GiB), '/mnt/sysroot/boot/efi': 622854143, '/mnt/sysroot': 8086093823} 00:54:50,480 INFO anaconda:packaging: Estimated size: download 0 B & install 2.79 GiB 00:54:50,481 INFO anaconda:packaging: Sufficient mountpoints found: {'/mnt/sysroot': 8086093823} 00:54:50,483 DEBUG anaconda:packaging: Install + download space required 2.79 GiB 00:54:50,484 INFO anaconda:anaconda: ui.lib.space: fs space: 7.53 GiB needed: 2.79 GiB 00:54:50,485 DEBUG anaconda:simpleline: New signal CloseScreenSignal enqueued with source SummaryHub 00:54:50,486 DEBUG anaconda:simpleline: Closing screen ScreenData(SummaryHub,None,False) from SummaryHub 00:54:50,487 DEBUG anaconda:simpleline: New signal RenderScreenSignal enqueued with source ScreenScheduler 00:54:50,488 DEBUG anaconda:simpleline: Processing screen ScreenData(ProgressSpoke,None,False) 00:54:50,510 INFO anaconda:anaconda: threading: Running Thread: AnaInstallThread (281472716960224) 00:54:50,517 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Boss/Task/2. 00:54:50,533 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/4. 00:54:50,537 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/5. 00:54:50,554 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/6. 00:54:50,576 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security/Task/1. 00:54:50,592 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/7. 00:54:50,627 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security/Task/2. 00:54:50,630 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security/Task/3. 00:54:50,632 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security/Task/4. 00:54:50,635 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security/Task/5. 00:54:50,677 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Timezone/Task/1. 00:54:50,680 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Timezone/Task/2. 00:54:50,709 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Services/Task/1. 00:54:50,711 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Services/Task/2. 00:54:50,714 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Services/Task/3. 00:54:50,716 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Services/Task/4. 00:54:50,719 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Services/Task/5. 00:54:50,766 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Localization/Task/2. 00:54:50,768 WARNING org.fedoraproject.Anaconda.Modules.Localization:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Localization/Task/3. 00:54:50,789 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/5. 00:54:50,813 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Users/Task/1. 00:54:50,816 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Users/Task/2. 00:54:50,818 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Users/Task/3. 00:54:50,821 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Users/Task/4. 00:54:50,823 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Users/Task/5. 00:54:50,862 WARNING org.fedoraproject.Anaconda.Boss:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Boss/Task/3. 00:54:50,879 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/8. 00:54:50,902 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Security/Task/6. 00:54:50,915 INFO anaconda:anaconda: installation: Top-level task queue: Complete installation queue#012Number of task queues: 16#012Number of tasks: 41#012Task & task group listing:#012 Task queue: Installation queue#012 Task: Save system time to HW clock#012 Task queue: Installation environment setup#012 Task: Setup addons#012 Task: Configure the runtime system#012 Task queue: Early storage configuration#012 Task: Activate filesystems#012 Task: Mount filesystems#012 Task: Write the storage configuration#012 Task queue: Pre-install scripts#012 Task: Run %pre-install scripts#012 Task queue: Pre install tasks#012 Task: Copy resolv.conf to sysroot#012 Task: Discover information about a realm#012 Task: Find additional packages & run pre_install()#012 Task queue: Payload installation#012 Task: Install the payload#012 Task queue: Bootloader installation#012 Task: Configure the bootloader#012 Task: Install the bootloader#012 Task queue: Post-installation setup tasks#012 Task: Run post-installation setup tasks#012 Task queue: Configuration queue#012 Task queue: Installed system configuration#012 Task: Configure SELinux#012 Task: Configure fingerprint authentication#012 Task: Authselect configuration#012 Task: Authconfig configuration#012 Task: Configure time zone#012 Task: Configure NTP#012 Task: Configure Initial Setup#012 Task: Configure post-installation tools#012 Task: Configure services#012 Task: Configure systemd default target#012 Task: Configure default desktop#012 Task: Configure language#012 Task: Configure keyboard#012 Task: Configure firewall#012 Task: Create groups#012 Task: Create users#012 Task: Configure root password#012 Task: Set SSH keys#012 Task: Configure optional root password SSH login#012 Task queue: Network configuration#012 Task: Network configuration#012 Task queue: User creation#012 Task queue: Anaconda addon configuration#012 Task: Configure Anaconda addons#012 Task: Install the system#012 Task queue: Initramfs generation#012 Task: Generate initramfs#012 Task: Rerun zipl#012 Task: Join a realm#012 Task queue: Post installation scripts#012 Task: Run post installation scripts#012 Task queue: Write configs and kickstarts#012 Task: Store kickstarts 00:54:50,918 INFO anaconda:anaconda: installation: Queue started: Installation queue (1/16) 00:54:50,919 INFO anaconda:anaconda: installation: Task started: Save system time to HW clock (1/41) 00:54:50,933 INFO anaconda:program: Running... hwclock --systohc --utc 00:54:51,502 DEBUG anaconda:program: Return code: 0 00:54:51,503 INFO anaconda:anaconda: progress: Save system time to HW clock 00:54:51,504 DEBUG anaconda:anaconda: installation: Task completed: Save system time to HW clock (1/41) (0.6 s) 00:54:51,506 INFO anaconda:anaconda: progress: Setting up the installation environment 00:54:51,506 INFO anaconda:anaconda: installation: Queue started: Installation environment setup (2/16) 00:54:51,507 INFO anaconda:anaconda: installation: Task started: Setup addons (2/41) 00:54:51,509 INFO anaconda:anaconda: progress: Setting up com_redhat_kdump addon 00:54:51,520 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.bootloader:Extra arguments are set to '['console=ttyS0,115200n8', 'no_timer_check', 'net.ifnames=0', 'nvme_core.io_timeout=4294967295', 'nvme_core.max_retries=10', 'crashkernel=auto']'. 00:54:51,526 INFO anaconda:anaconda: progress: Setting up org_fedora_oscap addon 00:54:51,527 INFO anaconda:anaconda: progress: Setup addons 00:54:51,527 DEBUG anaconda:anaconda: installation: Task completed: Setup addons (2/41) (0.0 s) 00:54:51,528 INFO anaconda:anaconda: installation: Task started: Configure the runtime system (3/41) 00:54:51,530 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.common.task.meta:'Configure the runtime system' has started. 00:54:51,531 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.common.task.meta:'Configure the runtime system' is complete. 00:54:51,537 INFO anaconda:anaconda: progress: Configure the runtime system 00:54:51,538 DEBUG anaconda:anaconda: installation: Task completed: Configure the runtime system (3/41) (0.0 s) 00:54:51,540 INFO anaconda:anaconda: progress: Configuring storage 00:54:51,540 INFO anaconda:anaconda: installation: Queue started: Early storage configuration (3/16) 00:54:51,541 INFO anaconda:anaconda: installation: Task started: Activate filesystems (4/41) 00:54:51,544 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-ActivateFilesystemsTask-1 (281472995160544) 00:54:51,554 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: LoopDevice.teardown: loop2 ; status: False ; controllable: False ; 00:54:51,559 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: FileDevice.teardown: /overlay (deleted) ; status: False ; controllable: False ; 00:54:51,562 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.teardown: vda1 ; status: False ; controllable: True ; 00:54:51,567 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.teardown: vda ; status: True ; controllable: True ; 00:54:51,572 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.teardown: device: /dev/vda ; type: disklabel ; status: False ; 00:54:51,573 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:51,672 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:51,676 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.teardown: vda2 ; status: False ; controllable: True ; 00:54:51,681 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.teardown: vda ; status: True ; controllable: True ; 00:54:51,686 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.teardown: device: /dev/vda ; type: disklabel ; status: False ; 00:54:51,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:51,770 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:51,771 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [98] destroy format gpt disklabel on disk vda (id 4) 00:54:51,772 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [100] destroy format None on disk vda (id 4) 00:54:51,773 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [103] create format gpt disklabel on disk vda (id 4) 00:54:51,773 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [108] create device partition vda1 (id 105) 00:54:51,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [109] create format efi filesystem mounted at /boot/efi on partition vda1 (id 105) 00:54:51,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [115] create device partition vda2 (id 112) 00:54:51,775 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [116] create format xfs filesystem mounted at / on partition vda2 (id 112) 00:54:51,775 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:pruning action queue... 00:54:51,776 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:removing obsolete action 100 (98) 00:54:51,779 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:51,860 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:51,865 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,868 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,869 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,872 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,874 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,876 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,878 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:51,960 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:51,966 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,968 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,970 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,972 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,974 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,976 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:51,979 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:resetting parted disks... 00:54:51,984 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.reset_parted_disk: device: /dev/vda ; 00:54:51,989 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.reset_parted_disk: device: /dev/vda ; 00:54:51,993 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.pre_commit_fixup: vda1 ; 00:54:51,998 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.pre_commit_fixup: vda2 ; 00:54:51,998 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:sorting actions... 00:54:52,003 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [98] destroy format gpt disklabel on disk vda (id 4) 00:54:52,004 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:lvm filter: removing vda1 from the reject list 00:54:52,004 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda1 wasn't in the reject list 00:54:52,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:lvm filter: removing vda2 from the reject list 00:54:52,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda2 wasn't in the reject list 00:54:52,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [103] create format gpt disklabel on disk vda (id 4) 00:54:52,006 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:lvm filter: removing vda1 from the reject list 00:54:52,007 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda1 wasn't in the reject list 00:54:52,007 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:lvm filter: removing vda2 from the reject list 00:54:52,007 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda2 wasn't in the reject list 00:54:52,008 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [108] create device partition vda1 (id 105) 00:54:52,009 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [115] create device partition vda2 (id 112) 00:54:52,010 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [116] create format xfs filesystem mounted at / on partition vda2 (id 112) 00:54:52,012 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:action: [109] create format efi filesystem mounted at /boot/efi on partition vda1 (id 105) 00:54:52,013 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:executing action: [98] destroy format gpt disklabel on disk vda (id 4) 00:54:52,018 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: True ; status: True ; controllable: True ; 00:54:52,022 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.destroy: device: /dev/vda ; type: disklabel ; status: False ; 00:54:52,023 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... wipefs -f -a /dev/vda 00:54:52,050 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:52,050 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:/dev/vda: 8 bytes were erased at offset 0x00000200 (gpt): 45 46 49 20 50 41 52 54 00:54:52,051 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:/dev/vda: 8 bytes were erased at offset 0x27ffffe00 (gpt): 45 46 49 20 50 41 52 54 00:54:52,051 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:/dev/vda: 2 bytes were erased at offset 0x000001fe (PMBR): 55 aa 00:54:52,051 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,052 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,140 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,141 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,230 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,231 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:executing action: [103] create format gpt disklabel on disk vda (id 4) 00:54:52,239 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: False ; status: True ; controllable: True ; 00:54:52,243 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.create: device: /dev/vda ; type: disklabel ; status: False ; 00:54:52,248 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel._create: device: /dev/vda ; type: disklabel ; status: False ; 00:54:52,255 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.commit: device: /dev/vda ; numparts: 0 ; 00:54:52,274 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,274 INFO kernel: vda: 00:54:52,361 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,361 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,440 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,445 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.update_sysfs_path: vda ; status: True ; 00:54:52,446 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda sysfs_path set to /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda 00:54:52,448 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:executing action: [108] create device partition vda1 (id 105) 00:54:52,452 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.create: vda1 ; status: False ; 00:54:52,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup_parents: name: vda1 ; orig: False ; 00:54:52,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: False ; status: True ; controllable: True ; 00:54:52,472 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.setup: device: /dev/vda ; type: disklabel ; status: False ; 00:54:52,477 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._create: vda1 ; status: False ; 00:54:52,484 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._wipe: vda1 ; status: False ; 00:54:52,485 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... dd if=/dev/zero of=/dev/vda bs=512 seek=2048 count=2048 00:54:52,526 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:52,527 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'2048+0 records in' 00:54:52,527 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'2048+0 records out' 00:54:52,528 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.0168994 s, 62.0 MB/s' 00:54:52,528 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,529 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,534 INFO kernel: vda: 00:54:52,545 INFO anaconda:anaconda: progress: Creating disklabel on /dev/vda 00:54:52,601 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,608 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.commit: device: /dev/vda ; numparts: 1 ; 00:54:52,624 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,634 INFO kernel: vda: vda1 00:54:52,702 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,703 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:post-commit partition path is /dev/vda1 00:54:52,709 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:52,711 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition parted.Partition instance -- 00:54:52,711 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:52,711 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:52,711 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:52,711 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff8959af10> 00:54:52,718 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceFormat.destroy: device: /dev/vda1 ; type: None ; status: False ; 00:54:52,718 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... wipefs -f -a /dev/vda1 00:54:52,736 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,736 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,811 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,818 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup: vda1 ; orig: False ; status: True ; controllable: True ; 00:54:52,824 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.update_sysfs_path: vda1 ; status: True ; 00:54:52,825 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda1 sysfs_path set to /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda1 00:54:52,825 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:52,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:52,939 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.read_current_size: exists: True ; path: /dev/vda1 ; sysfs_path: /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda1 ; 00:54:52,941 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda1/size: 313232383830300a 00:54:52,942 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated vda1 size to 600 MiB (600 MiB) 00:54:52,943 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:executing action: [115] create device partition vda2 (id 112) 00:54:52,948 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.create: vda2 ; status: False ; 00:54:52,953 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup_parents: name: vda2 ; orig: False ; 00:54:52,959 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: False ; status: True ; controllable: True ; 00:54:52,965 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.setup: device: /dev/vda ; type: disklabel ; status: False ; 00:54:52,969 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._create: vda2 ; status: False ; 00:54:52,976 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._wipe: vda2 ; status: False ; 00:54:52,977 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... dd if=/dev/zero of=/dev/vda bs=512 seek=1230848 count=2048 00:54:53,004 INFO kernel: vda: vda1 00:54:53,004 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stderr: 00:54:53,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'2048+0 records in' 00:54:53,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'2048+0 records out' 00:54:53,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:b'1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.0169381 s, 61.9 MB/s' 00:54:53,006 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,006 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:53,071 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,079 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.commit: device: /dev/vda ; numparts: 2 ; 00:54:53,099 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:53,191 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,192 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:post-commit partition path is /dev/vda2 00:54:53,200 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:53,202 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition parted.Partition instance -- 00:54:53,202 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: None 00:54:53,202 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:53,202 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:53,202 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff89550518> 00:54:53,214 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DeviceFormat.destroy: device: /dev/vda2 ; type: None ; status: False ; 00:54:53,214 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... wipefs -f -a /dev/vda2 00:54:53,231 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,232 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:53,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,327 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup: vda2 ; orig: False ; status: True ; controllable: True ; 00:54:53,334 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.update_sysfs_path: vda2 ; status: True ; 00:54:53,335 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda2 sysfs_path set to /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda2 00:54:53,335 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:53,430 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,439 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.read_current_size: exists: True ; path: /dev/vda2 ; sysfs_path: /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda2 ; 00:54:53,440 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:testdata:sysfs attr /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda2/size: 31363238313630300a 00:54:53,441 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated vda2 size to 7.76 GiB (7.76 GiB) 00:54:53,443 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:executing action: [116] create format xfs filesystem mounted at / on partition vda2 (id 112) 00:54:53,450 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 1 ; 00:54:53,455 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 2 ; 00:54:53,459 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 3 ; 00:54:53,464 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 4 ; 00:54:53,469 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 5 ; 00:54:53,473 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 6 ; 00:54:53,478 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 8 ; 00:54:53,483 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 9 ; 00:54:53,487 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 10 ; 00:54:53,492 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 11 ; 00:54:53,497 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 12 ; 00:54:53,502 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 13 ; 00:54:53,507 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 14 ; 00:54:53,512 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 15 ; 00:54:53,517 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 16 ; 00:54:53,521 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 17 ; 00:54:53,526 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda2 ; flag: 18 ; 00:54:53,533 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.commit_to_disk: device: /dev/vda ; numparts: 2 ; 00:54:53,554 INFO anaconda:anaconda: progress: Creating xfs on /dev/vda2 00:54:53,557 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:53,564 INFO kernel: vda: vda1 vda2 00:54:53,651 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,656 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup: vda2 ; orig: False ; status: True ; controllable: True ; 00:54:53,661 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS.create: device: /dev/vda2 ; type: xfs ; status: False ; 00:54:53,666 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS._create: type: xfs ; device: /dev/vda2 ; mountpoint: / ; 00:54:53,667 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mkfs.xfs -f /dev/vda2 00:54:53,773 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:53,773 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:meta-data=/dev/vda2 isize=512 agcount=4, agsize=508800 blks 00:54:53,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: = sectsz=512 attr=2, projid32bit=1 00:54:53,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: = crc=1 finobt=1, sparse=1, rmapbt=0 00:54:53,774 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: = reflink=1 00:54:53,775 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:data = bsize=4096 blocks=2035200, imaxpct=25 00:54:53,775 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: = sunit=0 swidth=0 blks 00:54:53,775 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:naming =version 2 bsize=4096 ascii-ci=0, ftype=1 00:54:53,776 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:log =internal log bsize=4096 blocks=2560, version=2 00:54:53,776 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program: = sectsz=512 sunit=0 blks, lazy-count=1 00:54:53,776 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:realtime =none extsz=4096 blocks=0, rtextents=0 00:54:53,777 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,777 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... xfs_admin -L -- /dev/vda2 00:54:53,861 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:53,862 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:writing all SBs 00:54:53,862 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:new label = "" 00:54:53,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:53,961 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:53,966 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.update_sysfs_path: vda2 ; status: True ; 00:54:53,967 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda2 sysfs_path set to /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda2 00:54:53,971 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:blivet:executing action: [109] create format efi filesystem mounted at /boot/efi on partition vda1 (id 105) 00:54:53,978 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 2 ; 00:54:53,982 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 3 ; 00:54:53,987 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 4 ; 00:54:53,991 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 5 ; 00:54:53,996 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 6 ; 00:54:54,001 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 8 ; 00:54:54,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 9 ; 00:54:54,010 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 10 ; 00:54:54,015 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 11 ; 00:54:54,020 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 12 ; 00:54:54,025 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 13 ; 00:54:54,030 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 14 ; 00:54:54,034 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 15 ; 00:54:54,039 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 16 ; 00:54:54,044 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 17 ; 00:54:54,049 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.unset_flag: path: /dev/vda1 ; flag: 18 ; 00:54:54,053 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.set_flag: path: /dev/vda1 ; flag: 1 ; 00:54:54,060 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.commit_to_disk: device: /dev/vda ; numparts: 2 ; 00:54:54,078 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:54,171 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:54,176 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup: vda1 ; orig: False ; status: True ; controllable: True ; 00:54:54,181 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.create: device: /dev/vda1 ; type: efi ; status: False ; 00:54:54,186 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS._create: type: vfat ; device: /dev/vda1 ; mountpoint: /boot/efi ; 00:54:54,187 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mkdosfs /dev/vda1 00:54:54,226 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:stdout: 00:54:54,226 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:mkfs.fat 4.1 (2017-01-24) 00:54:54,226 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:54,227 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:54,301 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:54,306 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.update_sysfs_path: vda1 ; status: True ; 00:54:54,307 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:vda1 sysfs_path set to /sys/devices/pci0000:00/0000:00:01.2/0000:03:00.0/virtio2/block/vda/vda1 00:54:54,319 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda1 ; 00:54:54,320 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda1 new parted_partition parted.Partition instance -- 00:54:54,320 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: 00:54:54,320 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 1 path: /dev/vda1 type: 0 00:54:54,320 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:54,320 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff894d0360> 00:54:54,327 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice._set_parted_partition: vda2 ; 00:54:54,328 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:device vda2 new parted_partition parted.Partition instance -- 00:54:54,328 WARNING org.fedoraproject.Anaconda.Modules.Storage: disk: fileSystem: 00:54:54,328 WARNING org.fedoraproject.Anaconda.Modules.Storage: number: 2 path: /dev/vda2 type: 0 00:54:54,328 WARNING org.fedoraproject.Anaconda.Modules.Storage: name: active: True busy: False 00:54:54,328 WARNING org.fedoraproject.Anaconda.Modules.Storage: geometry: PedPartition: <_ped.Partition object at 0xffff894d03b8> 00:54:54,330 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.installation:setting boot flag on vda1 00:54:54,334 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.set_flag: path: /dev/vda1 ; flag: 1 ; 00:54:54,336 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.installation:Setting label on existing 600 MiB partition vda1 (105) with existing efi filesystem mounted at /boot/efi to 'EFI System Partition' 00:54:54,340 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskDevice.setup: vda ; orig: False ; status: True ; controllable: True ; 00:54:54,343 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DiskLabel.commit_to_disk: device: /dev/vda ; numparts: 2 ; 00:54:54,377 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:54,384 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:54,391 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: Ext4FS.supported: supported: True ; 00:54:54,401 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.supported: supported: True ; 00:54:54,411 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS.supported: supported: True ; 00:54:54,417 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-ActivateFilesystemsTask-1 (281472995160544) 00:54:54,550 INFO anaconda:anaconda: progress: Creating efi on /dev/vda1 00:54:54,574 INFO anaconda:anaconda: progress: Activate filesystems 00:54:54,574 DEBUG anaconda:anaconda: installation: Task completed: Activate filesystems (4/41) (3.0 s) 00:54:54,575 INFO anaconda:anaconda: installation: Task started: Mount filesystems (5/41) 00:54:54,578 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-MountFilesystemsTask-1 (281472995160544) 00:54:54,589 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: BindFS.supported: supported: False ; 00:54:54,590 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('bind') returning BindFS instance with object id 166 00:54:54,590 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 168 00:54:54,596 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DirectoryDevice._set_format: /dev ; type: bind ; current: None ; 00:54:54,598 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated /dev size to 2.73 KiB (2.73 KiB) 00:54:54,604 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: TmpFS.supported: supported: True ; 00:54:54,610 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('tmpfs') returning TmpFS instance with object id 170 00:54:54,610 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 172 00:54:54,616 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: tmpfs ; type: tmpfs ; current: None ; 00:54:54,624 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DevPtsFS.supported: supported: False ; 00:54:54,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('devpts') returning DevPtsFS instance with object id 174 00:54:54,625 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 176 00:54:54,630 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: devpts ; type: devpts ; current: None ; 00:54:54,637 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: SysFS.supported: supported: False ; 00:54:54,637 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('sysfs') returning SysFS instance with object id 178 00:54:54,638 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 180 00:54:54,643 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: sysfs ; type: sysfs ; current: None ; 00:54:54,649 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: ProcFS.supported: supported: False ; 00:54:54,650 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('proc') returning ProcFS instance with object id 182 00:54:54,650 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 184 00:54:54,655 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: proc ; type: proc ; current: None ; 00:54:54,662 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: SELinuxFS.supported: supported: False ; 00:54:54,662 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('selinuxfs') returning SELinuxFS instance with object id 186 00:54:54,663 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 188 00:54:54,668 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: selinuxfs ; type: selinuxfs ; current: None ; 00:54:54,674 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: USBFS.supported: supported: False ; 00:54:54,675 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('usbfs') returning USBFS instance with object id 190 00:54:54,676 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 192 00:54:54,681 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: usbfs ; type: usbfs ; current: None ; 00:54:54,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: BindFS.supported: supported: False ; 00:54:54,687 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('bind') returning BindFS instance with object id 194 00:54:54,688 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 196 00:54:54,693 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DirectoryDevice._set_format: /run ; type: bind ; current: None ; 00:54:54,695 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:updated /run size to 740 B (740 B) 00:54:54,700 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIVarFS.supported: supported: False ; 00:54:54,701 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('efivarfs') returning EFIVarFS instance with object id 198 00:54:54,701 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet:get_format('None') returning DeviceFormat instance with object id 200 00:54:54,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice._set_format: efivarfs ; type: efivarfs ; current: None ; 00:54:54,712 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup: vda2 ; orig: False ; status: True ; controllable: True ; 00:54:54,713 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:54,811 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:54,817 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,820 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,823 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,826 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,828 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,830 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,832 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,834 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,839 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: XFS.setup: device: /dev/vda2 ; type: xfs ; status: False ; 00:54:54,840 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:54,921 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:54,927 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,929 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,932 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,935 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,937 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,939 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,941 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,943 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:54,945 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t xfs -o defaults /dev/vda2 /mnt/sysimage 00:54:55,174 INFO kernel:SGI XFS with ACLs, security attributes, quota, no debug enabled 00:54:55,184 NOTICE kernel:XFS (vda2): Mounting V5 Filesystem 00:54:55,190 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,194 INFO kernel:XFS (vda2): Ending clean mount 00:54:55,213 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: PartitionDevice.setup: vda1 ; orig: False ; status: True ; controllable: True ; 00:54:55,215 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:55,301 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,307 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,309 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,315 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,317 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,319 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,324 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,326 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:55,411 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,416 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,419 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,422 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,425 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,427 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,429 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,431 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,433 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,435 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:55,521 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,527 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,529 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,532 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,535 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,537 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,539 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,541 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,544 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,549 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIFS.setup: device: /dev/vda1 ; type: efi ; status: False ; 00:54:55,550 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:55,641 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,647 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,649 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,652 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,655 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,657 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,659 WARNING org.fedoraprojec Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11840/12000 t.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,661 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,664 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,668 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t vfat -o umask=0077,shortname=winnt /dev/vda1 /mnt/sysimage/boot/efi 00:54:55,720 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,725 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DirectoryDevice.setup: /dev ; orig: False ; status: True ; controllable: True ; 00:54:55,727 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:55,791 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,797 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,799 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,802 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,805 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,807 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,809 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,811 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,813 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,815 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:55,911 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:55,917 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,919 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,922 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,925 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,927 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,929 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,933 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:55,935 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,021 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,027 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,029 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,032 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,035 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,037 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,039 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,041 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,044 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,046 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,131 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,137 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,139 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,142 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,145 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,147 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,149 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,151 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,153 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,156 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,251 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,257 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,259 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,262 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,265 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,267 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,269 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,271 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,274 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,279 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: BindFS.setup: device: /dev ; type: bind ; status: False ; 00:54:56,280 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,360 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,366 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,369 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,372 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,375 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,376 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,379 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,381 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,383 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,387 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t bind -o bind,defaults /dev /mnt/sysimage/dev 00:54:56,399 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,403 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice.setup: devpts ; orig: False ; status: False ; controllable: True ; 00:54:56,406 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,501 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,507 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,509 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,512 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,515 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,517 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,519 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,521 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,523 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,526 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,621 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,626 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,629 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,632 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,635 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,637 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,639 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,641 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,643 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,645 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,730 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,736 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,739 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,742 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,745 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,747 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,749 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,751 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,753 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,755 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,841 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,847 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,850 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,854 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,855 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,857 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,860 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,862 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,864 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,869 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DevPtsFS.setup: device: devpts ; type: devpts ; status: False ; 00:54:56,870 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:56,961 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:56,967 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,969 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,972 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,975 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,977 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,979 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,982 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,986 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:56,986 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t devpts -o gid=5,mode=620 devpts /mnt/sysimage/dev/pts 00:54:56,999 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,003 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice.setup: tmpfs ; orig: False ; status: False ; controllable: True ; 00:54:57,005 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,098 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,100 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,103 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,106 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,108 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,110 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,112 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,115 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,116 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,202 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,208 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,210 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,213 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,216 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,218 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,220 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,222 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,225 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,227 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,327 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,329 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,332 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,335 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,337 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,339 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,341 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,345 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,350 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: TmpFS.setup: device: tmpfs ; type: tmpfs ; status: True ; 00:54:57,351 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t tmpfs -o defaults tmpfs /mnt/sysimage/dev/shm 00:54:57,363 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,367 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice.setup: proc ; orig: False ; status: True ; controllable: True ; 00:54:57,369 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,451 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,459 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,462 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,465 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,467 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,469 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,471 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,473 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,475 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,561 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,567 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,569 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,572 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,575 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,577 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,579 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,581 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,583 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,585 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,681 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,686 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,689 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,692 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,695 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,697 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,699 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,701 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,703 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,705 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,801 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,807 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,809 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,812 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,815 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,817 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,819 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,821 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,824 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,829 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: ProcFS.setup: device: proc ; type: proc ; status: False ; 00:54:57,830 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:57,911 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:57,917 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,919 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,922 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,925 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,927 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,929 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,934 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:57,938 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t proc -o defaults proc /mnt/sysimage/proc 00:54:57,950 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,080 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: DirectoryDevice.setup: /run ; orig: False ; status: True ; controllable: True ; 00:54:58,081 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,161 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,167 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,169 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,172 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,175 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,177 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,180 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,181 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,184 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,186 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,281 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,287 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,289 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,292 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,295 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,297 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,299 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,301 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,304 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,306 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,401 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,407 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,409 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,412 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,415 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,417 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,419 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,421 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,424 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,426 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,521 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,528 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,530 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,533 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,536 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,538 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,540 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,542 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,545 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,548 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,632 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,638 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,640 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,643 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,646 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,648 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,650 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,652 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,655 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,660 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: BindFS.setup: device: /run ; type: bind ; status: False ; 00:54:58,661 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,711 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,717 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,720 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,723 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,726 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,728 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,730 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,732 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,734 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,737 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t bind -o bind,defaults /run /mnt/sysimage/run 00:54:58,748 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,754 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice.setup: sysfs ; orig: False ; status: False ; controllable: True ; 00:54:58,755 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,851 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,857 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,859 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,865 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,867 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,869 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,871 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,874 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,876 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:58,961 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:58,967 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,969 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,972 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,975 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,977 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,979 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,981 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,984 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:58,986 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,071 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,077 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,079 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,082 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,085 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,087 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,089 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,091 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,093 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,095 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,191 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,197 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,199 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,202 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,205 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,207 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,209 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,211 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,214 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,219 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: SysFS.setup: device: sysfs ; type: sysfs ; status: False ; 00:54:59,220 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,321 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,327 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,330 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,333 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,335 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,337 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,340 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,341 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,344 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,346 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t sysfs -o defaults sysfs /mnt/sysimage/sys 00:54:59,358 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,362 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice.setup: efivarfs ; orig: False ; status: False ; controllable: True ; 00:54:59,364 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,451 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,457 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,460 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,463 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,468 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,470 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,472 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,474 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,476 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,571 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,577 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,579 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,582 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,585 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,587 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,589 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,591 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,594 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,596 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,701 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,707 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,710 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,713 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,716 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,718 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,720 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,722 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,724 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,726 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,811 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,817 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,820 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,823 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,825 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,827 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,830 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,831 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,834 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,839 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: EFIVarFS.setup: device: efivarfs ; type: efivarfs ; status: False ; 00:54:59,840 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:54:59,931 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,937 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,939 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,943 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,945 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,947 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,949 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,951 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,954 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:54:59,956 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t efivarfs -o defaults efivarfs /mnt/sysimage/sys/firmware/efi/efivars 00:54:59,969 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:54:59,973 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: NoDevice.setup: selinuxfs ; orig: False ; status: False ; controllable: True ; 00:54:59,975 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:55:00,062 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,068 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,071 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,074 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,077 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,079 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,081 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,083 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,085 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,087 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:55:00,192 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,198 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,200 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,203 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,206 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,208 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,211 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,212 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,215 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,217 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:55:00,322 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,328 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,330 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,333 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,336 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,338 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,340 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,342 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,345 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,346 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:55:00,441 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,447 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,450 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,453 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,456 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,458 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,460 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,462 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,464 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,470 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:blivet: SELinuxFS.setup: device: selinuxfs ; type: selinuxfs ; status: False ; 00:55:00,470 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... udevadm settle --timeout=300 00:55:00,561 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,567 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,569 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,572 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,575 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,577 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,579 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,581 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,584 WARNING org.fedoraproject.Anaconda.Modules.Storage:WARNING:blivet:device/model is not a valid attribute 00:55:00,586 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount -t selinuxfs -o defaults selinuxfs /mnt/sysimage/sys/fs/selinux 00:55:00,597 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,598 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... findmnt -rn /mnt/sysroot 00:55:00,614 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 1 00:55:00,615 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... mount --rbind /mnt/sysimage /mnt/sysroot 00:55:00,627 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 00:55:00,629 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-MountFilesystemsTask-1 (281472995160544) 00:55:01,623 INFO anaconda:anaconda: progress: Mount filesystems 00:55:01,624 DEBUG anaconda:anaconda: installation: Task completed: Mount filesystems (5/41) (7.0 s) 00:55:01,624 INFO anaconda:anaconda: installation: Task started: Write the storage configuration (6/41) 00:55:01,628 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-WriteConfigurationTask-1 (281472995160544) 00:55:01,642 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.devicetree.fsset:not writing out mpath configuration 00:55:01,647 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.iscsi.iscsi:Write iSCSI configuration. 00:55:01,652 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.fcoe.fcoe:Write FCoE configuration. 00:55:01,657 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.zfcp.zfcp:Write zFCP configuration. 00:55:01,659 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-WriteConfigurationTask-1 (281472995160544) 00:55:02,646 INFO anaconda:anaconda: progress: Write the storage configuration 00:55:02,647 DEBUG anaconda:anaconda: installation: Task completed: Write the storage configuration (6/41) (1.0 s) 00:55:02,648 INFO anaconda:anaconda: progress: Running pre-installation scripts 00:55:02,649 INFO anaconda:anaconda: installation: Queue started: Pre-install scripts (4/16) 00:55:02,650 INFO anaconda:anaconda: installation: Task started: Run %pre-install scripts (7/41) 00:55:02,651 INFO anaconda:anaconda: progress: Run %pre-install scripts 00:55:02,651 DEBUG anaconda:anaconda: installation: Task completed: Run %pre-install scripts (7/41) (0.0 s) 00:55:02,653 INFO anaconda:anaconda: progress: Running pre-installation tasks 00:55:02,653 INFO anaconda:anaconda: installation: Queue started: Pre install tasks (5/16) 00:55:02,654 INFO anaconda:anaconda: installation: Task started: Copy resolv.conf to sysroot (8/41) 00:55:02,657 INFO anaconda:anaconda: progress: Copy resolv.conf to sysroot 00:55:02,658 DEBUG anaconda:anaconda: installation: Task completed: Copy resolv.conf to sysroot (8/41) (0.0 s) 00:55:02,659 INFO anaconda:anaconda: installation: Task started: Discover information about a realm (9/41) 00:55:02,661 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Running Thread: AnaTaskThread-RealmDiscoverTask-1 (281473465381344) 00:55:02,663 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.installation:No realm name set, skipping realm discovery. 00:55:02,663 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Thread Done: AnaTaskThread-RealmDiscoverTask-1 (281473465381344) 00:55:02,667 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.security:Updating realm data with results from realm discover task. 00:55:02,667 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.installation:Setting new realm data for realm join task: RealmData(discover_options=[], discovered=False, join_options=[], name='', required_packages=[]) 00:55:02,667 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.security:Realm is set to RealmData(discover_options=[], discovered=False, join_options=[], name='', required_packages=[]). 00:55:02,670 INFO anaconda:anaconda: progress: Discover information about a realm 00:55:02,671 DEBUG anaconda:anaconda: installation: Task completed: Discover information about a realm (9/41) (0.0 s) 00:55:02,672 INFO anaconda:anaconda: installation: Task started: Find additional packages & run pre_install() (10/41) 00:55:02,693 DEBUG anaconda:anaconda: payload.requirement: no group requirement added for language groups 00:55:02,735 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'langpacks-en' for langpacks, strong=False 00:55:02,750 DEBUG anaconda:anaconda: installation: Adding requirements for module org.fedoraproject.Anaconda.Modules.Security : [Requirement(name='authselect-compat', reason='Needed to support legacy authconfig kickstart command.', type='package')] 00:55:02,751 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'authselect-compat' for Needed to support legacy authconfig kickstart command., strong=True 00:55:02,767 DEBUG anaconda:anaconda: installation: Adding requirements for module org.fedoraproject.Anaconda.Modules.Network : [Requirement(name='firewalld', reason='Requested by the firewall kickstart command.', type='package')] 00:55:02,768 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'firewalld' for Requested by the firewall kickstart command., strong=True 00:55:02,783 DEBUG anaconda:anaconda: installation: Adding requirements for module org.fedoraproject.Anaconda.Modules.Timezone : [Requirement(name='chrony', reason='Needed to run NTP service.', type='package')] 00:55:02,784 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'chrony' for Needed to run NTP service., strong=True 00:55:02,816 DEBUG anaconda:anaconda: installation: Adding requirements for module org.fedoraproject.Anaconda.Modules.Storage : [Requirement(name='dosfstools', reason='Required to manage storage devices.', type='package'), Requirement(name='xfsprogs', reason='Required to manage storage devices.', type='package'), Requirement(name='e2fsprogs', reason='Required to manage storage devices.', type='package'), Requirement(name='grub2-efi-aa64', reason='Necessary for the bootloader configuration.', type='package'), Requirement(name='shim-aa64', reason='Necessary for the bootloader configuration.', type='package'), Requirement(name='efibootmgr', reason='Necessary for the bootloader configuration.', type='package'), Requirement(name='grub2-tools', reason='Necessary for the bootloader configuration.', type='package')] 00:55:02,817 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'dosfstools' for Required to manage storage devices., strong=True 00:55:02,817 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'xfsprogs' for Required to manage storage devices., strong=True 00:55:02,818 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'e2fsprogs' for Required to manage storage devices., strong=True 00:55:02,819 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'grub2-efi-aa64' for Necessary for the bootloader configuration., strong=True 00:55:02,819 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'shim-aa64' for Necessary for the bootloader configuration., strong=True 00:55:02,820 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'efibootmgr' for Necessary for the bootloader configuration., strong=True 00:55:02,820 DEBUG anaconda:anaconda: payload.requirement: added package requirement 'grub2-tools' for Necessary for the bootloader configuration., strong=True 00:55:02,832 INFO anaconda:program: Running... systemd-detect-virt 00:55:02,864 INFO anaconda:program: kvm 00:55:02,865 DEBUG anaconda:program: Return code: 0 00:55:02,867 WARNING anaconda:packaging: Platform group platform-kvm not available. 00:55:02,868 INFO anaconda:anaconda: progress: Find additional packages & run pre_install() 00:55:02,869 DEBUG anaconda:anaconda: installation: Task completed: Find additional packages & run pre_install() (10/41) (0.2 s) 00:55:02,871 INFO anaconda:anaconda: progress: Installing. 00:55:02,871 INFO anaconda:anaconda: installation: Queue started: Payload installation (6/16) 00:55:02,872 INFO anaconda:anaconda: installation: Task started: Install the payload (11/41) 00:55:02,874 INFO anaconda:anaconda: progress: Starting package installation process 00:55:02,874 INFO anaconda:packaging: checking software selection 00:55:02,877 DEBUG anaconda:packaging: disabling modules: [] 00:55:03,171 DEBUG anaconda:packaging: enabling modules: [] 00:55:03,461 DEBUG anaconda:packaging: applying DNF package/group/module selection 00:55:03,462 INFO anaconda:packaging: selected group: core 00:55:03,463 INFO anaconda:packaging: excluded package: 'aic94xx-firmware' 00:55:03,463 INFO anaconda:packaging: excluded package: 'alsa-firmware' 00:55:03,464 INFO anaconda:packaging: excluded package: 'alsa-lib' 00:55:03,465 INFO anaconda:packaging: excluded package: 'alsa-tools-firmware' 00:55:03,465 INFO anaconda:packaging: excluded package: 'biosdevname' 00:55:03,466 INFO anaconda:packaging: excluded package: 'iprutils' 00:55:03,466 INFO anaconda:packaging: excluded package: 'ivtv-firmware' 00:55:03,467 INFO anaconda:packaging: excluded package: 'iwl100-firmware' 00:55:03,468 INFO anaconda:packaging: excluded package: 'iwl1000-firmware' 00:55:03,468 INFO anaconda:packaging: excluded package: 'iwl105-firmware' 00:55:03,469 INFO anaconda:packaging: excluded package: 'iwl135-firmware' 00:55:03,469 INFO anaconda:packaging: excluded package: 'iwl2000-firmware' 00:55:03,470 INFO anaconda:packaging: excluded package: 'iwl2030-firmware' 00:55:03,471 INFO anaconda:packaging: excluded package: 'iwl3160-firmware' 00:55:03,471 INFO anaconda:packaging: excluded package: 'iwl3945-firmware' 00:55:03,472 INFO anaconda:packaging: excluded package: 'iwl4965-firmware' 00:55:03,472 INFO anaconda:packaging: excluded package: 'iwl5000-firmware' 00:55:03,473 INFO anaconda:packaging: excluded package: 'iwl5150-firmware' 00:55:03,474 INFO anaconda:packaging: excluded package: 'iwl6000-firmware' 00:55:03,474 INFO anaconda:packaging: excluded package: 'iwl6000g2a-firmware' 00:55:03,475 INFO anaconda:packaging: excluded package: 'iwl6000g2b-firmware' 00:55:03,475 INFO anaconda:packaging: excluded package: 'iwl6050-firmware' 00:55:03,476 INFO anaconda:packaging: excluded package: 'iwl7260-firmware' 00:55:03,477 INFO anaconda:packaging: excluded package: 'langpacks-*' 00:55:03,477 INFO anaconda:packaging: excluded package: 'langpacks-en' 00:55:03,478 INFO anaconda:packaging: excluded package: 'libertas-sd8686-firmware' 00:55:03,478 INFO anaconda:packaging: excluded package: 'libertas-sd8787-firmware' 00:55:03,479 INFO anaconda:packaging: excluded package: 'libertas-usb8388-firmware' 00:55:03,480 INFO anaconda:packaging: excluded package: 'plymouth' 00:55:03,480 INFO anaconda:packaging: selected package: 'NetworkManager' 00:55:03,481 INFO anaconda:packaging: selected package: 'centos-release' 00:55:03,481 INFO anaconda:packaging: selected package: 'chrony' 00:55:03,482 INFO anaconda:packaging: selected package: 'cloud-init' 00:55:03,482 INFO anaconda:packaging: selected package: 'cloud-utils-growpart' 00:55:03,483 INFO anaconda:packaging: selected package: 'cockpit-system' 00:55:03,484 INFO anaconda:packaging: selected package: 'cockpit-ws' 00:55:03,484 INFO anaconda:packaging: selected package: 'dhcp-client' 00:55:03,485 INFO anaconda:packaging: selected package: 'dnf' 00:55:03,485 INFO anaconda:packaging: selected package: 'dnf-utils' 00:55:03,486 INFO anaconda:packaging: selected package: 'dracut-config-generic' 00:55:03,487 INFO anaconda:packaging: selected package: 'dracut-norescue' 00:55:03,487 INFO anaconda:packaging: selected package: 'firewalld' 00:55:03,488 INFO anaconda:packaging: selected package: 'gdisk' 00:55:03,488 INFO anaconda:packaging: selected package: 'grub2' 00:55:03,489 INFO anaconda:packaging: selected package: 'kernel' 00:55:03,490 INFO anaconda:packaging: selected package: 'nfs-utils' 00:55:03,490 INFO anaconda:packaging: selected package: 'python3-jsonschema' 00:55:03,491 INFO anaconda:packaging: selected package: 'qemu-guest-agent' 00:55:03,491 INFO anaconda:packaging: selected package: 'rng-tools' 00:55:03,492 INFO anaconda:packaging: selected package: 'rsync' 00:55:03,493 INFO anaconda:packaging: selected package: 'tar' 00:55:03,493 INFO anaconda:packaging: selected package: 'yum' 00:55:03,494 INFO anaconda:packaging: selected package: 'yum-utils' 00:55:03,495 INFO anaconda:packaging: selected package: 'kexec-tools' 00:55:03,496 INFO anaconda:packaging: kernel: selected kernel 00:55:03,497 DEBUG anaconda:packaging: selected package: langpacks-en, requirement for ['langpacks'] IGNORED because excluded 00:55:03,497 DEBUG anaconda:packaging: selected package: authselect-compat, requirement for ['Needed to support legacy authconfig kickstart command.'] 00:55:03,498 DEBUG anaconda:packaging: selected package: firewalld, requirement for ['Requested by the firewall kickstart command.'] 00:55:03,499 DEBUG anaconda:packaging: selected package: chrony, requirement for ['Needed to run NTP service.'] 00:55:03,499 DEBUG anaconda:packaging: selected package: dosfstools, requirement for ['Required to manage storage devices.'] 00:55:03,500 DEBUG anaconda:packaging: selected package: xfsprogs, requirement for ['Required to manage storage devices.'] 00:55:03,501 DEBUG anaconda:packaging: selected package: e2fsprogs, requirement for ['Required to manage storage devices.'] 00:55:03,501 DEBUG anaconda:packaging: selected package: grub2-efi-aa64, requirement for ['Necessary for the bootloader configuration.'] 00:55:03,502 DEBUG anaconda:packaging: selected package: shim-aa64, requirement for ['Necessary for the bootloader configuration.'] 00:55:03,503 DEBUG anaconda:packaging: selected package: efibootmgr, requirement for ['Necessary for the bootloader configuration.'] 00:55:03,504 DEBUG anaconda:packaging: selected package: grub2-tools, requirement for ['Necessary for the bootloader configuration.'] 00:55:03,505 DEBUG anaconda:anaconda: payload.requirement: apply with result True called on requirements [('package', 'langpacks-en', PayloadRequirement(id=langpacks-en, reasons=[PayloadRequirementReason(reason='langpacks', strong=False)])), ('package', 'authselect-compat', PayloadRequirement(id=authselect-compat, reasons=[PayloadRequirementReason(reason='Needed to support legacy authconfig kickstart command.', strong=True)])), ('package', 'firewalld', PayloadRequirement(id=firewalld, reasons=[PayloadRequire Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11830/12000 mentReason(reason='Requested by the firewall kickstart command.', strong=True)])), ('package', 'chrony', PayloadRequirement(id=chrony, reasons=[PayloadRequirementReason(reason='Needed to run NTP service.', strong=True)])), ('package', 'dosfstools', PayloadRequirement(id=dosfstools, reasons=[PayloadRequirementReason(reason='Required to manage storage devices.', strong=True)])), ('package', 'xfsprogs', PayloadRequirement(id=xfsprogs, reasons=[PayloadRequirementReason(reason='Required to manage storage devices.', strong=True)])), ('package', 'e2fsprogs', PayloadRequirement(id=e2fsprogs, reasons=[PayloadRequirementReason(reason='Required to manage storage devices.', strong=True)])), ('package', 'grub2-efi-aa64', PayloadRequirement(id=grub2-efi-aa64, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)])), ('package', 'shim-aa64', PayloadRequirement(id=shim-aa64, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)])), ('package', 'efibootmgr', PayloadRequirement(id=efibootmgr, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)])), ('package', 'grub2-tools', PayloadRequirement(id=grub2-tools, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)]))] 00:55:03,505 DEBUG anaconda:packaging: transaction include list 00:55:03,506 DEBUG anaconda:packaging: ['@core', '@core', 'NetworkManager', 'centos-release', 'chrony', 'cloud-init', 'cloud-utils-growpart', 'cockpit-system', 'cockpit-ws', 'dhcp-client', 'dnf', 'dnf-utils', 'dracut-config-generic', 'dracut-norescue', 'firewalld', 'gdisk', 'grub2', 'kernel', 'nfs-utils', 'python3-jsonschema', 'qemu-guest-agent', 'rng-tools', 'rsync', 'tar', 'yum', 'yum-utils', 'kexec-tools', 'kernel', 'dosfstools', 'grub2-efi-aa64', 'chrony', 'shim-aa64', 'efibootmgr', 'firewalld', 'grub2-tools', 'xfsprogs', 'e2fsprogs', 'authselect-compat'] 00:55:03,507 DEBUG anaconda:packaging: transaction exclude list 00:55:03,507 DEBUG anaconda:packaging: ['aic94xx-firmware', 'alsa-firmware', 'alsa-lib', 'alsa-tools-firmware', 'biosdevname', 'iprutils', 'ivtv-firmware', 'iwl100-firmware', 'iwl1000-firmware', 'iwl105-firmware', 'iwl135-firmware', 'iwl2000-firmware', 'iwl2030-firmware', 'iwl3160-firmware', 'iwl3945-firmware', 'iwl4965-firmware', 'iwl5000-firmware', 'iwl5150-firmware', 'iwl6000-firmware', 'iwl6000g2a-firmware', 'iwl6000g2b-firmware', 'iwl6050-firmware', 'iwl7260-firmware', 'langpacks-*', 'langpacks-en', 'libertas-sd8686-firmware', 'libertas-sd8787-firmware', 'libertas-usb8388-firmware', 'plymouth'] 00:55:03,990 DEBUG anaconda:dnf: Adding packages from group 'core': {, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , } 00:55:03,992 WARNING anaconda:dnf: No match for group package "iwl5150-firmware" 00:55:03,996 WARNING anaconda:dnf: No match for group package "iwl6050-firmware" 00:55:04,000 WARNING anaconda:dnf: No match for group package "iwl7260-firmware" 00:55:04,012 WARNING anaconda:dnf: No match for group package "iprutils" 00:55:04,028 WARNING anaconda:dnf: No match for group package "iwl105-firmware" 00:55:04,029 WARNING anaconda:dnf: No match for group package "iwl6000-firmware" 00:55:04,037 WARNING anaconda:dnf: No match for group package "iwl2000-firmware" 00:55:04,039 WARNING anaconda:dnf: No match for group package "iwl100-firmware" 00:55:04,041 WARNING anaconda:dnf: No match for group package "iwl6000g2a-firmware" 00:55:04,044 WARNING anaconda:dnf: No match for group package "iwl1000-firmware" 00:55:04,048 WARNING anaconda:dnf: No match for group package "iwl3160-firmware" 00:55:04,051 WARNING anaconda:dnf: No match for group package "plymouth" 00:55:04,054 WARNING anaconda:dnf: No match for group package "iwl135-firmware" 00:55:04,056 WARNING anaconda:dnf: No match for group package "iwl2030-firmware" 00:55:04,061 WARNING anaconda:dnf: No match for group package "iwl5000-firmware" 00:55:04,653 INFO anaconda:packaging: checking dependencies: success 00:55:04,880 DEBUG anaconda:packaging: Size from DNF: 1.63 GiB 00:55:04,880 DEBUG anaconda:packaging: Bonus size 335.33 MiB by number of files 57229 00:55:04,881 DEBUG anaconda:packaging: Total size required 2.15 GiB 00:55:04,905 INFO anaconda:program: Running... df --output=target,avail 00:55:04,922 INFO anaconda:program: Mounted on Avail 00:55:04,922 INFO anaconda:program: /dev 2000448 00:55:04,923 INFO anaconda:program: /dev/shm 2036800 00:55:04,924 INFO anaconda:program: /run 1962816 00:55:04,924 INFO anaconda:program: /sys/fs/cgroup 2036800 00:55:04,925 INFO anaconda:program: / 814076 00:55:04,925 INFO anaconda:program: /tmp 1976448 00:55:04,926 INFO anaconda:program: /mnt/sysroot 8040468 00:55:04,926 INFO anaconda:program: /mnt/sysroot/boot/efi 613180 00:55:04,927 INFO anaconda:program: /mnt/sysroot/dev/shm 2036800 00:55:04,927 DEBUG anaconda:program: Return code: 0 00:55:04,942 DEBUG anaconda:packaging: Input mount points: {'/dev': Size (1.90777587890625 GiB), '/dev/shm': Size (1.94244384765625 GiB), '/run': Size (1.87188720703125 GiB), '/sys/fs/cgroup': Size (1.94244384765625 GiB), '/': Size (794.99609375 MiB), '/tmp': Size (1.8848876953125 GiB), '/mnt/sysroot': Size (7.667987823486328125 GiB), '/mnt/sysroot/boot/efi': Size (598.80859375 MiB), '/mnt/sysroot/dev/shm': Size (1.94244384765625 GiB)} 00:55:04,943 INFO anaconda:packaging: Estimated size: download 558.33 MiB & install 2.15 GiB 00:55:04,944 INFO anaconda:packaging: Sufficient mountpoints found: {'/mnt/sysroot': Size (7.667987823486328125 GiB)} 00:55:04,945 DEBUG anaconda:packaging: Install + download space required 2.69 GiB 00:55:04,946 INFO anaconda:packaging: 470 packages selected totalling 2.69 GiB 00:55:05,179 DEBUG anaconda:packaging: Size from DNF: 1.63 GiB 00:55:05,180 DEBUG anaconda:packaging: Bonus size 335.33 MiB by number of files 57229 00:55:05,181 DEBUG anaconda:packaging: Total size required 2.15 GiB 00:55:05,182 INFO anaconda:program: Running... df --output=target,avail 00:55:05,197 INFO anaconda:program: Mounted on Avail 00:55:05,198 INFO anaconda:program: /dev 2000448 00:55:05,198 INFO anaconda:program: /dev/shm 2036800 00:55:05,199 INFO anaconda:program: /run 1962816 00:55:05,199 INFO anaconda:program: /sys/fs/cgroup 2036800 00:55:05,200 INFO anaconda:program: / 814076 00:55:05,200 INFO anaconda:program: /tmp 1976448 00:55:05,201 INFO anaconda:program: /mnt/sysroot 8040468 00:55:05,201 INFO anaconda:program: /mnt/sysroot/boot/efi 613180 00:55:05,202 INFO anaconda:program: /mnt/sysroot/dev/shm 2036800 00:55:05,203 DEBUG anaconda:program: Return code: 0 00:55:05,207 DEBUG anaconda:packaging: Input mount points: {'/dev': Size (1.90777587890625 GiB), '/dev/shm': Size (1.94244384765625 GiB), '/run': Size (1.87188720703125 GiB), '/sys/fs/cgroup': Size (1.94244384765625 GiB), '/': Size (794.99609375 MiB), '/tmp': Size (1.8848876953125 GiB), '/mnt/sysroot': Size (7.667987823486328125 GiB), '/mnt/sysroot/boot/efi': Size (598.80859375 MiB), '/mnt/sysroot/dev/shm': Size (1.94244384765625 GiB)} 00:55:05,208 INFO anaconda:packaging: Estimated size: download 558.33 MiB & install 2.15 GiB 00:55:05,209 INFO anaconda:packaging: Sufficient mountpoints found: {'/mnt/sysroot': Size (7.667987823486328125 GiB)} 00:55:05,210 INFO anaconda:packaging: Mountpoint /mnt/sysroot picked as download location 00:55:05,238 INFO anaconda:packaging: Downloading packages to /mnt/sysroot/dnf.package.cache. 00:55:05,500 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ModemManager-glib-1.10.8-2.el8.aarch64.rpm 00:55:05,501 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/NetworkManager-1.30.0-10.el8_4.aarch64.rpm 00:55:05,502 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/NetworkManager-libnm-1.30.0-10.el8_4.aarch64.rpm 00:55:05,530 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/udisks2-2.9.0-6.el8.aarch64.rpm 00:55:05,567 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/NetworkManager-team-1.30.0-10.el8_4.aarch64.rpm 00:55:05,580 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/unbound-libs-1.7.3-15.el8.aarch64.rpm 00:55:05,617 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/NetworkManager-tui-1.30.0-10.el8_4.aarch64.rpm 00:55:05,641 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/acl-2.2.53-1.el8.aarch64.rpm 00:55:05,656 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.aarch64.rpm 00:55:05,660 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.aarch64.rpm 00:55:05,671 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/authselect-1.2.2-2.el8.aarch64.rpm 00:55:05,679 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/authselect-libs-1.2.2-2.el8.aarch64.rpm 00:55:05,686 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/basesystem-11-5.el8.noarch.rpm 00:55:05,689 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/bash-4.4.20-1.el8_4.aarch64.rpm 00:55:05,700 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/bind-export-libs-9.11.26-4.el8_4.aarch64.rpm 00:55:05,719 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/brotli-1.0.6-3.el8.aarch64.rpm 00:55:05,745 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/volume_key-libs-0.3.11-5.el8.aarch64.rpm 00:55:05,758 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/bubblewrap-0.4.0-1.el8.aarch64.rpm 00:55:05,766 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/bzip2-1.0.6-26.el8.aarch64.rpm 00:55:05,772 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/bzip2-libs-1.0.6-26.el8.aarch64.rpm 00:55:05,779 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/c-ares-1.13.0-5.el8.aarch64.rpm 00:55:05,788 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm 00:55:05,806 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm 00:55:05,809 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/centos-linux-release-8.4-1.2105.el8.noarch.rpm 00:55:05,814 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/centos-linux-repos-8-2.el8.noarch.rpm 00:55:05,818 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/centos-logos-85.8-1.el8.aarch64.rpm 00:55:05,828 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/checkpolicy-2.9-1.el8.aarch64.rpm 00:55:05,844 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/chkconfig-1.13-2.el8.aarch64.rpm 00:55:05,859 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/chrony-3.5-2.el8.aarch64.rpm 00:55:05,867 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cockpit-bridge-238.2-1.el8.aarch64.rpm 00:55:05,886 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cockpit-system-238.2-1.el8.noarch.rpm 00:55:05,887 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cockpit-ws-238.2-1.el8.aarch64.rpm 00:55:05,914 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/coreutils-8.30-8.el8.aarch64.rpm 00:55:05,998 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/coreutils-common-8.30-8.el8.aarch64.rpm 00:55:06,017 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cpio-2.12-10.el8.aarch64.rpm 00:55:06,039 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cracklib-2.9.6-15.el8.aarch64.rpm 00:55:06,048 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cracklib-dicts-2.9.6-15.el8.aarch64.rpm 00:55:06,164 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cronie-1.5.2-4.el8.aarch64.rpm 00:55:06,187 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cronie-anacron-1.5.2-4.el8.aarch64.rpm 00:55:06,193 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm 00:55:06,197 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/crypto-policies-20210209-1.gitbfb6bed.el8_3.noarch.rpm 00:55:06,199 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3.noarch.rpm 00:55:06,205 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cryptsetup-libs-2.3.3-4.el8.aarch64.rpm 00:55:06,209 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm 00:55:06,244 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/curl-7.61.1-18.el8.aarch64.rpm 00:55:06,272 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.aarch64.rpm 00:55:06,276 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dbus-1.12.8-12.el8_4.2.aarch64.rpm 00:55:06,282 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dbus-common-1.12.8-12.el8_4.2.noarch.rpm 00:55:06,288 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dbus-daemon-1.12.8-12.el8_4.2.aarch64.rpm 00:55:06,289 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dbus-glib-0.110-2.el8.aarch64.rpm 00:55:06,301 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dbus-libs-1.12.8-12.el8_4.2.aarch64.rpm 00:55:06,310 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dbus-tools-1.12.8-12.el8_4.2.aarch64.rpm 00:55:06,317 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dejavu-fonts-common-2.35-7.el8.noarch.rpm 00:55:06,321 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dejavu-sans-mono-fonts-2.35-7.el8.noarch.rpm 00:55:06,328 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/device-mapper-1.02.175-5.el8.aarch64.rpm 00:55:06,359 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/device-mapper-libs-1.02.175-5.el8.aarch64.rpm 00:55:06,360 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.aarch64.rpm 00:55:06,386 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm 00:55:06,394 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.aarch64.rpm 00:55:06,424 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/diffutils-3.6-6.el8.aarch64.rpm 00:55:06,425 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dmidecode-3.2-8.el8.aarch64.rpm 00:55:06,431 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dnf-4.4.2-11.el8.noarch.rpm 00:55:06,438 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dnf-data-4.4.2-11.el8.noarch.rpm 00:55:06,450 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dnf-plugins-core-4.0.18-4.el8.noarch.rpm 00:55:06,457 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dosfstools-4.1-6.el8.aarch64.rpm 00:55:06,462 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dracut-049-135.git20210121.el8.aarch64.rpm 00:55:06,472 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dracut-config-generic-049-135.git20210121.el8.aarch64.rpm 00:55:06,481 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dracut-config-rescue-049-135.git20210121.el8.aarch64.rpm 00:55:06,482 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dracut-network-049-135.git20210121.el8.aarch64.rpm 00:55:06,489 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/dracut-squash-049-135.git20210121.el8.aarch64.rpm 00:55:06,493 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/e2fsprogs-1.45.6-1.el8.aarch64.rpm 00:55:06,497 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.aarch64.rpm 00:55:06,504 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm 00:55:06,508 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/efibootmgr-16-1.el8.aarch64.rpm 00:55:06,513 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/efivar-libs-37-4.el8.aarch64.rpm 00:55:06,521 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.aarch64.rpm 00:55:06,525 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm 00:55:06,532 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/elfutils-libelf-0.182-3.el8.aarch64.rpm 00:55:06,533 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/elfutils-libs-0.182-3.el8.aarch64.rpm 00:55:06,551 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ethtool-5.8-5.el8.aarch64.rpm 00:55:06,559 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/expat-2.2.5-4.el8.aarch64.rpm 00:55:06,568 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/file-5.33-16.el8_3.1.aarch64.rpm 00:55:06,572 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/file-libs-5.33-16.el8_3.1.aarch64.rpm 00:55:06,578 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/filesystem-3.8-3.el8.aarch64.rpm 00:55:06,595 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/findutils-4.6.0-20.el8.aarch64.rpm 00:55:06,622 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/firewalld-0.8.2-7.el8_4.noarch.rpm 00:55:06,639 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/firewalld-filesystem-0.8.2-7.el8_4.noarch.rpm 00:55:06,647 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/fontconfig-2.13.1-3.el8.aarch64.rpm 00:55:06,663 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/fontpackages-filesystem-1.44-22.el8.noarch.rpm 00:55:06,667 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/freetype-2.9.1-4.el8_3.1.aarch64.rpm 00:55:06,672 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/fuse-libs-2.9.7-12.el8.aarch64.rpm 00:55:06,683 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/fwupd-1.5.9-1.el8_4.aarch64.rpm 00:55:06,690 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gawk-4.2.1-2.el8.aarch64.rpm 00:55:06,709 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gdbm-1.18-1.el8.aarch64.rpm 00:55:06,722 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gdbm-libs-1.18-1.el8.aarch64.rpm 00:55:06,729 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gdisk-1.0.3-6.el8.aarch64.rpm 00:55:06,748 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gdk-pixbuf2-2.36.12-5.el8.aarch64.rpm 00:55:06,783 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gettext-0.19.8.1-17.el8.aarch64.rpm 00:55:06,792 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gettext-libs-0.19.8.1-17.el8.aarch64.rpm 00:55:06,817 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/glib-networking-2.56.1-1.1.el8.aarch64.rpm 00:55:06,831 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/glib2-2.56.4-10.el8_4.1.aarch64.rpm 00:55:06,875 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/glibc-2.28-151.el8.aarch64.rpm 00:55:06,916 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/glibc-all-langpacks-2.28-151.el8.aarch64.rpm 00:55:07,045 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/glibc-common-2.28-151.el8.aarch64.rpm 00:55:07,146 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm 00:55:07,151 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm 00:55:07,159 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/pinentry-1.1.0-2.el8.aarch64.rpm 00:55:07,168 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/pixman-0.38.4-1.el8.aarch64.rpm 00:55:07,192 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gmp-6.1.2-10.el8.aarch64.rpm 00:55:07,205 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gnupg2-2.2.20-2.el8.aarch64.rpm 00:55:07,218 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gnupg2-smime-2.2.20-2.el8.aarch64.rpm 00:55:07,244 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gnutls-3.6.14-8.el8_3.aarch64.rpm 00:55:07,322 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gobject-introspection-1.56.1-1.el8.aarch64.rpm 00:55:07,343 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gpgme-1.13.1-7.el8.aarch64.rpm 00:55:07,371 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grep-3.1-6.el8.aarch64.rpm 00:55:07,393 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/groff-base-1.22.3-18.el8.aarch64.rpm 00:55:07,420 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grub2-common-2.02-99.el8.noarch.rpm 00:55:07,483 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grub2-efi-aa64-2.02-99.el8.aarch64.rpm 00:55:07,496 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grub2-tools-2.02-99.el8.aarch64.rpm 00:55:07,527 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grub2-tools-extra-2.02-99.el8.aarch64.rpm 00:55:07,609 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grub2-tools-minimal-2.02-99.el8.aarch64.rpm 00:55:07,626 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/grubby-8.40-41.el8.aarch64.rpm 00:55:07,632 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gsettings-desktop-schemas-3.32.0-5.el8.aarch64.rpm 00:55:07,650 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gssproxy-0.8.0-19.el8.aarch64.rpm 00:55:07,661 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/gzip-1.9-12.el8.aarch64.rpm 00:55:07,676 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/hardlink-1.3-6.el8.aarch64.rpm 00:55:07,680 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/hdparm-9.54-3.el8.aarch64.rpm 00:55:07,689 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/hostname-3.20-6.el8.aarch64.rpm 00:55:07,696 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/hwdata-0.314-8.8.el8.noarch.rpm 00:55:07,699 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ima-evm-utils-1.3.2-12.el8.aarch64.rpm 00:55:07,707 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/info-6.5-6.el8.aarch64.rpm 00:55:07,723 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/initscripts-10.00.15-1.el8.aarch64.rpm 00:55:07,751 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ipcalc-0.2.4-4.el8.aarch64.rpm 00:55:07,757 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/iproute-5.9.0-4.el8.aarch64.rpm 00:55:07,811 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ipset-7.1-1.el8.aarch64.rpm 00:55:07,817 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ipset-libs-7.1-1.el8.aarch64.rpm 00:55:07,824 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/iptables-1.8.4-17.el8.aarch64.rpm 00:55:07,843 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/iptables-ebtables-1.8.4-17.el8.aarch64.rpm 00:55:07,851 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/iptables-libs-1.8.4-17.el8.aarch64.rpm 00:55:07,862 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/iputils-20180629-7.el8.aarch64.rpm 00:55:07,874 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/irqbalance-1.4.0-6.el8.aarch64.rpm 00:55:07,880 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/jansson-2.11-3.el8.aarch64.rpm 00:55:07,886 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/json-c-0.13.1-0.4.el8.aarch64.rpm 00:55:07,890 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/json-glib-1.4.4-1.el8.aarch64.rpm 00:55:07,893 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kbd-2.0.4-10.el8.aarch64.rpm 00:55:07,906 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm 00:55:07,926 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm 00:55:07,947 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-4.18.0-305.17.1.el8_4.aarch64.rpm 00:55:08,047 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-core-4.18.0-305.17.1.el8_4.aarch64.rpm 00:55:08,429 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-modules-4.18.0-305.17.1.el8_4.aarch64.rpm 00:55:09,124 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-tools-4.18.0-305.17.1.el8_4.aarch64.rpm 00:55:09,607 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kernel-tools-libs-4.18.0-305.17.1.el8_4.aarch64.rpm 00:55:09,776 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kexec-tools-2.0.20-46.el8_4.2.aarch64.rpm 00:55:09,814 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/keyutils-1.5.10-6.el8.aarch64.rpm 00:55:09,821 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/keyutils-libs-1.5.10-6.el8.aarch64.rpm 00:55:09,826 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kmod-25-17.el8.aarch64.rpm 00:55:09,838 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kmod-libs-25-17.el8.aarch64.rpm 00:55:09,846 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/kpartx-0.8.4-10.el8.aarch64.rpm 00:55:09,856 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/krb5-libs-1.18.2-8.el8.aarch64.rpm 00:55:09,921 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/less-530-1.el8.aarch64.rpm 00:55:09,935 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libacl-2.2.53-1.el8.aarch64.rpm 00:55:09,941 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libappstream-glib-0.7.14-3.el8.aarch64.rpm 00:55:09,966 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libarchive-3.3.3-1.el8.aarch64.rpm 00:55:09,994 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libassuan-2.5.1-3.el8.aarch64.rpm 00:55:10,003 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libattr-2.4.48-3.el8.aarch64.rpm 00:55:10,008 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libbasicobjects-0.1.1-39.el8.aarch64.rpm 00:55:10,013 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libblkid-2.32.1-27.el8.aarch64.rpm 00:55:10,031 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcap-2.26-4.el8.aarch64.rpm 00:55:10,038 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcap-ng-0.7.9-5.el8.aarch64.rpm 00:55:10,044 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcollection-0.7.0-39.el8.aarch64.rpm 00:55:10,050 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcom_err-1.45.6-1.el8.aarch64.rpm 00:55:10,057 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcomps-0.1.11-5.el8.aarch64.rpm 00:55:10,065 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcroco-0.6.12-4.el8_2.1.aarch64.rpm 00:55:10,075 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libcurl-7.61.1-18.el8.aarch64.rpm 00:55:10,099 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libdaemon-0.14-15.el8.aarch64.rpm 00:55:10,105 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libdb-5.3.28-40.el8.aarch64.rpm 00:55:10,156 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libdb-utils-5.3.28-40.el8.aarch64.rpm 00:55:10,191 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libdhash-0.5.0-39.el8.aarch64.rpm 00:55:10,198 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libdnf-0.55.0-7.el8.aarch64.rpm 00:55:10,207 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libedit-3.1-23.20170329cvs.el8.aarch64.rpm 00:55:10,217 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libevent-2.1.8-5.el8.aarch64.rpm 00:55:10,236 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libfdisk-2.32.1-27.el8.aarch64.rpm 00:55:10,250 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libffi-3.1-22.el8.aarch64.rpm 00:55:10,255 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgcab1-1.1-1.el8.aarch64.rpm 00:55:10,262 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgcc-8.4.1-1.el8.aarch64.rpm 00:55:10,266 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgcrypt-1.8.5-4.el8.aarch64.rpm 00:55:10,273 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgomp-8.4.1-1.el8.aarch64.rpm 00:55:10,289 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgpg-error-1.31-1.el8.aarch64.rpm 00:55:10,301 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgudev-232-4.el8.aarch64.rpm 00:55:10,306 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libgusb-0.3.0-1.el8.aarch64.rpm 00:55:10,314 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libibverbs-32.0-4.el8.aarch64.rpm 00:55:10,314 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libidn2-2.2.0-1.el8.aarch64.rpm 00:55:10,325 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libini_config-1.3.1-39.el8.aarch64.rpm 00:55:10,332 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libkcapi-1.2.0-2.el8.aarch64.rpm 00:55:10,337 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.aarch64.rpm 00:55:10,341 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libksba-1.3.5-7.el8.aarch64.rpm 00:55:10,346 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libldb-2.2.0-2.el8.aarch64.rpm 00:55:10,356 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libmbim-1.20.2-1.el8.aarch64.rpm 00:55:10,362 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libX11-1.6.8-4.el8.aarch64.rpm 00:55:10,370 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libmetalink-0.1.3-7.el8.aarch64.rpm 00:55:10,375 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm 00:55:10,389 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libmnl-1.0.4-6.el8.aarch64.rpm 00:55:10,396 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libmodman-2.0.1-17.el8.aarch64.rpm 00:55:10,401 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libmodulemd-2.9.4-2.el8.aarch64.rpm 00:55:10,415 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libXau-1.0.9-3.el8.aarch64.rpm 00:55:10,418 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libmount-2.32.1-27.el8.aarch64.rpm 00:55:10,424 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libndp-1.7-5.el8.aarch64.rpm 00:55:10,429 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.aarch64.rpm 00:55:10,436 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm 00:55:10,443 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-cairo-1.16.3-6.el8.aarch64.rpm 00:55:10,453 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnfnetlink-1.0.1-13.el8.aarch64.rpm 00:55:10,459 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnfsidmap-2.3.3-41.el8_4.2.aarch64.rpm 00:55:10,471 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnftnl-1.1.5-4.el8.aarch64.rpm 00:55:10,479 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.aarch64.rpm 00:55:10,488 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnl3-3.5.0-1.el8.aarch64.rpm 00:55:10,512 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnl3-cli-3.5.0-1.el8.aarch64.rpm 00:55:10,529 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libXext-1.3.4-1.el8.aarch64.rpm 00:55:10,535 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.aarch64.rpm 00:55:10,541 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libpath_utils-0.2.1-39.el8.aarch64.rpm 00:55:10,547 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libpcap-1.9.1-5.el8.aarch64.rpm 00:55:10,562 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libpipeline-1.5.0-2.el8.aarch64.rpm 00:55:10,569 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libpng-1.6.34-5.el8.aarch64.rpm 00:55:10,580 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libproxy-0.4.15-5.2.el8.aarch64.rpm 00:55:10,588 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libpsl-0.20.2-6.el8.aarch64.rpm 00:55:10,595 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libpwquality-1.4.4-3.el8.aarch64.rpm 00:55:10,606 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-gobject-3.28.3-2.el8.aarch64.rpm 00:55:10,610 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libXrender-0.9.10-7.el8.aarch64.rpm 00:55:10,615 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libqmi-1.24.0-1.el8.aarch64.rpm 00:55:10,657 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libref_array-0.1.5-39.el8.aarch64.rpm 00:55:10,662 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/librepo-1.12.0-3.el8.aarch64.rpm 00:55:10,671 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libreport-filesystem-2.9.5-15.el8.aarch64.rpm 00:55:10,676 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libseccomp-2.5.1-1.el8.aarch64.rpm 00:55:10,684 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsecret-0.18.6-1.el8.aarch64.rpm 00:55:10,698 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libselinux-2.9-5.el8.aarch64.rpm 00:55:10,713 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libselinux-utils-2.9-5.el8.aarch64.rpm 00:55:10,734 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsemanage-2.9-6.el8.aarch64.rpm 00:55:10,748 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsepol-2.9-2.el8.aarch64.rpm 00:55:10,775 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsigsegv-2.11-5.el8.aarch64.rpm 00:55:10,779 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsmartcols-2.32.1-27.el8.aarch64.rpm 00:55:10,794 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libatasmart-0.19-14.el8.aarch64.rpm 00:55:10,801 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm 00:55:10,857 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm 00:55:10,862 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsolv-0.7.16-2.el8.aarch64.rpm 00:55:10,873 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsoup-2.62.3-2.el8.aarch64.rpm 00:55:10,893 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libss-1.45.6-1.el8.aarch64.rpm 00:55:10,899 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libssh-0.9.4-2.el8.aarch64.rpm 00:55:10,909 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm 00:55:10,913 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-2.24-5.el8.aarch64.rpm 00:55:10,919 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-crypto-2.24-5.el8.aarch64.rpm 00:55:10,925 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsss_autofs-2.4.0-9.el8_4.2.aarch64.rpm 00:55:10,928 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-fs-2.24-5.el8.aarch64.rpm 00:55:10,935 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-loop-2.24-5.el8.aarch64.rpm 00:55:11,117 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsss_certmap-2.4.0-9.el8_4.2.aarch64.rpm 00:55:11,117 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-mdraid-2.24-5.el8.aarch64.rpm 00:55:11,125 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-part-2.24-5.el8.aarch64.rpm 00:55:11,129 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsss_idmap-2.4.0-9.el8_4.2.aarch64.rpm 00:55:11,136 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-swap-2.24-5.el8.aarch64.rpm 00:55:11,136 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libblockdev-utils-2.24-5.el8.aarch64.rpm 00:55:11,143 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsss_nss_idmap-2.4.0-9.el8_4.2.aarch64.rpm 00:55:11,148 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libbytesize-1.4-3.el8.aarch64.rpm 00:55:11,148 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsss_sudo-2.4.0-9.el8_4.2.aarch64.rpm 00:55:11,155 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libstdc%2b%2b-8.4.1-1.el8.aarch64.rpm 00:55:11,162 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libstemmer-0-10.585svn.el8.aarch64.rpm 00:55:11,166 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-markupsafe-0.23-19.el8.aarch64.rpm 00:55:11,170 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libsysfs-2.1.0-24.el8.aarch64.rpm 00:55:11,173 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libtalloc-2.3.1-2.el8.aarch64.rpm 00:55:11,178 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libtasn1-4.13-3.el8.aarch64.rpm 00:55:11,179 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libtdb-1.4.3-1.el8.aarch64.rpm 00:55:11,185 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libteam-1.31-2.el8.aarch64.rpm 00:55:11,188 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libtevent-0.10.2-2.el8.aarch64.rpm 00:55:11,194 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libtirpc-1.1.4-4.el8.aarch64.rpm 00:55:11,195 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libestr-0.1.10-1.el8.aarch64.rpm 00:55:11,199 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libunistring-0.9.9-3.el8.aarch64.rpm 00:55:11,206 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libusbx-1.0.23-4.el8.aarch64.rpm 00:55:11,211 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-pexpect-4.3.1-3.el8.noarch.rpm 00:55:11,217 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libfastjson-0.99.8-2.el8.aarch64.rpm 00:55:11,222 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libuser-0.62-23.el8.aarch64.rpm 00:55:11,229 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libutempter-1.1.6-14.el8.aarch64.rpm 00:55:11,234 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libuuid-2.32.1-27.el8.aarch64.rpm 00:55:11,242 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm 00:55:11,247 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libverto-0.3.0-5.el8.aarch64.rpm 00:55:11,251 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libverto-libevent-0.3.0-5.el8.aarch64.rpm 00:55:11,252 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-ptyprocess-0.5.2-4.el8.noarch.rpm 00:55:11,257 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libxcrypt-4.1.1-4.el8.aarch64.rpm 00:55:11,258 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libxml2-2.9.7-9.el8_4.2.aarch64.rpm 00:55:11,267 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libxmlb-0.1.15-1.el8.aarch64.rpm 00:55:11,272 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-pydbus-0.6.0-5.el8.noarch.rpm 00:55:11,278 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libyaml-0.1.7-5.el8.aarch64.rpm 00:55:11,282 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/libzstd-1.4.4-1.el8.aarch64.rpm 00:55:11,289 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm 00:55:11,307 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm 00:55:11,323 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm 00:55:11,324 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/logrotate-3.14.0-4.el8.aarch64.rpm 00:55:11,331 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/lshw-B.02.19.2-5.el8.aarch64.rpm 00:55:11,336 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/lsscsi-0.32-2.el8.aarch64.rpm 00:55:11,344 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/lua-libs-5.3.4-11.el8.aarch64.rpm 00:55:11,354 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/lz4-libs-1.8.3-3.el8_4.aarch64.rpm 00:55:11,359 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/lzo-2.08-14.el8.aarch64.rpm 00:55:11,363 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/man-db-2.7.6.1-17.el8.aarch64.rpm 00:55:11,370 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/mdadm-4.1-16.el8_4.aarch64.rpm 00:55:11,406 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/memstrack-0.1.11-1.el8.aarch64.rpm 00:55:11,412 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/mokutil-0.3.0-11.el8.aarch64.rpm 00:55:11,418 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-systemd-234-8.el8.aarch64.rpm 00:55:11,426 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/mozjs60-60.9.0-4.el8.aarch64.rpm 00:55:11,441 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/mpfr-3.1.6-1.el8.aarch64.rpm 00:55:11,459 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/python3-unbound-1.7.3-15.el8.aarch64.rpm 00:55:11,470 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ncurses-6.1-7.20180224.el8.aarch64.rpm 00:55:11,500 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm 00:55:11,509 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/ncurses-libs-6.1-7.20180224.el8.aarch64.rpm 00:55:11,535 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libmaxminddb-1.2.0-10.el8.aarch64.rpm 00:55:11,540 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/nettle-3.4.1-4.el8_3.aarch64.rpm 00:55:11,566 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/newt-0.52.20-11.el8.aarch64.rpm 00:55:11,577 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/nfs-utils-2.3.3-41.el8_4.2.aarch64.rpm 00:55:11,616 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/nftables-0.9.3-18.el8.aarch64.rpm 00:55:11,640 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/npth-1.5-4.el8.aarch64.rpm 00:55:11,645 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/numactl-libs-2.0.12-11.el8.aarch64.rpm 00:55:11,651 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openldap-2.4.46-17.el8_4.aarch64.rpm 00:55:11,678 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openssh-8.0p1-6.el8_4.2.aarch64.rpm 00:55:11,717 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openssh-clients-8.0p1-6.el8_4.2.aarch64.rpm 00:55:11,766 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openssh-server-8.0p1-6.el8_4.2.aarch64.rpm 00:55:11,803 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openssl-1.1.1g-15.el8_3.aarch64.rpm 00:55:11,857 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openssl-libs-1.1.1g-15.el8_3.aarch64.rpm 00:55:11,936 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/openssl-pkcs11-0.4.10-2.el8.aarch64.rpm 00:55:11,944 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/os-prober-1.74-6.el8.aarch64.rpm 00:55:11,951 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/p11-kit-0.23.22-1.el8.aarch64.rpm 00:55:11,977 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/p11-kit-trust-0.23.22-1.el8.aarch64.rpm 00:55:11,988 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/pam-1.3.1-14.el8.aarch64.rpm 00:55:12,002 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/parted-3.2-38.el8.aarch64.rpm 00:55:12,044 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/passwd-0.80-3.el8.aarch64.rpm 00:55:12,055 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/pciutils-3.7.0-1.el8.aarch64.rpm 00:55:12,060 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/pciutils-libs-3.7.0-1.el8.aarch64.rpm 00:55:12,067 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/pcre-8.42-4.el8.aarch64.rpm 00:55:12,068 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/qemu-guest-agent-4.2.0-48.module_el8.4.0%2b885%2b5e18b468.3.aarch64.rpm 00:55:12,084 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/pcre2-10.32-2.el8.aarch64.rpm 00:55:12,090 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libudisks2-2.9.0-6.el8.aarch64.rpm 00:55:12,103 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/pigz-2.4-4.el8.aarch64.rpm 00:55:12,107 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/platform-python-3.6.8-37.el8.aarch64.rpm 00:55:12,113 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm 00:55:12,118 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm 00:55:12,168 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/policycoreutils-2.9-14.el8.aarch64.rpm 00:55:12,198 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/PackageKit-1.1.12-6.el8.aarch64.rpm 00:55:12,242 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/PackageKit-glib-1.1.12-6.el8.aarch64.rpm 00:55:12,257 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/policycoreutils-python-utils-2.9-14.el8.noarch.rpm 00:55:12,265 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/polkit-0.115-11.el8_4.1.aarch64.rpm 00:55:12,276 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/abattis-cantarell-fonts-0.0.25-6.el8.noarch.rpm 00:55:12,280 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/polkit-libs-0.115-11.el8_4.1.aarch64.rpm 00:55:12,288 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/polkit-pkla-compat-0.1-12.el8.aarch64.rpm 00:55:12,295 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/popt-1.18-1.el8.aarch64.rpm 00:55:12,296 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/prefixdevname-0.1.0-6.el8.aarch64.rpm 00:55:12,304 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/procps-ng-3.3.15-6.el8.aarch64.rpm 00:55:12,329 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/psmisc-23.1-5.el8.aarch64.rpm 00:55:12,333 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm 00:55:12,340 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.aarch64.rpm 00:55:12,346 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-cffi-1.11.5-5.el8.aarch64.rpm 00:55:12,352 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm 00:55:12,366 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm 00:55:12,369 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-cryptography-3.2.1-4.el8.aarch64.rpm 00:55:12,378 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm 00:55:12,399 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-dbus-1.2.4-15.el8.aarch64.rpm 00:55:12,410 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm 00:55:12,414 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-dnf-4.4.2-11.el8.noarch.rpm 00:55:12,420 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-dnf-plugins-core-4.0.18-4.el8.noarch.rpm 00:55:12,440 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-firewall-0.8.2-7.el8_4.noarch.rpm 00:55:12,463 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-gobject-base-3.28.3-2.el8.aarch64.rpm 00:55:12,475 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-gpg-1.13.1-7.el8.aarch64.rpm 00:55:12,489 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-hawkey-0.55.0-7.el8.aarch64.rpm 00:55:12,495 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm 00:55:12,501 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libxcb-1.13.1-1.el8.aarch64.rpm 00:55:12,508 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/libxkbcommon-0.9.1-1.el8.aarch64.rpm 00:55:12,517 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm 00:55:12,522 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-libcomps-0.1.11-5.el8.aarch64.rpm 00:55:12,525 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-libdnf-0.55.0-7.el8.aarch64.rpm 00:55:12,532 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-libs-3.6.8-37.el8.aarch64.rpm 00:55:12,582 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-libselinux-2.9-5.el8.aarch64.rp Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11820/12000 m 00:55:12,604 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-libsemanage-2.9-6.el8.aarch64.rpm 00:55:12,615 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/rsyslog-8.1911.0-7.el8_4.2.aarch64.rpm 00:55:12,670 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-libxml2-2.9.7-9.el8_4.2.aarch64.rpm 00:55:12,689 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm 00:55:12,695 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-nftables-0.9.3-18.el8.aarch64.rpm 00:55:12,699 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm 00:55:12,713 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-perf-4.18.0-305.17.1.el8_4.aarch64.rpm 00:55:13,135 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm 00:55:13,213 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm 00:55:13,224 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-policycoreutils-2.9-14.el8.noarch.rpm 00:55:13,253 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm 00:55:13,264 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm 00:55:13,270 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm 00:55:13,279 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-pyyaml-3.12-12.el8.aarch64.rpm 00:55:13,295 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm 00:55:13,307 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-rpm-4.14.3-14.el8_4.aarch64.rpm 00:55:13,321 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-schedutils-0.6-6.el8.aarch64.rpm 00:55:13,326 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-setools-4.3.0-2.el8.aarch64.rpm 00:55:13,370 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm 00:55:13,394 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm 00:55:13,401 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm 00:55:13,406 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm 00:55:13,412 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/authselect-compat-1.2.2-2.el8.aarch64.rpm 00:55:13,428 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-syspurpose-1.28.13-3.el8_4.aarch64.rpm 00:55:13,433 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm 00:55:13,448 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/quota-4.04-12.el8.aarch64.rpm 00:55:13,457 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/quota-nls-4.04-12.el8.noarch.rpm 00:55:13,464 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rdma-core-32.0-4.el8.aarch64.rpm 00:55:13,470 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/readline-7.0-10.el8.aarch64.rpm 00:55:13,474 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rng-tools-6.8-3.el8.aarch64.rpm 00:55:13,480 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm 00:55:13,484 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rpcbind-1.2.5-8.el8.aarch64.rpm 00:55:13,490 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rpm-4.14.3-14.el8_4.aarch64.rpm 00:55:13,493 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rpm-build-libs-4.14.3-14.el8_4.aarch64.rpm 00:55:13,508 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rpm-libs-4.14.3-14.el8_4.aarch64.rpm 00:55:13,532 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rpm-plugin-selinux-4.14.3-14.el8_4.aarch64.rpm 00:55:13,538 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-14.el8_4.aarch64.rpm 00:55:13,544 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/rsync-3.1.3-12.el8.aarch64.rpm 00:55:13,547 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sed-4.5-2.el8.aarch64.rpm 00:55:13,571 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/selinux-policy-3.14.3-67.el8_4.1.noarch.rpm 00:55:13,580 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/selinux-policy-targeted-3.14.3-67.el8_4.1.noarch.rpm 00:55:13,623 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/setup-2.12.2-6.el8.noarch.rpm 00:55:13,638 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sg3_utils-1.44-5.el8.aarch64.rpm 00:55:13,707 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sg3_utils-libs-1.44-5.el8.aarch64.rpm 00:55:13,717 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/shadow-utils-4.6-12.el8.aarch64.rpm 00:55:13,809 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/shared-mime-info-1.9-3.el8.aarch64.rpm 00:55:13,835 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/shim-aa64-15-15.el8_2.aarch64.rpm 00:55:13,868 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/slang-2.3.2-3.el8.aarch64.rpm 00:55:13,896 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/snappy-1.1.8-3.el8.aarch64.rpm 00:55:13,901 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sos-4.0-11.el8.noarch.rpm 00:55:13,914 DEBUG NetworkManager: [1631667313.9148] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 70.465 seconds 00:55:13,954 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/cairo-1.15.12-3.el8.aarch64.rpm 00:55:14,006 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/cairo-gobject-1.15.12-3.el8.aarch64.rpm 00:55:14,012 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sqlite-libs-3.26.0-13.el8.aarch64.rpm 00:55:14,055 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/squashfs-tools-4.3-20.el8.aarch64.rpm 00:55:14,070 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sssd-client-2.4.0-9.el8_4.2.aarch64.rpm 00:55:14,086 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sssd-common-2.4.0-9.el8_4.2.aarch64.rpm 00:55:14,208 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sssd-kcm-2.4.0-9.el8_4.2.aarch64.rpm 00:55:14,226 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sssd-nfs-idmap-2.4.0-9.el8_4.2.aarch64.rpm 00:55:14,236 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/cloud-init-20.3-10.el8_4.5.noarch.rpm 00:55:14,309 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm 00:55:14,315 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/sudo-1.8.29-7.el8.aarch64.rpm 00:55:14,378 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/systemd-239-45.el8_4.3.aarch64.rpm 00:55:14,623 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/systemd-libs-239-45.el8_4.3.aarch64.rpm 00:55:14,696 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/systemd-pam-239-45.el8_4.3.aarch64.rpm 00:55:14,793 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/systemd-udev-239-45.el8_4.3.aarch64.rpm 00:55:14,813 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/tar-1.30-5.el8.aarch64.rpm 00:55:14,874 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/teamd-1.31-2.el8.aarch64.rpm 00:55:14,885 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/timedatex-0.5-3.el8.aarch64.rpm 00:55:14,890 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/tpm2-tss-2.3.2-3.el8.aarch64.rpm 00:55:14,902 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/trousers-0.3.15-1.el8.aarch64.rpm 00:55:14,913 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/trousers-lib-0.3.15-1.el8.aarch64.rpm 00:55:14,919 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/tuned-2.15.0-2.el8_4.1.noarch.rpm 00:55:14,929 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/setroubleshoot-plugins-3.3.13-1.el8.noarch.rpm 00:55:14,943 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/setroubleshoot-server-3.3.24-3.el8.aarch64.rpm 00:55:14,958 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/tzdata-2021a-1.el8.noarch.rpm 00:55:14,976 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/util-linux-2.32.1-27.el8.aarch64.rpm 00:55:14,994 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/vim-minimal-8.0.1763-15.el8.aarch64.rpm 00:55:15,033 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/virt-what-1.18-9.el8_4.aarch64.rpm 00:55:15,039 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/which-2.21-12.el8.aarch64.rpm 00:55:15,046 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/nspr-4.25.0-2.el8_2.aarch64.rpm 00:55:15,058 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/xfsprogs-5.0.0-8.el8.aarch64.rpm 00:55:15,142 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/nss-3.53.1-17.el8_3.aarch64.rpm 00:55:15,177 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/nss-softokn-3.53.1-17.el8_3.aarch64.rpm 00:55:15,207 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/xz-5.2.4-3.el8.aarch64.rpm 00:55:15,217 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.aarch64.rpm 00:55:15,225 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/xz-libs-5.2.4-3.el8.aarch64.rpm 00:55:15,233 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/yum-4.4.2-11.el8.noarch.rpm 00:55:15,248 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/yum-utils-4.0.18-4.el8.noarch.rpm 00:55:15,253 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/nss-sysinit-3.53.1-17.el8_3.aarch64.rpm 00:55:15,258 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/BaseOS/aarch64/os/Packages/zlib-1.2.11-17.el8.aarch64.rpm 00:55:15,262 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/nss-util-3.53.1-17.el8_3.aarch64.rpm 00:55:15,270 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/oddjob-0.34.7-1.el8.aarch64.rpm 00:55:15,276 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/oddjob-mkhomedir-0.34.7-1.el8.aarch64.rpm 00:55:15,280 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/sscg-2.3.3-14.el8.aarch64.rpm 00:55:15,284 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm 00:55:15,288 INFO anaconda:librepo: Downloading: http://qa.centos.org/centos/8/AppStream/aarch64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm 00:55:18,411 INFO anaconda:packaging: Downloading packages finished. 00:55:18,413 INFO anaconda:anaconda: progress: Preparing transaction from installation source 00:55:18,512 INFO anaconda:dnf: Running transaction check 00:55:20,164 INFO anaconda:dnf: Transaction check succeeded. 00:55:20,165 INFO anaconda:dnf: Running transaction test 00:55:27,424 INFO anaconda:dnf: Transaction test succeeded. 00:55:27,433 INFO anaconda:dnf: Running transaction 00:55:27,436 DEBUG anaconda:dnf: RPMDB altered outside of DNF. Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11810/12000 00:55:35,857 INFO anaconda:packaging: Configuring (running scriptlet for): filesystem-3.8-3.el8.aarch64 1604417043 c5e8aa3dc1f3067ccfe85bf9e93bfbfe54434bb9224af414a02d73ff8c0cdf4c 00:55:36,446 INFO anaconda:packaging: Installed: libgcc-8.4.1-1.el8.aarch64 1602524519 334940e794fcfed61e3d249c11d6d785df0203f2ea33225e413a5a05921c4bfb 00:55:36,498 INFO anaconda:packaging: Configuring (running scriptlet for): libgcc-8.4.1-1.el8.aarch64 1602524519 334940e794fcfed61e3d249c11d6d785df0203f2ea33225e413a5a05921c4bfb 00:55:36,508 INFO anaconda:packaging: Installed: tzdata-2021a-1.el8.noarch 1611698248 44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839 00:55:39,379 INFO anaconda:packaging: Installed: fontpackages-filesystem-1.44-22.el8.noarch 1557581453 700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f 00:55:39,388 INFO anaconda:packaging: Installed: geolite2-country-20180605-1.el8.noarch 1557791307 67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0 00:55:39,645 INFO anaconda:packaging: Installed: geolite2-city-20180605-1.el8.noarch 1557791307 cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11800/12000 00:55:43,391 INFO anaconda:packaging: Installed: python3-setuptools-wheel-39.2.0-6.el8.noarch 1587953140 b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8 00:55:43,424 INFO anaconda:packaging: Installed: python3-pip-wheel-9.0.3-19.el8.noarch 1610615033 65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7 00:55:43,513 INFO anaconda:packaging: Installed: libreport-filesystem-2.9.5-15.el8.aarch64 1598291508 b77595c8e29dcd80ce2e45b8c3b02fbb4d6ad5ca024dc8e80f1339e771294e56 00:55:43,524 INFO anaconda:packaging: Installed: hwdata-0.314-8.8.el8.noarch 1613120613 0031452488b8975622580b0e1b501e77976eb606ea3e84a125628a698c1ff242 00:55:43,917 INFO anaconda:packaging: Installed: dnf-data-4.4.2-11.el8.noarch 1615491563 509728d8aead02aef1dd1caafee8ae42b75ff87481cc3b8e7d1f06e7c1058a48 00:55:43,955 INFO anaconda:packaging: Installed: dejavu-fonts-common-2.35-7.el8.noarch 1608016986 dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5 00:55:43,991 INFO anaconda:packaging: Installed: dejavu-sans-mono-fonts-2.35-7.el8.noarch 1608016986 a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb 00:55:44,091 INFO anaconda:packaging: Installed: abattis-cantarell-fonts-0.0.25-6.el8.noarch 1609181181 11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f 00:55:44,147 INFO anaconda:packaging: Installed: xkeyboard-config-2.28-1.el8.noarch 1586216137 a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67 00:55:45,424 INFO anaconda:packaging: Installed: libX11-common-1.6.8-4.el8.noarch 1604964252 5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2 00:55:45,933 INFO anaconda:packaging: Installed: quota-nls-1:4.04-12.el8.noarch 1611111782 ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2 00:55:45,966 INFO anaconda:packaging: Installed: publicsuffix-list-dafsa-20180723-1.el8.noarch 1557535917 65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2 00:55:45,983 INFO anaconda:packaging: Installed: ncurses-base-6.1-7.20180224.el8.noarch 1557535702 1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d 00:55:46,337 INFO anaconda:packaging: Installed: linux-firmware-20201218-102.git05789708.el8.noarch 1611853440 cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11790/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11780/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11770/12000 00:56:13,550 INFO anaconda:packaging: Installed: libssh-config-0.9.4-2.el8.noarch 1595350114 4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb 00:56:13,563 INFO anaconda:packaging: Installed: kbd-misc-2.0.4-10.el8.noarch 1595275356 ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f 00:56:15,907 INFO anaconda:packaging: Installed: kbd-legacy-2.0.4-10.el8.noarch 1595275356 a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83 00:56:16,631 INFO anaconda:packaging: Installed: firewalld-filesystem-0.8.2-7.el8_4.noarch 1624987687 6491de36a047aa3487ff340162c03de9915dc08952f77e1c931988cb29af2ffa 00:56:16,644 INFO anaconda:packaging: Installed: dhcp-common-12:4.3.6-44.0.1.el8.noarch 1610994845 7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d 00:56:16,684 INFO anaconda:packaging: Installed: dbus-common-1:1.12.8-12.el8_4.2.noarch 1622130562 6ce7684301bdc7839657679ff3e02c364923bca48c31ba939867e0822a542906 00:56:16,703 INFO anaconda:packaging: Installed: centos-gpg-keys-1:8-2.el8.noarch 1604968391 842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb 00:56:16,714 INFO anaconda:packaging: Installed: centos-linux-release-8.4-1.2105.el8.noarch 1622121624 aa8f875a815dfad5ea66401e233754a5ed77e82d5f2b2b91e6f49dc08b857365 00:56:16,757 INFO anaconda:packaging: Installed: centos-linux-repos-8-2.el8.noarch 1604968391 bfacb37de07b01b1161fd00263c6cb7cd9d733e4fdbc6767cf5b14dd8e11e789 00:56:16,783 INFO anaconda:packaging: Installed: setup-2.12.2-6.el8.noarch 1589520015 9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f 00:56:16,853 INFO anaconda:packaging: Configuring (running scriptlet for): setup-2.12.2-6.el8.noarch 1589520015 9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f 00:56:16,888 INFO anaconda:packaging: Installed: filesystem-3.8-3.el8.aarch64 1604417043 c5e8aa3dc1f3067ccfe85bf9e93bfbfe54434bb9224af414a02d73ff8c0cdf4c 00:56:18,612 INFO anaconda:packaging: Installed: efi-filesystem-3-3.el8.noarch 1605562930 d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb 00:56:18,623 INFO anaconda:packaging: Installed: basesystem-11-5.el8.noarch 1557533944 48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68 00:56:18,627 INFO anaconda:packaging: Installed: pcre2-10.32-2.el8.aarch64 1592282612 3a386eca4550def1fef05213ddc8fe082e589a2fe2898f634265fbe8fe828296 00:56:18,696 INFO anaconda:packaging: Installed: libselinux-2.9-5.el8.aarch64 1603743587 9474fe348bd9e3a7a6ffe7813538e979e80ddb970b074e4e79bd122b4ece8b64 00:56:18,727 INFO anaconda:packaging: Installed: ncurses-libs-6.1-7.20180224.el8.aarch64 1557535702 4d62bee2b38b7ae79937139f3e246ddefd184da953a70263d633f770d30b60c3 00:56:18,854 INFO anaconda:packaging: Installed: glibc-all-langpacks-2.28-151.el8.aarch64 1615497081 81bddadd1b3ebd1dbb01bd75a80897dc53733a80440103500524bb75c2c3f5d8 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11760/12000 00:56:24,445 DEBUG NetworkManager: [1631667384.4448] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 146.786 seconds 00:56:28,874 INFO anaconda:packaging: Installed: glibc-common-2.28-151.el8.aarch64 1615497081 cb9d61ff598d6197b1cf93458319d64f7ebf60029ee9b64e77636cf739de41d9 00:56:29,525 INFO anaconda:packaging: Configuring (running scriptlet for): glibc-2.28-151.el8.aarch64 1615497081 c40968781efeae3964a9ae675dcf834e09a1b6f92060e8184964125accbee6ae 00:56:29,527 INFO anaconda:packaging: Installed: glibc-2.28-151.el8.aarch64 1615497081 c40968781efeae3964a9ae675dcf834e09a1b6f92060e8184964125accbee6ae Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11750/12000 00:56:31,942 INFO anaconda:packaging: Configuring (running scriptlet for): glibc-2.28-151.el8.aarch64 1615497081 c40968781efeae3964a9ae675dcf834e09a1b6f92060e8184964125accbee6ae 00:56:31,987 INFO anaconda:packaging: Installed: bash-4.4.20-1.el8_4.aarch64 1622128538 c54e1e16d2d363a7dfdb0d4bb57bc9c40f92662382453cfebcea88551be717d0 00:56:32,575 INFO anaconda:packaging: Configuring (running scriptlet for): bash-4.4.20-1.el8_4.aarch64 1622128538 c54e1e16d2d363a7dfdb0d4bb57bc9c40f92662382453cfebcea88551be717d0 00:56:32,578 INFO anaconda:packaging: Installed: libsepol-2.9-2.el8.aarch64 1610439864 fa227d42012eb38ff357aa85387312a5a189fa143519b39d499dc9cf80896abb 00:56:32,638 INFO anaconda:packaging: Configuring (running scriptlet for): libsepol-2.9-2.el8.aarch64 1610439864 fa227d42012eb38ff357aa85387312a5a189fa143519b39d499dc9cf80896abb 00:56:32,672 INFO anaconda:packaging: Installed: zlib-1.2.11-17.el8.aarch64 1604007244 19223c1996366de6f38c38f5d0163368fbff9c29149bb925ffe8d2eba79b239c 00:56:32,706 INFO anaconda:packaging: Installed: xz-libs-5.2.4-3.el8.aarch64 1557536539 8f141db26834b1ec60028790b130d00b14b7fda256db0df1e51b7ba8d3d40c7b 00:56:32,731 INFO anaconda:packaging: Installed: popt-1.18-1.el8.aarch64 1611040244 2596d6cba62bf9594e4fbb07df31e2459eb6fca8e479fd0be2b32c7561e9ad95 00:56:32,829 INFO anaconda:packaging: Installed: libcom_err-1.45.6-1.el8.aarch64 1595015162 6d7b7f9e867b5e3c019a370dfce36706eecb42ed71fe9ac703249285adf4e58b 00:56:32,849 INFO anaconda:packaging: Configuring (running scriptlet for): libcom_err-1.45.6-1.el8.aarch64 1595015162 6d7b7f9e867b5e3c019a370dfce36706eecb42ed71fe9ac703249285adf4e58b 00:56:32,869 INFO anaconda:packaging: Installed: libcap-2.26-4.el8.aarch64 1592260145 dae95e7b55eda5e7dd4cf016e129a88205de730796061e763fafda2876e8c196 00:56:32,927 INFO anaconda:packaging: Installed: libuuid-2.32.1-27.el8.aarch64 1611212711 83ae9139d0c1113285841b8f72d9593d295cba2c5bbfe65380146cd2af9f45ce 00:56:32,949 INFO anaconda:packaging: Configuring (running scriptlet for): libuuid-2.32.1-27.el8.aarch64 1611212711 83ae9139d0c1113285841b8f72d9593d295cba2c5bbfe65380146cd2af9f45ce 00:56:32,969 INFO anaconda:packaging: Installed: bzip2-libs-1.0.6-26.el8.aarch64 1557534038 a4451cae0e8a3307228ed8ac7dc9bab7de77fcbf2004141daa7f986f5dc9b381 00:56:32,988 INFO anaconda:packaging: Installed: libxml2-2.9.7-9.el8_4.2.aarch64 1624987190 97bde603d98f25ba5c39972734de86c106c73384f9584e8aa79ab22ed8858684 00:56:33,143 INFO anaconda:packaging: Installed: info-6.5-6.el8.aarch64 1587693166 187a1fbb7e2992dfa777c7ca5c2f7369ecb85e4be4a483e6c0c6036e02bacf95 00:56:33,203 INFO anaconda:packaging: Installed: libgpg-error-1.31-1.el8.aarch64 1557534857 b953729a0a2be24749aeee9f00853fdc3227737971cf052a999a37ac36387cd9 00:56:33,327 INFO anaconda:packaging: Installed: libstdc++-8.4.1-1.el8.aarch64 1602524519 4c2721eb67d8ce9a71b10a8a2cf82fdc6ee1f3663b8b65eb6128bde4b2df9740 00:56:33,467 INFO anaconda:packaging: Configuring (running scriptlet for): libstdc++-8.4.1-1.el8.aarch64 1602524519 4c2721eb67d8ce9a71b10a8a2cf82fdc6ee1f3663b8b65eb6128bde4b2df9740 00:56:33,488 INFO anaconda:packaging: Installed: elfutils-libelf-0.182-3.el8.aarch64 1608663614 1d87a1b4c2644e3c495f45b6adc8b94e132f462e3229f4084886406bba9e9cfa 00:56:33,562 INFO anaconda:packaging: Installed: sqlite-libs-3.26.0-13.el8.aarch64 1607019474 3052778c1f7282001f04bf8221dc387203e9d8bdfc51700b0c3a9e801618bbf8 00:56:33,663 INFO anaconda:packaging: Installed: libxcrypt-4.1.1-4.el8.aarch64 1557535351 2221fb6f38fb36025c3283afe04e009bb1cc688144e71c5a9edc6717f22012c0 00:56:33,704 INFO anaconda:packaging: Installed: expat-2.2.5-4.el8.aarch64 1589595238 16356a5f29d0b191e84e37c92f9b6a3cd2ef683c84dd37c065f3461ad5abef03 00:56:33,745 INFO anaconda:packaging: Installed: readline-7.0-10.el8.aarch64 1557535996 ef74f2c65ed0e38dd021177d6e59fcdf7fb8de8929b7544b7a6f0709eff6562c 00:56:33,799 INFO anaconda:packaging: Configuring (running scriptlet for): readline-7.0-10.el8.aarch64 1557535996 ef74f2c65ed0e38dd021177d6e59fcdf7fb8de8929b7544b7a6f0709eff6562c 00:56:33,836 INFO anaconda:packaging: Installed: libzstd-1.4.4-1.el8.aarch64 1592405039 b560a8a185100a7c80e6c32f69ba65ce17004156f7218cf183249b15c13295cc 00:56:33,894 INFO anaconda:packaging: Installed: chkconfig-1.13-2.el8.aarch64 1587954848 5a6844f54e6d9d5afe0e273736fa859d6ffc2aa89db879e92c6b04ed90d78df5 00:56:34,128 INFO anaconda:packaging: Installed: libcap-ng-0.7.9-5.el8.aarch64 1586216615 0a3c264fa00b82fda25a2c4bee6ce9012d7ae76f6c170d857946bb60570e389a 00:56:34,146 INFO anaconda:packaging: Installed: audit-libs-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 11811c556a3bdc9c572c0ab67d3106bd1de3406c9d471de03e028f041b5785c3 00:56:34,185 INFO anaconda:packaging: Installed: gmp-1:6.1.2-10.el8.aarch64 1573232447 8d407f8ad961169fca2ee5e22e824cbc2d2b5fedca9701896cc492d4cb788603 00:56:34,283 INFO anaconda:packaging: Configuring (running scriptlet for): gmp-1:6.1.2-10.el8.aarch64 1573232447 8d407f8ad961169fca2ee5e22e824cbc2d2b5fedca9701896cc492d4cb788603 00:56:34,302 INFO anaconda:packaging: Installed: libmnl-1.0.4-6.el8.aarch64 1557584713 fbe4f2cb2660ebe3cb90a73c7dfbd978059af138356e46c9a93049761c0467ef 00:56:34,326 INFO anaconda:packaging: Configuring (running scriptlet for): libmnl-1.0.4-6.el8.aarch64 1557584713 fbe4f2cb2660ebe3cb90a73c7dfbd978059af138356e46c9a93049761c0467ef 00:56:34,345 INFO anaconda:packaging: Installed: nspr-4.25.0-2.el8_2.aarch64 1596749224 7e2dedab30c1a87a8e23ae1693245fe0ba742d63b7a750c23a0b9946b303856c 00:56:34,392 INFO anaconda:packaging: Configuring (running scriptlet for): nspr-4.25.0-2.el8_2.aarch64 1596749224 7e2dedab30c1a87a8e23ae1693245fe0ba742d63b7a750c23a0b9946b303856c 00:56:34,411 INFO anaconda:packaging: Installed: nss-util-3.53.1-17.el8_3.aarch64 1608262942 8fa5669ab6d0711c49fc3e91646c53655e691a0e5862a1551ade34a655eacb50 00:56:34,438 INFO anaconda:packaging: Installed: libgcrypt-1.8.5-4.el8.aarch64 1595269724 38cc7c6b354c4fa166b24fe641a70233ad9b8b650f8339634f0c3a6baf5b32fc 00:56:34,532 INFO anaconda:packaging: Configuring (running scriptlet for): libgcrypt-1.8.5-4.el8.aarch64 1595269724 38cc7c6b354c4fa166b24fe641a70233ad9b8b650f8339634f0c3a6baf5b32fc 00:56:34,551 INFO anaconda:packaging: Installed: keyutils-libs-1.5.10-6.el8.aarch64 1557534531 54e61e873e45000433bec3387112f7ead3c4cb9731045caa8033ff5b14ee46b1 00:56:34,571 INFO anaconda:packaging: Installed: libffi-3.1-22.el8.aarch64 1592240601 9d7e9a47e16b3edd1f9ce69c44bf485e8498cb6ced68e354b4c24936cd015bb5 00:56:34,591 INFO anaconda:packaging: Installed: p11-kit-0.23.22-1.el8.aarch64 1610440318 cfee10a5ca5613896a4e84716aa393094fd97c09f2c585c9aa921e6063783867 00:56:34,870 INFO anaconda:packaging: Installed: libnl3-3.5.0-1.el8.aarch64 1586219375 851a9cebfb68b8c301231b1121f573311fbb165ace0f4b1a599fa42f80113df9 00:56:34,974 INFO anaconda:packaging: Configuring (running scriptlet for): libnl3-3.5.0-1.el8.aarch64 1586219375 851a9cebfb68b8c301231b1121f573311fbb165ace0f4b1a599fa42f80113df9 00:56:34,995 INFO anaconda:packaging: Installed: libtalloc-2.3.1-2.el8.aarch64 1594938760 0029a34ac546a1104f0d3ec58bea955f19c26daa6f73ccfe16c659badf2611cf 00:56:35,012 INFO anaconda:packaging: Installed: lua-libs-5.3.4-11.el8.aarch64 1573235119 914f1d8cf5385ec874ac88b00f5ae99e77be48aa6c7157a2e0c1c5355c415c94 00:56:35,042 INFO anaconda:packaging: Installed: libunistring-0.9.9-3.el8.aarch64 1557535383 707429ccb3223628d55097a162cd0d3de1bd00b48800677c1099931b0f019e80 00:56:35,159 INFO anaconda:packaging: Installed: libidn2-2.2.0-1.el8.aarch64 1573233666 b62589101a60a365ef34447cae78f62e6dba560d403dc56c87036709ea00ad88 00:56:35,256 INFO anaconda:packaging: Installed: libattr-2.4.48-3.el8.aarch64 1557533888 6a6db7eab6e53dccc54116d2ddf86b02db4cff332a58b868f7ba778a99666c58 00:56:35,269 INFO anaconda:packaging: Installed: libacl-2.2.53-1.el8.aarch64 1557533888 c4cfed85e5a0db903ad134b4327b1714e5453fcf5c4348ec93ab344860a970ef 00:56:35,282 INFO anaconda:packaging: Installed: sed-4.5-2.el8.aarch64 1592252158 f89de80c1d2c1c8ad2b1bb92055b1a4c7dca0ca0ffb6419b76e13617f1fe827e 00:56:35,445 INFO anaconda:packaging: Configuring (running scriptlet for): sed-4.5-2.el8.aarch64 1592252158 f89de80c1d2c1c8ad2b1bb92055b1a4c7dca0ca0ffb6419b76e13617f1fe827e 00:56:35,469 INFO anaconda:packaging: Installed: pcre-8.42-4.el8.aarch64 1557587721 a8053346f758919a8e6f177d767d6372352b2b37e1c86195ab87a891ce55e692 00:56:35,527 INFO anaconda:packaging: Installed: grep-3.1-6.el8.aarch64 1557534549 7ffd6e95b0554466e97346b2f41fb5279aedcb29ae07828f63d06a8dedd7cd51 00:56:35,708 INFO anaconda:packaging: Configuring (running scriptlet for): grep-3.1-6.el8.aarch64 1557534549 7ffd6e95b0554466e97346b2f41fb5279aedcb29ae07828f63d06a8dedd7cd51 00:56:35,731 INFO anaconda:packaging: Installed: libsemanage-2.9-6.el8.aarch64 1612389818 ccb929460b2e9f3fc477b5f040b8e9de1faab4492e696aac4d4eafd4d82b7ba3 00:56:35,773 INFO anaconda:packaging: Installed: libassuan-2.5.1-3.el8.aarch64 1557534744 cf4d477f18ecd97470d1bc50c0e442de6f7d5db74829221d0f9b1ddfc9a71dab 00:56:35,817 INFO anaconda:packaging: Installed: findutils-1:4.6.0-20.el8.aarch64 1557534393 985479064966d05aa82010ed5b8905942e47e2bebb919c9c1bd004a28addad1d 00:56:36,037 INFO anaconda:packaging: Configuring (running scriptlet for): findutils-1:4.6.0-20.el8.aarch64 1557534393 985479064966d05aa82010ed5b8905942e47e2bebb919c9c1bd004a28addad1d 00:56:36,058 INFO anaconda:packaging: Installed: file-libs-5.33-16.el8_3.1.aarch64 1617806779 740106a98f26f25693c9ec1966bb4315a26f05e01bdee23aa0b35d36139b57b8 00:56:36,275 INFO anaconda:packaging: Installed: libpng-2:1.6.34-5.el8.aarch64 1557585701 d7bd4e7a7ff4424266c0f6030bf444de0bea88d0540ff4caf4f7f6c2bac175f6 00:56:36,307 INFO anaconda:packaging: Installed: freetype-2.9.1-4.el8_3.1.aarch64 1605310445 6eaf1961a46202364f9ebe9da1c24ba2e929ae67c452aa4f0aa5e71bfc2a2a51 00:56:36,388 INFO anaconda:packaging: Installed: grub2-common-1:2.02-99.el8.noarch 1614719007 4a08d5264e865548e65d31886c91b659b33a2c2ba39fd115b00af3ea0bc91a83 00:56:36,720 INFO anaconda:packaging: Installed: jansson-2.11-3.el8.aarch64 1557583287 b8bd21e036c68bb8fbb9f21e6b5f6998fc3558f55a4b902d5d85664d5929134a 00:56:36,741 INFO anaconda:packaging: Installed: json-c-0.13.1-0.4.el8.aarch64 1612422606 750b606ae2bc707e7452a8816c57374d3f7e4b59ad9e209e247c23b11d1b6b21 00:56:36,760 INFO anaconda:packaging: Installed: libbasicobjects-0.1.1-39.el8.aarch64 1557580950 fb0c3ae20294a9f49668a4152b6906f399e8856246c0c29458fc682e22c1edbe 00:56:36,780 INFO anaconda:packaging: Installed: libcollection-0.7.0-39.el8.aarch64 1557580950 97e11df69bf2ed6eeb3c93b04d5276216bee58543b5e7ef149d7d82d186f67b5 00:56:36,802 INFO anaconda:packaging: Installed: libref_array-0.1.5-39.el8.aarch64 1557580950 73276d31fe59e80654a4cfbda40edf01a8cfdeffbdfc1a5b4a5ff5fdb898dfca 00:56:36,822 INFO anaconda:packaging: Installed: libsmartcols-2.32.1-27.el8.aarch64 1611212711 b986299cff4bc6e8418ef9e9a043a32842d2063adf25cea74d25898b48faf788 00:56:36,858 INFO anaconda:packaging: Configuring (running scriptlet for): libsmartcols-2.32.1-27.el8.aarch64 1611212711 b986299cff4bc6e8418ef9e9a043a32842d2063adf25cea74d25898b48faf788 00:56:36,883 INFO anaconda:packaging: Installed: lz4-libs-1.8.3-3.el8_4.aarch64 1624987292 db9075646bed11355faf8b425c655a40a55436715a9f401f60e205ddd66edfeb 00:56:36,906 INFO anaconda:packaging: Installed: libtevent-0.10.2-2.el8.aarch64 1594939778 587aaa3208d8682fca63899ef19164600e43260f8509db60fd21fce03a0877a4 00:56:36,923 INFO anaconda:packaging: Installed: efivar-libs-37-4.el8.aarch64 1604421490 eeb2ec7fc8fc5a2f69220d4a9bc43e9cfe24ef7f5cdb041f40db3dab23cb87c9 00:56:36,957 INFO anaconda:packaging: Configuring (running scriptlet for): efivar-libs-37-4.el8.aarch64 1604421490 eeb2ec7fc8fc5a2f69220d4a9bc43e9cfe24ef7f5cdb041f40db3dab23cb87c9 00:56:36,979 INFO anaconda:packaging: Installed: gdbm-libs-1:1.18-1.el8.aarch64 1557534276 a7d04ae40ad91ba0ea93e4971a35585638f6adf8dbe1ed4849f643b6b64a5871 00:56:37,006 INFO anaconda:packaging: Installed: libtdb-1.4.3-1.el8.aarch64 1594938956 3bf6931172acbde40c8ab685946e89075175f443ec27c220370445cdba5b619f 00:56:37,028 INFO anaconda:packaging: Configuring (running scriptlet for): libtdb-1.4.3-1.el8.aarch64 1594938956 3bf6931172acbde40c8ab685946e89075175f443ec27c220370445cdba5b619f 00:56:37,047 INFO anaconda:packaging: Installed: libverto-0.3.0-5.el8.aarch64 1557535347 446f45706d78e80d4057d9d55dda32ce1cb823b2ca4dfe50f0ca5b515238130d 00:56:37,074 INFO anaconda:packaging: Installed: which-2.21-12.el8.aarch64 1586218225 1b18f97ab111e6de0b29e610094a16440c2b6e24a8c47460c4353efc02656bbb 00:56:37,109 INFO anaconda:packaging: Installed: file-5.33-16.el8_3.1.aarch64 1617806779 66316b7ae0814bf9cf41216a9b784f144c6a8379481ac7e68480ab8151a99905 00:56:37,136 INFO anaconda:packaging: Installed: xz-5.2.4-3.el8.aarch64 1557536539 b9a899e715019e7002600005bcb2a9dd7b089eaef9c55c3764c326d745ad681f 00:56:37,244 INFO anaconda:packaging: Installed: libnl3-cli-3.5.0-1.el8.aarch64 1586219375 47822e5b7a8886e09ac50e1143738976ec2ca431f675834d5cf1dd5031316dbc 00:56:37,576 INFO anaconda:packaging: Configuring (running scriptlet for): libnl3-cli-3.5.0-1.el8.aarch64 1586219375 47822e5b7a8886e09ac50e1143738976ec2ca431f675834d5cf1dd5031316dbc 00:56:37,596 INFO anaconda:packaging: Installed: ethtool-2:5.8-5.el8.aarch64 1605553121 8d1710650057c3d0c3c04c777e3d608fc68faee434adb1a8c0ab1c43e1156d3c 00:56:37,662 INFO anaconda:packaging: Installed: libnftnl-1.1.5-4.el8.aarch64 1587696714 c85fbf0045e810a8a7df257799a82e32fee141db8119e9f1eb7abdb96553127f 00:56:37,690 INFO anaconda:packaging: Configuring (running scriptlet for): libnftnl-1.1.5-4.el8.aarch64 1587696714 c85fbf0045e810a8a7df257799a82e32fee141db8119e9f1eb7abdb96553127f 00:56:37,711 INFO anaconda:packaging: Installed: mpfr-3.1.6-1.el8.aarch64 1557535575 97a998a1b93c21bf070f9a9a1dbb525234b00fccedfe67de8967cd9ec7132eb1 00:56:37,784 INFO anaconda:packaging: Configuring (running scriptlet for): mpfr-3.1.6-1.el8.aarch64 1557535575 97a998a1b93c21bf070f9a9a1dbb525234b00fccedfe67de8967cd9ec7132eb1 00:56:37,803 INFO anaconda:packaging: Installed: nettle-3.4.1-4.el8_3.aarch64 1618436289 cb15a94a261477946cdb55373ca0e6b0666bf82fc68d4684e7f4a8c496882dd2 00:56:37,890 INFO anaconda:packaging: Configuring (running scriptlet for): nettle-3.4.1-4.el8_3.aarch64 1618436289 cb15a94a261477946cdb55373ca0e6b0666bf82fc68d4684e7f4a8c496882dd2 00:56:37,926 INFO anaconda:packaging: Installed: gdisk-1.0.3-6.el8.aarch64 1557581795 2d727c662854847b3bd6c68b15609acc29195a9778ad81307a8e1d857006ae60 00:56:38,008 INFO anaconda:packaging: Installed: libksba-1.3.5-7.el8.aarch64 1557534860 268145276c48fbb98f90edc9a4379eb30ddc8a9a14d93f5970a7c89281ac7e14 00:56:38,064 INFO anaconda:packaging: Installed: diffutils-3.6-6.el8.aarch64 1586218262 8cbebc0fa970ceca4f479ee292eaad155084987be2cf7f97bbafe4a529319c98 00:56:38,243 INFO anaconda:packaging: Configuring (running scriptlet for): diffutils-3.6-6.el8.aarch64 1586218262 8cbebc0fa970ceca4f479ee292eaad155084987be2cf7f97bbafe4a529319c98 00:56:38,267 INFO anaconda:packaging: Installed: libgomp-8.4.1-1.el8.aarch64 1602524519 4215904c76e9d7d15f4cea0cac396c4b64956f82b058a8c9ee264046b7bb6f39 00:56:38,307 INFO anaconda:packaging: Configuring (running scriptlet for): libgomp-8.4.1-1.el8.aarch64 1602524519 4215904c76e9d7d15f4cea0cac396c4b64956f82b058a8c9ee264046b7bb6f39 00:56:38,341 INFO anaconda:packaging: Installed: e2fsprogs-libs-1.45.6-1.el8.aarch64 1595015162 47524e50b7ed9647c1d3e290d99952b4d25623c812afdcf9fd92295b1a283ee5 00:56:38,399 INFO anaconda:packaging: Configuring (running scriptlet for): e2fsprogs-libs-1.45.6-1.el8.aarch64 1595015162 47524e50b7ed9647c1d3e290d99952b4d25623c812afdcf9fd92295b1a283ee5 00:56:38,419 INFO anaconda:packaging: Installed: dmidecode-1:3.2-8.el8.aarch64 1608016943 df1f8c486ab63f496884fc8b97c885e1f6b08ce281c05f0409b90b97e44fbb4f 00:56:38,452 INFO anaconda:packaging: Installed: libdhash-0.5.0-39.el8.aarch64 1557580950 84af0a7d5811252b51025e77aba787704793106b1c4c3fc6f281bafe72d9a586 00:56:38,472 INFO anaconda:packaging: Installed: libedit-3.1-23.20170329cvs.el8.aarch64 1557584367 ed1bf4961e5dd6e7c813655a18059f9a854d6512a6f7b3ed3077c280e8d6c13c 00:56:38,509 INFO anaconda:packaging: Installed: libnfnetlink-1.0.1-13.el8.aarch64 1557585535 8422fbc84108abc9a89fe98cef9cd18ad1788b4dc6a9ec0bba1836b772fcaeda 00:56:38,535 INFO anaconda:packaging: Configuring (running scriptlet for): libnfnetlink-1.0.1-13.el8.aarch64 1557585535 8422fbc84108abc9a89fe98cef9cd18ad1788b4dc6a9ec0bba1836b772fcaeda 00:56:38,556 INFO anaconda:packaging: Installed: libpath_utils-0.2.1-39.el8.aarch64 1557580950 6cc569defd57bfde537b5a727ae2413a72e7ed8584be0df30b1613bbf8af1e0a 00:56:38,577 INFO anaconda:packaging: Installed: libini_config-1.3.1-39.el8.aarch64 1557580950 4156413385dce1692e46bc8bc42c74bc6b4f9748230bbd4a2134a17e69ea79d9 00:56:38,605 INFO anaconda:packaging: Installed: libseccomp-2.5.1-1.el8.aarch64 1613804837 0e6fcdf916490d8538044bf2dc77aa67a5d7d2c51a654d5eee6dca8f69b06ba8 00:56:38,639 INFO anaconda:packaging: Configuring (running scriptlet for): libseccomp-2.5.1-1.el8.aarch64 1613804837 0e6fcdf916490d8538044bf2dc77aa67a5d7d2c51a654d5eee6dca8f69b06ba8 00:56:38,661 INFO anaconda:packaging: Installed: libsss_idmap-2.4.0-9.el8_4.2.aarch64 1629124289 d4901d786454782c939dd8b709d796e34eb0357e7dc08b2b2a1c2719f53950d4 00:56:38,686 INFO anaconda:packaging: Configuring (running scriptlet for): libsss_idmap-2.4.0-9.el8_4.2.aarch64 1629124289 d4901d786454782c939dd8b709d796e34eb0357e7dc08b2b2a1c2719f53950d4 00:56:38,706 INFO anaconda:packaging: Installed: libtasn1-4.13-3.el8.aarch64 1557535255 3401ccfb7fd08c12578b6257b4dac7e94ba5f4cd70fc6a234fd90bb99d1bb108 00:56:38,748 INFO anaconda:packaging: Configuring (running scriptlet for): libtasn1-4.13-3.el8.aarch64 1557535255 3401ccfb7fd08c12578b6257b4dac7e94ba5f4cd70fc6a234fd90bb99d1bb108 00:56:38,768 INFO anaconda:packaging: Installed: p11-kit-trust-0.23.22-1.el8.aarch64 1610440318 3fc181bf0f076fef283fdb63d36e7b84930c8822fa67dff6e1ccea9987d6dbf3 00:56:38,815 INFO anaconda:packaging: Configuring (running scriptlet for): p11-kit-trust-0.23.22-1.el8.aarch64 1610440318 3fc181bf0f076fef283fdb63d36e7b84930c8822fa67dff6e1ccea9987d6dbf3 00:56:38,835 INFO anaconda:packaging: Installed: libyaml-0.1.7-5.el8.aarch64 1557586308 30327c94b9729602f0b4dd73ff67edc2b7269af782182a2c02f44246ffe7f10f 00:56:38,860 INFO anaconda:packaging: Installed: lzo-2.08-14.el8.aarch64 1557586698 6809839757bd05082ca1b8d23eac617898eda3ce34844a0d31b0a030c8cc6653 00:56:38,890 INFO anaconda:packaging: Installed: numactl-libs-2.0.12-11.el8.aarch64 1589588457 316ba902f1e1ee768e86f956efd4f4cc30d9023d7797ec3a4cbfd727363ad274 00:56:38,907 INFO anaconda:packaging: Configuring (running scriptlet for): numactl-libs-2.0.12-11.el8.aarch64 1589588457 316ba902f1e1ee768e86f956efd4f4cc30d9023d7797ec3a4cbfd727363ad274 00:56:38,929 INFO anaconda:packaging: Installed: pciutils-libs-3.7.0-1.el8.aarch64 1606871367 ae037b9b513dd2ce6b4ecce6255a8fddf94367bc9c348ba45c5aefbfeff29201 00:56:38,952 INFO anaconda:packaging: Configuring (running scriptlet for): pciutils-libs-3.7.0-1.el8.aarch64 1606871367 ae037b9b513dd2ce6b4ecce6255a8fddf94367bc9c348ba45c5aefbfeff29201 00:56:38,972 INFO anaconda:packaging: Installed: psmisc-23.1-5.el8.aarch64 1595372379 e6852f9e715174c037c57ef9ee45a6318775968322c244185fc51f40a10dbdcc 00:56:39,110 INFO anaconda:packaging: Installed: pixman-0.38.4-1.el8.aarch64 1586219315 9886953d4bc5b03f26b5c3164ce5b5fd86e9f80cf6358b91dd00f870f86052fe 00:56:39,149 INFO anaconda:packaging: Installed: squashfs-tools-4.3-20.el8.aarch64 1615492303 086bed04556b2fdd44edc362de6c77c68302e7070d0bd52be1c77950de3992a0 00:56:39,213 INFO anaconda:packaging: Installed: libnetfilter_conntrack-1.0.6-5.el8.aarch64 1557585128 4e43b0f85746f74064b082fdf6914ba4e9fe386651b1c39aeaecc702b2a59fc0 00:56:39,240 INFO anaconda:packaging: Configuring (running scriptlet for): libnetfilter_conntrack-1.0.6-5.el8.aarch64 1557585128 4e43b0f85746f74064b082fdf6914ba4e9fe386651b1c39aeaecc702b2a59fc0 00:56:39,263 INFO anaconda:packaging: Installed: libbytesize-1.4-3.el8.aarch64 1586220614 a22ef4dc8fe6cb39b4d8d87eb2aa2378ae2868276c9dee632a3514788531c57b 00:56:39,520 INFO anaconda:packaging: Installed: libteam-1.31-2.el8.aarch64 1599579275 4f1d3ac69dc9ded1f121002a01aed7a69f526c0fd6313b6aa46267a16de5f675 00:56:39,549 INFO anaconda:packaging: Configuring (running scriptlet for): libteam-1.31-2.el8.aarch64 1599579275 4f1d3ac69dc9ded1f121002a01aed7a69f526c0fd6313b6aa46267a16de5f675 00:56:39,572 INFO anaconda:packaging: Installed: gdbm-1:1.18-1.el8.aarch64 1557534276 b7d0b4b922429354ffe7ddac90c8cd448229571b8d8e4c342110edadfe809f99 00:56:39,665 INFO anaconda:packaging: Installed: groff-base-1.22.3-18.el8.aarch64 1559058588 eb12a527155e0e3ef20e1815fd6395e85d9439a0a895b743e6429e09691e56a2 00:56:40,440 INFO anaconda:packaging: Installed: acl-2.2.53-1.el8.aarch64 1557533888 47c2cc5872174c548de1096dc5673ee91349209d89e0193a4793955d6865b3b1 00:56:40,756 INFO anaconda:packaging: Installed: vim-minimal-2:8.0.1763-15.el8.aarch64 1592495458 2b743f157f47b27a0528d53fd9ae3e4eb0553f4b8357d01d362dd1b0e4e87c06 00:56:40,867 INFO anaconda:packaging: Installed: libpsl-0.20.2-6.el8.aarch64 1592340389 176cbc82e2a94159d457a7444d05573636084c1900405450715df48ac3a822bd 00:56:40,887 INFO anaconda:packaging: Installed: keyutils-1.5.10-6.el8.aarch64 1557534531 edaaf208de0881eeebf3a2b3995c3c7c86bad3e78633c519dcec441753af9688 00:56:40,940 INFO anaconda:packaging: Installed: nss-softokn-freebl-3.53.1-17.el8_3.aarch64 1608262942 4399b61a0bb80158bbdff9fa45e5bf47e7123a1eebebe355561a1a7abb1a7281 00:56:41,020 INFO anaconda:packaging: Installed: nss-softokn-3.53.1-17.el8_3.aarch64 1608262942 aecd8758d772bc9f9ec257576ce2d55073e310f092912d6bf45d53257883cd3d 00:56:41,153 INFO anaconda:packaging: Installed: ipset-libs-7.1-1.el8.aarch64 1573232968 5a0a3ebbf94f1c49c9dab50c210e568ea3015db2fe4340652c9883ea249e898d 00:56:41,186 INFO anaconda:packaging: Configuring (running scriptlet for): ipset-libs-7.1-1.el8.aarch64 1573232968 5a0a3ebbf94f1c49c9dab50c210e568ea3015db2fe4340652c9883ea249e898d 00:56:41,215 INFO anaconda:packaging: Installed: ipset-7.1-1.el8.aarch64 1573232968 979928665e57d4a33024ae2098579d051caeaf505e6e0bf20006647d74956581 00:56:41,239 INFO anaconda:packaging: Installed: libcomps-0.1.11-5.el8.aarch64 1612422297 46fddbe0b46149f1f6099d555f91d47c952f68dbe6f803f60c3dac88fe66cbbb 00:56:41,268 INFO anaconda:packaging: Installed: libmetalink-0.1.3-7.el8.aarch64 1557534971 b86423694dd6d12a0b608760046ef18f6ee97f96cb8ad661ace419a45525e200 00:56:41,288 INFO anaconda:packaging: Installed: libmodman-2.0.1-17.el8.aarch64 1557585031 f2628a19999f78a3ec1a796d66c8cd45f58cfb670850ecb7790528279f410677 00:56:41,312 INFO anaconda:packaging: Configuring (running scriptlet for): libmodman-2.0.1-17.el8.aarch64 1557585031 f2628a19999f78a3ec1a796d66c8cd45f58cfb670850ecb7790528279f410677 00:56:41,336 INFO anaconda:packaging: Installed: libproxy-0.4.15-5.2.el8.aarch64 1557585849 47df802c2647563bac65f260b56e9385c53062dbdc3f5c1f23a9144ca5902d61 00:56:41,372 INFO anaconda:packaging: Configuring (running scriptlet for): libproxy-0.4.15-5.2.el8.aarch64 1557585849 47df802c2647563bac65f260b56e9385c53062dbdc3f5c1f23a9144ca5902d61 00:56:41,399 INFO anaconda:packaging: Installed: mozjs60-60.9.0-4.el8.aarch64 1587753322 8a1da341e022af37e9861bb2e8f2b045ad0b36cd783547c0dee08b8097e73c80 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11740/12000 00:56:42,625 INFO anaconda:packaging: Installed: snappy-1.1.8-3.el8.aarch64 1598294912 4731985b22fc7b733ff89be6c1423396f27c94a78bb09fc89be5c2200bee893c 00:56:42,651 INFO anaconda:packaging: Installed: coreutils-common-8.30-8.el8.aarch64 1587954500 6327a50f92274316adcfc4fc5c5a57bf62eba7fb6997952a31354f82acad679d 00:56:43,504 INFO anaconda:packaging: Configuring (running scriptlet for): coreutils-common-8.30-8.el8.aarch64 1587954500 6327a50f92274316adcfc4fc5c5a57bf62eba7fb6997952a31354f82acad679d 00:56:43,541 INFO anaconda:packaging: Installed: bzip2-1.0.6-26.el8.aarch64 1557534038 b18d9f23161d7d5de93fa72a56c645762deefbc0f3e5a095bb8d9e3cf09521e6 00:56:43,599 INFO anaconda:packaging: Installed: bubblewrap-0.4.0-1.el8.aarch64 1587693427 a445b27920d4bf9e6944a289c3e9cf69cb4396fe5f7f3383aab7dbe53ad6b39f 00:56:43,625 INFO anaconda:packaging: Installed: libss-1.45.6-1.el8.aarch64 1595015162 cd47553428cea964ec585a18b39f03f7baa9bc49fe7f32c6b5f4a645212c762c 00:56:43,646 INFO anaconda:packaging: Configuring (running scriptlet for): libss-1.45.6-1.el8.aarch64 1595015162 cd47553428cea964ec585a18b39f03f7baa9bc49fe7f32c6b5f4a645212c762c 00:56:43,670 INFO anaconda:packaging: Installed: pigz-2.4-4.el8.aarch64 1586220729 bf8bbf6b7fab0e19535a3d7e7bad6a62971b41e7a231683cb42e534355a831b7 00:56:43,701 INFO anaconda:packaging: Installed: libselinux-utils-2.9-5.el8.aarch64 1603743587 e4613455147d283b222fcff5ef0f85b3a1a323893ed884db8950e51936e97c52 00:56:44,052 INFO anaconda:packaging: Installed: kernel-tools-libs-4.18.0-305.17.1.el8_4.aarch64 1631110505 f816d983940e0a7b743c6f0a03a2705799ee1c4890d71ae611f92d17c1cccb82 00:56:44,088 INFO anaconda:packaging: Configuring (running scriptlet for): kernel-tools-libs-4.18.0-305.17.1.el8_4.aarch64 1631110505 f816d983940e0a7b743c6f0a03a2705799ee1c4890d71ae611f92d17c1cccb82 00:56:44,119 INFO anaconda:packaging: Installed: less-530-1.el8.aarch64 1557583955 2057a073ae0bb0149a8093447fad2577f900577605576b3ca22b2af76e970c5f 00:56:44,188 INFO anaconda:packaging: Installed: brotli-1.0.6-3.el8.aarch64 1610440164 04133335e4b0fb04154b80c43e3e6143dcae27b6a3c11db384ec2ca56e6b3ae1 00:56:44,285 INFO anaconda:packaging: Installed: c-ares-1.13.0-5.el8.aarch64 1557580686 4ae071ebcf06cec6e4e7e49a50d83464cb1f1f1c72449a02ba1dfc820dbf67c5 00:56:44,323 INFO anaconda:packaging: Configuring (running scriptlet for): c-ares-1.13.0-5.el8.aarch64 1557580686 4ae071ebcf06cec6e4e7e49a50d83464cb1f1f1c72449a02ba1dfc820dbf67c5 00:56:44,346 INFO anaconda:packaging: Installed: checkpolicy-2.9-1.el8.aarch64 1573487380 01b89be34e48d345ba14a3856bba0d1ff94e79798b5f7529a6a0803b97adca15 00:56:44,455 INFO anaconda:packaging: Installed: cpio-2.12-10.el8.aarch64 1611306630 15ecc3b70281c46dc6c9ebaaf3bf25941440088dc26664417121a090287c57de 00:56:44,597 INFO anaconda:packaging: Installed: dosfstools-4.1-6.el8.aarch64 1557581141 e57a218c73df587fb441a22bd4e5f97afb8cbe8812707b26b6dd658910e52dcc 00:56:44,674 INFO anaconda:packaging: Installed: fuse-libs-2.9.7-12.el8.aarch64 1557581642 0431ac0a9ad2ae9d657a66e9a5dc9326b232732e9967088990c09e826c6f3071 00:56:44,715 INFO anaconda:packaging: Configuring (running scriptlet for): fuse-libs-2.9.7-12.el8.aarch64 1557581642 0431ac0a9ad2ae9d657a66e9a5dc9326b232732e9967088990c09e826c6f3071 00:56:44,739 INFO anaconda:packaging: Installed: hardlink-1:1.3-6.el8.aarch64 1557582435 0d6de2febd0e0ef4fa74eb8f3cffa1b194118e4b7bfe4d2010bf4903ce2c4096 00:56:44,757 INFO anaconda:packaging: Installed: hdparm-9.54-3.el8.aarch64 1605562670 a304b4e5bbb4df945bae85a5d7201e45ee939b8a6539e32506c2d74ce7bd595a 00:56:44,794 INFO anaconda:packaging: Installed: libdaemon-0.14-15.el8.aarch64 1557584227 752995ca0b46a767a114cd55cc620a3188d68d35747b3e0dc995fb0b8d9dc241 00:56:44,815 INFO anaconda:packaging: Installed: libndp-1.7-5.el8.aarch64 1615818159 7ba563ae42b9056891bdaa04734cbe4ed5b378afae57cc0897ed48bf31a5f9e7 00:56:44,845 INFO anaconda:packaging: Configuring (running scriptlet for): libndp-1.7-5.el8.aarch64 1615818159 7ba563ae42b9056891bdaa04734cbe4ed5b378afae57cc0897ed48bf31a5f9e7 00:56:44,869 INFO anaconda:packaging: Installed: libnghttp2-1.33.0-3.el8_2.1.aarch64 1593182462 23e9ff009c2316652c3bcd96a8b69b5bc26f2acd46214f652a7ce26a572cbabb 00:56:44,895 INFO anaconda:packaging: Installed: libpipeline-1.5.0-2.el8.aarch64 1557585743 f5cf9c5fbec4050a8314d47bf7005504c324ca653b6ed3576859d5ecf880b5be 00:56:44,929 INFO anaconda:packaging: Configuring (running scriptlet for): libpipeline-1.5.0-2.el8.aarch64 1557585743 f5cf9c5fbec4050a8314d47bf7005504c324ca653b6ed3576859d5ecf880b5be 00:56:44,951 INFO anaconda:packaging: Installed: libsigsegv-2.11-5.el8.aarch64 1557535163 b377f4e8bcdc750ed0be94f97bdbfbb12843c458fbc1d5d507f92ad04aaf592b 00:56:44,979 INFO anaconda:packaging: Installed: gawk-4.2.1-2.el8.aarch64 1607447894 1597024288d637f0865ca9be73fb1f2e5c495005fa9ca5b3aacc6d8ab8f444a8 00:56:45,357 INFO anaconda:packaging: Installed: libsss_autofs-2.4.0-9.el8_4.2.aarch64 1629124289 a286c5c06176c839b460315b03bf0e228e2b383528e1ef85653be9f3ffe5e32d 00:56:45,380 INFO anaconda:packaging: Installed: libsss_nss_idmap-2.4.0-9.el8_4.2.aarch64 1629124289 9e717c0b9abc2cc84e62b92e98c6e4b7da5831e6a1dfb8854b2d35b074d9a179 00:56:45,406 INFO anaconda:packaging: Configuring (running scriptlet for): libsss_nss_idmap-2.4.0-9.el8_4.2.aarch64 1629124289 9e717c0b9abc2cc84e62b92e98c6e4b7da5831e6a1dfb8854b2d35b074d9a179 00:56:45,430 INFO anaconda:packaging: Installed: libsss_sudo-2.4.0-9.el8_4.2.aarch64 1629124289 fd82a3e81683f7193c5fbcf041a1275afed343c661bb531b2a8c6aab940c95ac 00:56:45,451 INFO anaconda:packaging: Configuring (running scriptlet for): libsss_sudo-2.4.0-9.el8_4.2.aarch64 1629124289 fd82a3e81683f7193c5fbcf041a1275afed343c661bb531b2a8c6aab940c95ac 00:56:45,473 INFO anaconda:packaging: Installed: libstemmer-0-10.585svn.el8.aarch64 1557586055 9d17e43486ac5add558ad43514b81444a6e2603d5f9e8d24b89d41ae5b98b4f6 00:56:45,513 INFO anaconda:packaging: Configuring (running scriptlet for): libstemmer-0-10.585svn.el8.aarch64 1557586055 9d17e43486ac5add558ad43514b81444a6e2603d5f9e8d24b89d41ae5b98b4f6 00:56:45,616 INFO anaconda:packaging: Installed: libsysfs-2.1.0-24.el8.aarch64 1557589647 c31bbacfb56aa3e6eaaba32c7e2a186bdedcd768a5d12bfeaeacada350afb4b1 00:56:45,658 INFO anaconda:packaging: Configuring (running scriptlet for): libsysfs-2.1.0-24.el8.aarch64 1557589647 c31bbacfb56aa3e6eaaba32c7e2a186bdedcd768a5d12bfeaeacada350afb4b1 00:56:45,680 INFO anaconda:packaging: Installed: memstrack-0.1.11-1.el8.aarch64 1597179886 d243985eed87e395c99f05ecfda5a55884d1e7df6f02f5ee01fcc76f520c9f1a 00:56:45,704 INFO anaconda:packaging: Installed: ncurses-6.1-7.20180224.el8.aarch64 1557535702 313b9d0ba8b2734cde9edfdf477616c1e535998238e43a1b6465cf946eb92c0b 00:56:45,826 INFO anaconda:packaging: Installed: npth-1.5-4.el8.aarch64 1557535644 eaaeb7ee9274c38650feab7a7abae0b6b38637cded9cf6c828651326b791dc68 00:56:45,843 INFO anaconda:packaging: Installed: sg3_utils-libs-1.44-5.el8.aarch64 1587692970 7b958cc0e9eb01f18ba771b1b5cb382dd7be5e066e42c7dcc1073e9534679e9b 00:56:45,878 INFO anaconda:packaging: Configuring (running scriptlet for): sg3_utils-libs-1.44-5.el8.aarch64 1587692970 7b958cc0e9eb01f18ba771b1b5cb382dd7be5e066e42c7dcc1073e9534679e9b 00:56:45,902 INFO anaconda:packaging: Installed: slang-2.3.2-3.el8.aarch64 1557589195 121ddf8c1e31a9f6958659daa77254ca991da1d25609bc17eb7c261aa32d6176 00:56:45,992 INFO anaconda:packaging: Installed: newt-0.52.20-11.el8.aarch64 1586208562 b0b43ae9d3f38a2bd20dd4452a3d6e791407ac3b24b71019605e8caf8adaf79e 00:56:46,205 INFO anaconda:packaging: Installed: libXau-1.0.9-3.el8.aarch64 1592328437 8bf41dce8686f8e22965691a109aff955d664c53f8e18275e743b36bf3ff22bd 00:56:46,232 INFO anaconda:packaging: Installed: libxcb-1.13.1-1.el8.aarch64 1586218391 47861fc8dd36847f9b1c74cde10e62968a7a38210737d91cfba42a64b65c6112 00:56:46,438 INFO anaconda:packaging: Installed: libX11-1.6.8-4.el8.aarch64 1604964252 0c55280aa609dc0d9ac4a61f28fac3621de0fe6b602f48ed356f605d746938e3 00:56:46,546 INFO anaconda:packaging: Installed: libXext-1.3.4-1.el8.aarch64 1592336126 83b269e23f52dd57c474b47dd5575f17c8c5875b10619c12664b968d6186c039 00:56:46,568 INFO anaconda:packaging: Installed: libXrender-0.9.10-7.el8.aarch64 1557799953 0a7cb86aeedf8d6665a37a3515238c04f8780caaab303d1a7263b66b9a6cb7ed 00:56:46,587 INFO anaconda:packaging: Installed: libestr-0.1.10-1.el8.aarch64 1557797102 d44031d4e8ad270fd07b56002667c5dcdca056dda326e69baf0326c76a3147e2 00:56:46,614 INFO anaconda:packaging: Configuring (running scriptlet for): libestr-0.1.10-1.el8.aarch64 1557797102 d44031d4e8ad270fd07b56002667c5dcdca056dda326e69baf0326c76a3147e2 00:56:46,642 INFO anaconda:packaging: Installed: libfastjson-0.99.8-2.el8.aarch64 1557797177 413890b3d1d8535c08a8aab6afc1437283867f88c0f945ff9d1e664c0855d700 00:56:46,672 INFO anaconda:packaging: Configuring (running scriptlet for): libfastjson-0.99.8-2.el8.aarch64 1557797177 413890b3d1d8535c08a8aab6afc1437283867f88c0f945ff9d1e664c0855d700 00:56:46,695 INFO anaconda:packaging: Installed: libmaxminddb-1.2.0-10.el8.aarch64 1595258164 52d8094d5d1cd98f757b32b9b5622f0a1e9bf6accc5a05f07e82f4dd19dccf74 00:56:46,727 INFO anaconda:packaging: Configuring (running scriptlet for): libmaxminddb-1.2.0-10.el8.aarch64 1595258164 52d8094d5d1cd98f757b32b9b5622f0a1e9bf6accc5a05f07e82f4dd19dccf74 00:56:46,754 INFO anaconda:packaging: Installed: ipcalc-0.2.4-4.el8.aarch64 1586214965 93f4b9f5198e2b04dd8d176ab127660739b18d33438150b03392925f09321fe8 00:56:46,779 INFO anaconda:packaging: Installed: libxkbcommon-0.9.1-1.el8.aarch64 1586216602 3aca03c788af2ecf8ef39421f246769d7ef7f37260ee9421fc68c1d1cc913600 00:56:46,810 INFO anaconda:packaging: Installed: pciutils-3.7.0-1.el8.aarch64 1606871367 8337a6e98b7ae82d5263e08524381a5e396fd7cafca6f7195753286c0c082a04 00:56:46,856 INFO anaconda:packaging: Installed: cyrus-sasl-lib-2.1.27-5.el8.aarch64 1589586896 36d4e208921238b99c822a5f1686120c0c227fc02dc6e3258c2c71d62492a1e7 00:56:46,948 INFO anaconda:packaging: Configuring (running scriptlet for): cyrus-sasl-lib-2.1.27-5.el8.aarch64 1589586896 36d4e208921238b99c822a5f1686120c0c227fc02dc6e3258c2c71d62492a1e7 00:56:46,977 INFO anaconda:packaging: Installed: platform-python-pip-9.0.3-19.el8.noarch 1610615033 5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe 00:56:49,125 INFO anaconda:packaging: Installed: platform-python-setuptools-39.2.0-6.el8.noarch 1587953140 946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557 00:56:49,891 INFO anaconda:packaging: Installed: python3-libs-3.6.8-37.el8.aarch64 1616134578 9834b8aa6a6e84f30f6a4d417539ce48a643df8e34f9e09bc32fa51c7aa28e8b Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11730/12000 00:56:57,449 INFO anaconda:packaging: Installed: grub2-tools-minimal-1:2.02-99.el8.aarch64 1614718965 c214cbb278bac13bc6a5ce886e8ca56dbdc6d9f9d7376b860e49374bb3dac626 00:56:57,531 INFO anaconda:packaging: Installed: rdma-core-32.0-4.el8.aarch64 1612170306 0a7791c66884e6ce6ab93bc0ea3070035e7b3e8e65cbffc6f3cee103e2fd2fb2 00:56:57,623 INFO anaconda:packaging: Configuring (running scriptlet for): rdma-core-32.0-4.el8.aarch64 1612170306 0a7791c66884e6ce6ab93bc0ea3070035e7b3e8e65cbffc6f3cee103e2fd2fb2 00:56:57,645 INFO anaconda:packaging: Installed: libibverbs-32.0-4.el8.aarch64 1612170306 5f2c69d740886aaa2aa29ba3618b4b51a5d2524a959efe962d88a7e384aeb35a 00:56:57,801 INFO anaconda:packaging: Configuring (running scriptlet for): libibverbs-32.0-4.el8.aarch64 1612170306 5f2c69d740886aaa2aa29ba3618b4b51a5d2524a959efe962d88a7e384aeb35a 00:56:57,829 INFO anaconda:packaging: Installed: libpcap-14:1.9.1-5.el8.aarch64 1611213048 239019a8aadb26e4b015d99f7fe49e80c2d1dfa227f7c71322dca2a2a85c2de1 00:56:57,886 INFO anaconda:packaging: Installed: iptables-libs-1.8.4-17.el8.aarch64 1611853487 a64d19d5a2c51692ff7e2ee346fb14f3fba483a7ea1a2cbaee94a16538af4007 00:56:57,932 INFO anaconda:packaging: Installed: libssh-0.9.4-2.el8.aarch64 1595350114 6ff55c032a7ba633d1a23611b6e9a1e4415e17625034af72007c51a8d124bb15 00:56:57,992 INFO anaconda:packaging: Installed: openldap-2.4.46-17.el8_4.aarch64 1623941051 2d3343015e291d718b75dc1f395e526429835685fe98f62d4f0d64bc99f830a6 00:56:58,093 INFO anaconda:packaging: Installed: platform-python-3.6.8-37.el8.aarch64 1616134578 853f212dd85cba56a3400e1731cc7c4c63fa268cd556ab059f198b1c2866e77a 00:56:58,123 INFO anaconda:packaging: Configuring (running scriptlet for): platform-python-3.6.8-37.el8.aarch64 1616134578 853f212dd85cba56a3400e1731cc7c4c63fa268cd556ab059f198b1c2866e77a 00:56:58,146 INFO anaconda:packaging: Installed: grubby-8.40-41.el8.aarch64 1589592817 cab88de20635c5ee1ec987cf14b0fdde69f20dfd67db90e8e3fdc6811fedb155 00:56:58,179 INFO anaconda:packaging: Installed: libkcapi-1.2.0-2.el8.aarch64 1592279009 56738c2c6eda929cc9a5f6a681fb8c431b9beab6ba207ceb53a9717277282b24 00:56:58,216 INFO anaconda:packaging: Installed: libkcapi-hmaccalc-1.2.0-2.el8.aarch64 1592279009 25f5e0670a0fe489d04e670ef49bb0dd9e5c111c62e2ed054249cb8db0bb365e 00:56:58,247 INFO anaconda:packaging: Installed: libarchive-3.3.3-1.el8.aarch64 1601995517 e6ddc29b56fcbabe7bcd1ff1535a72c0d4477176a6321b13006d2aa65477ff9d 00:56:58,330 INFO anaconda:packaging: Installed: libdb-utils-5.3.28-40.el8.aarch64 1607448021 47596a15abbe575d633c60d722e2bb3613d8622d6b44489957b3fca5f652b24a 00:56:58,461 INFO anaconda:packaging: Installed: curl-7.61.1-18.el8.aarch64 1612337043 89ebdd969468d9c9669fa65c9c92f0b66b306ef430f8c913663eefd789496e74 00:56:58,547 INFO anaconda:packaging: Installed: libcurl-7.61.1-18.el8.aarch64 1612337043 71d917e0883a85aaa0bcd9b4989799161e8e3a99c2185551444ef1129afb75d4 00:56:58,603 INFO anaconda:packaging: Installed: openssl-1:1.1.1g-15.el8_3.aarch64 1617116102 4201b41e521c75ab876d9ae2687bd31369a7b87de2f6b4042be788f7fd3ecfc4 00:56:58,946 INFO anaconda:packaging: Installed: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3.noarch 1617821142 a4ba25827849b4859446854c1106c62c215d413f9d16d5b30fadb78082fb233c 00:56:59,071 INFO anaconda:packaging: Installed: crypto-policies-20210209-1.gitbfb6bed.el8_3.noarch 1617821142 fa4a0c233d055bc746917ecf7440e2646cfeb9943acc02d13e534674e922f365 00:56:59,287 INFO anaconda:packaging: Configuring (running scriptlet for): crypto-policies-20210209-1.gitbfb6bed.el8_3.noarch 1617821142 fa4a0c233d055bc746917ecf7440e2646cfeb9943acc02d13e534674e922f365 00:56:59,294 INFO anaconda:packaging: Installed: elfutils-default-yama-scope-0.182-3.el8.noarch 1608663614 082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805 00:56:59,299 INFO anaconda:packaging: Configuring (running scriptlet for): elfutils-default-yama-scope-0.182-3.el8.noarch 1608663614 082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805 00:56:59,318 INFO anaconda:packaging: Installed: gzip-1.9-12.el8.aarch64 1610550614 1fe57a2d38c0d449efd06fa3e498e49f1952829f612d657418a7496458c0cb7c 00:56:59,424 INFO anaconda:packaging: Configuring (running scriptlet for): gzip-1.9-12.el8.aarch64 1610550614 1fe57a2d38c0d449efd06fa3e498e49f1952829f612d657418a7496458c0cb7c 00:56:59,448 INFO anaconda:packaging: Installed: cracklib-2.9.6-15.el8.aarch64 1557533931 54efb853142572e1c2872e351838fc3657b662722ff6b2913d1872d4752a0eb8 00:56:59,625 INFO anaconda:packaging: Installed: cracklib-dicts-2.9.6-15.el8.aarch64 1557533931 d61741af0ffe96c55f588dd164b9c3c93e7c7175c7e616db25990ab3e16e0f22 00:57:00,345 INFO anaconda:packaging: Installed: procps-ng-3.3.15-6.el8.aarch64 1612250093 dda0f9ad611135e6bee3459f183292cb1364b6c09795ead62cfe402426482212 00:57:00,556 INFO anaconda:packaging: Installed: krb5-libs-1.18.2-8.el8.aarch64 1610126963 c4349b988307bdcbb4f3cc7999b8febd7a11d6ffe9a5deafc091d617651dbac6 00:57:00,789 INFO anaconda:packaging: Installed: libtirpc-1.1.4-4.el8.aarch64 1573234751 5f5d63e14ca77e84ae79d1d78569ad9326af6c107be137461800527afb5613eb 00:57:00,836 INFO anaconda:packaging: Configuring (running scriptlet for): libtirpc-1.1.4-4.el8.aarch64 1573234751 5f5d63e14ca77e84ae79d1d78569ad9326af6c107be137461800527afb5613eb 00:57:00,866 INFO anaconda:packaging: Installed: libnsl2-1.2.0-2.20180605git4a062cf.el8.aarch64 1557535010 b33276781f442757afd5e066ead95ec79927f2aed608a368420f230d5ee28686 00:57:00,893 INFO anaconda:packaging: Configuring (running scriptlet for): libnsl2-1.2.0-2.20180605git4a062cf.el8.aarch64 1557535010 b33276781f442757afd5e066ead95ec79927f2aed608a368420f230d5ee28686 00:57:00,919 INFO anaconda:packaging: Installed: kpartx-0.8.4-10.el8.aarch64 1616085052 5dbfcad345dc790f7d6a4d1e7decad7e7b720604e53e40594edbed6730883e73 00:57:00,956 INFO anaconda:packaging: Installed: device-mapper-8:1.02.175-5.el8.aarch64 1615413557 cb3ac3a4a966c918f9f43cc1b9c0e8b3020ab613cd37685036d59c06b23cbd2a 00:57:01,031 INFO anaconda:packaging: Installed: elfutils-debuginfod-client-0.182-3.el8.aarch64 1608663614 597d72b55ef0a4a6b413ee83dba755defa92e7f35aa0d7b28df9028684d1f402 00:57:01,053 INFO anaconda:packaging: Installed: elfutils-libs-0.182-3.el8.aarch64 1608663614 27113d3675ab5a44de39fa5336d7cc9745c80995e5b2b07b1c836b0c780b5397 00:57:01,132 INFO anaconda:packaging: Installed: openssl-pkcs11-0.4.10-2.el8.aarch64 1586219947 f758b3e76f41ecb5340e7def046acd9f91242ebe7060ad2d509381584075ead8 00:57:01,169 INFO anaconda:packaging: Installed: rpm-4.14.3-14.el8_4.aarch64 1622657806 03b6691e1193781fbe1241968016203f8805fa0e8528f5e291b36495ebc9b2f0 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11720/12000 00:57:01,710 INFO anaconda:packaging: Installed: gettext-libs-0.19.8.1-17.el8.aarch64 1573232179 882f23e0250a2d4aea49abb4ec8e11a9a3869ccdd812c796b6f85341ff9d30a2 00:57:01,806 INFO anaconda:packaging: Installed: libcroco-0.6.12-4.el8_2.1.aarch64 1599668725 0022ec2580783f68e603e9d4751478c28f2b383c596b4e896469077748771bfe 00:57:01,856 INFO anaconda:packaging: Configuring (running scriptlet for): libcroco-0.6.12-4.el8_2.1.aarch64 1599668725 0022ec2580783f68e603e9d4751478c28f2b383c596b4e896469077748771bfe 00:57:01,886 INFO anaconda:packaging: Installed: libfdisk-2.32.1-27.el8.aarch64 1611212711 a85df6e1cd59e8138973da2fc292ebdb498426169c5d2fbbe6a265a8e3bc6ef2 00:57:01,936 INFO anaconda:packaging: Configuring (running scriptlet for): libfdisk-2.32.1-27.el8.aarch64 1611212711 a85df6e1cd59e8138973da2fc292ebdb498426169c5d2fbbe6a265a8e3bc6ef2 00:57:01,963 INFO anaconda:packaging: Installed: libmount-2.32.1-27.el8.aarch64 1611212711 4ca4ef2d89f699ae3fe0cadb36de3cb845924c2b3159f48c957a3c4efc025f27 00:57:02,011 INFO anaconda:packaging: Configuring (running scriptlet for): libmount-2.32.1-27.el8.aarch64 1611212711 4ca4ef2d89f699ae3fe0cadb36de3cb845924c2b3159f48c957a3c4efc025f27 00:57:02,037 INFO anaconda:packaging: Installed: dbus-libs-1:1.12.8-12.el8_4.2.aarch64 1622130562 3acae7760113f8e0b33e182b63748fec10f77abaf6a0add876bd54baf11c1970 00:57:02,080 INFO anaconda:packaging: Configuring (running scriptlet for): dbus-libs-1:1.12.8-12.el8_4.2.aarch64 1622130562 3acae7760113f8e0b33e182b63748fec10f77abaf6a0add876bd54baf11c1970 00:57:02,105 INFO anaconda:packaging: Installed: dbus-tools-1:1.12.8-12.el8_4.2.aarch64 1622130562 dc1b0474023ae4092a0228aff872fba12c02a65fa288d32ff07f3262f50cdc85 00:57:02,152 INFO anaconda:packaging: Installed: coreutils-8.30-8.el8.aarch64 1587954500 b984c970c0c1853560745669820004326855f6e6204f7a7bfed90f6f1b12e2b5 00:57:02,956 INFO anaconda:packaging: Installed: systemd-libs-239-45.el8_4.3.aarch64 1628609468 bbfad98737454d1293edf7672c421466095a05de66e84c6a324dba9bf539110a 00:57:03,197 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-libs-239-45.el8_4.3.aarch64 1628609468 bbfad98737454d1293edf7672c421466095a05de66e84c6a324dba9bf539110a 00:57:03,245 INFO anaconda:packaging: Installed: libblkid-2.32.1-27.el8.aarch64 1611212711 e514c5b60193e394e5ed9a98f1b7547eb47ca87ab56be7d37a1072b94db67498 00:57:03,282 INFO anaconda:packaging: Configuring (running scriptlet for): libblkid-2.32.1-27.el8.aarch64 1611212711 e514c5b60193e394e5ed9a98f1b7547eb47ca87ab56be7d37a1072b94db67498 00:57:03,320 INFO anaconda:packaging: Installed: shadow-utils-2:4.6-12.el8.aarch64 1606872265 e02cf950ed3b32e0e4e122f11f136899f9eb5185bf5dd70ebc604e7d27485705 00:57:04,496 INFO anaconda:packaging: Installed: device-mapper-libs-8:1.02.175-5.el8.aarch64 1615413557 95722419690a770d0c392dc17faa7d72661e9d3d4dc7edeb09a57b6cf1169b55 00:57:04,540 INFO anaconda:packaging: Configuring (running scriptlet for): ca-certificates-2020.2.41-80.0.el8_2.noarch 1597185516 dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be 00:57:04,557 INFO anaconda:packaging: Installed: ca-certificates-2020.2.41-80.0.el8_2.noarch 1597185516 dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be 00:57:04,666 INFO anaconda:packaging: Configuring (running scriptlet for): ca-certificates-2020.2.41-80.0.el8_2.noarch 1597185516 dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be 00:57:05,855 INFO anaconda:packaging: Installed: openssl-libs-1:1.1.1g-15.el8_3.aarch64 1617116102 0a85ce00ab6f9894dc40287bc99cae6583d821c105852072db78c1f4afa85e20 00:57:06,130 INFO anaconda:packaging: Configuring (running scriptlet for): openssl-libs-1:1.1.1g-15.el8_3.aarch64 1617116102 0a85ce00ab6f9894dc40287bc99cae6583d821c105852072db78c1f4afa85e20 00:57:06,157 INFO anaconda:packaging: Installed: kmod-libs-25-17.el8.aarch64 1611167807 6cf949c297bb672fd816c52f1c7ffc1e772251e585d08a0c3c506eefe38b897f 00:57:06,178 INFO anaconda:packaging: Configuring (running scriptlet for): kmod-libs-25-17.el8.aarch64 1611167807 6cf949c297bb672fd816c52f1c7ffc1e772251e585d08a0c3c506eefe38b897f 00:57:06,210 INFO anaconda:packaging: Installed: libdb-5.3.28-40.el8.aarch64 1607448021 cab4f9caf4d9e51a7bcaa4d69e7550d5b9372ce817d956d2e5fa4e374c76a8ab 00:57:06,352 INFO anaconda:packaging: Configuring (running scriptlet for): libdb-5.3.28-40.el8.aarch64 1607448021 cab4f9caf4d9e51a7bcaa4d69e7550d5b9372ce817d956d2e5fa4e374c76a8ab 00:57:06,380 INFO anaconda:packaging: Installed: rpm-libs-4.14.3-14.el8_4.aarch64 1622657806 14ab02f68ee40352970862f1782d2ce65404d0cf993c6c856e948b91b6583c6d 00:57:06,447 INFO anaconda:packaging: Configuring (running scriptlet for): rpm-libs-4.14.3-14.el8_4.aarch64 1622657806 14ab02f68ee40352970862f1782d2ce65404d0cf993c6c856e948b91b6583c6d 00:57:06,472 INFO anaconda:packaging: Installed: kmod-25-17.el8.aarch64 1611167807 acc9808c1c23f46135bebee5f3f26384c05127d5c8a5a0f7acea2a89572abf12 00:57:06,548 INFO anaconda:packaging: Installed: cryptsetup-libs-2.3.3-4.el8.aarch64 1613725826 c94d212f77d5d83ba1bd22a5c6b5e92590d5c4cb412950ec22d1309d79e2fc0e 00:57:06,709 INFO anaconda:packaging: Configuring (running scriptlet for): cryptsetup-libs-2.3.3-4.el8.aarch64 1613725826 c94d212f77d5d83ba1bd22a5c6b5e92590d5c4cb412950ec22d1309d79e2fc0e 00:57:06,738 INFO anaconda:packaging: Installed: trousers-lib-0.3.15-1.el8.aarch64 1605564531 f006928e944be95bb8d6cb757d759ad25d76d2c36d05e7eab1c4308ed6134c90 00:57:06,778 INFO anaconda:packaging: Configuring (running scriptlet for): trousers-lib-0.3.15-1.el8.aarch64 1605564531 f006928e944be95bb8d6cb757d759ad25d76d2c36d05e7eab1c4308ed6134c90 00:57:06,808 INFO anaconda:packaging: Configuring (running scriptlet for): dbus-daemon-1:1.12.8-12.el8_4.2.aarch64 1622130562 28a253744f6d75744fd836fcfd9fe4ef4393fdd0007a7f8c73253a8525c77160 00:57:06,839 INFO groupadd:group added to /etc/group: name=dbus, GID=81 00:57:06,844 INFO groupadd:group added to /etc/gshadow: name=dbus 00:57:06,848 INFO groupadd:new group: name=dbus, GID=81 00:57:06,869 INFO useradd:new user: name=dbus, UID=81, GID=81, home=/, shell=/sbin/nologin 00:57:06,893 INFO anaconda:packaging: Installed: dbus-daemon-1:1.12.8-12.el8_4.2.aarch64 1622130562 28a253744f6d75744fd836fcfd9fe4ef4393fdd0007a7f8c73253a8525c77160 00:57:06,994 INFO anaconda:packaging: Configuring (running scriptlet for): dbus-daemon-1:1.12.8-12.el8_4.2.aarch64 1622130562 28a253744f6d75744fd836fcfd9fe4ef4393fdd0007a7f8c73253a8525c77160 00:57:07,014 INFO anaconda:packaging: Configuring (running scriptlet for): libutempter-1.1.6-14.el8.aarch64 1557535324 8f6d9839a758fdacfdb4b4b0731e8023b8bbb0b633bd32dbf21c2ce85a933a8a 00:57:07,041 INFO groupadd:group added to /etc/group: name=utmp, GID=22 00:57:07,046 INFO groupadd:group added to /etc/gshadow: name=utmp 00:57:07,050 INFO groupadd:new group: name=utmp, GID=22 00:57:07,066 INFO groupadd:group added to /etc/group: name=utempter, GID=35 00:57:07,071 INFO groupadd:group added to /etc/gshadow: name=utempter 00:57:07,074 INFO groupadd:new group: name=utempter, GID=35 00:57:07,081 INFO anaconda:packaging: Installed: libutempter-1.1.6-14.el8.aarch64 1557535324 8f6d9839a758fdacfdb4b4b0731e8023b8bbb0b633bd32dbf21c2ce85a933a8a 00:57:07,116 INFO anaconda:packaging: Installed: kbd-2.0.4-10.el8.aarch64 1595275356 aeacdfce1854c4b0cfe9c272b53b2032127e4beacaa1a161c9192239c5df8f12 00:57:07,502 INFO anaconda:packaging: Installed: libpwquality-1.4.4-3.el8.aarch64 1614064199 64e55ddddc1dd27e05097c9222e73052f6f20f9d2f7605f46922b7756adeb0b5 00:57:07,701 INFO anaconda:packaging: Installed: pam-1.3.1-14.el8.aarch64 1606949345 32f47ba9eb0537e9939b6d8afc0e7f44bdeebca2f33513b7fafeec27101d4257 00:57:08,883 INFO anaconda:packaging: Configuring (running scriptlet for): pam-1.3.1-14.el8.aarch64 1606949345 32f47ba9eb0537e9939b6d8afc0e7f44bdeebca2f33513b7fafeec27101d4257 00:57:08,918 INFO anaconda:packaging: Installed: util-linux-2.32.1-27.el8.aarch64 1611212711 f4d705c5bc70034622eade992acf7a2484f0cb64442250f6f0c30bf025588357 00:57:10,482 INFO anaconda:packaging: Configuring (running scriptlet for): util-linux-2.32.1-27.el8.aarch64 1611212711 f4d705c5bc70034622eade992acf7a2484f0cb64442250f6f0c30bf025588357 00:57:10,511 INFO anaconda:packaging: Installed: systemd-pam-239-45.el8_4.3.aarch64 1628609468 31b7f84a016062847a80a9a66912f680ae400fa876508ca57ff6310fe0d6e1e8 00:57:10,583 INFO anaconda:packaging: Installed: dracut-049-135.git20210121.el8.aarch64 1613121073 2dea79ea9e7c098bf1e19cc04bc9c7beb40a04b96a2cba07110cc8bbc152275c 00:57:11,268 INFO anaconda:packaging: Installed: os-prober-1.74-6.el8.aarch64 1557587474 5515efce88237588ed2f13b8008846f139cafd1ba5063eccdfb156af03fc8f75 00:57:11,403 INFO anaconda:packaging: Installed: gettext-0.19.8.1-17.el8.aarch64 1573232179 5f0c37488d3017b052039ddb8d9189a38c252af97884264959334237109c7e7c Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11710/12000 00:57:12,062 INFO anaconda:packaging: Configuring (running scriptlet for): gettext-0.19.8.1-17.el8.aarch64 1573232179 5f0c37488d3017b052039ddb8d9189a38c252af97884264959334237109c7e7c 00:57:12,094 INFO anaconda:packaging: Configuring (running scriptlet for): grub2-tools-1:2.02-99.el8.aarch64 1614718965 d1dda077a4155c51c385363fc679bb82a4cdd1c298963bb2c8b4e3d2325e7f34 00:57:12,111 INFO anaconda:packaging: Installed: grub2-tools-1:2.02-99.el8.aarch64 1614718965 d1dda077a4155c51c385363fc679bb82a4cdd1c298963bb2c8b4e3d2325e7f34 00:57:12,627 INFO anaconda:packaging: Configuring (running scriptlet for): grub2-tools-1:2.02-99.el8.aarch64 1614718965 d1dda077a4155c51c385363fc679bb82a4cdd1c298963bb2c8b4e3d2325e7f34 00:57:12,657 INFO anaconda:packaging: Installed: glib2-2.56.4-10.el8_4.1.aarch64 1628609837 f9899e210581f892bd2315506499feea648401162b7ee96f5d7e3e7616491478 00:57:13,547 INFO anaconda:packaging: Installed: shared-mime-info-1.9-3.el8.aarch64 1557589089 955e50447ee8ba78996529e1f9192eab92b25251d236b6e24a61be9787fb7552 00:57:13,673 INFO anaconda:packaging: Configuring (running scriptlet for): shared-mime-info-1.9-3.el8.aarch64 1557589089 955e50447ee8ba78996529e1f9192eab92b25251d236b6e24a61be9787fb7552 00:57:13,693 INFO anaconda:packaging: Installed: gnutls-3.6.14-8.el8_3.aarch64 1618436341 e95b52fddb50b3626f30205cc2755875345ff56df9445a2cbd379bfedb66b314 00:57:13,942 INFO anaconda:packaging: Installed: dbus-1:1.12.8-12.el8_4.2.aarch64 1622130562 01d8739575cf3ddc7972ecd926e95fc8bada0b68c55b12b61356a7b6ee8a8ba7 00:57:13,956 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 00:57:14,074 INFO groupadd:group added to /etc/group: name=input, GID=999 00:57:14,080 INFO groupadd:group added to /etc/gshadow: name=input 00:57:14,083 INFO groupadd:new group: name=input, GID=999 00:57:14,105 INFO groupadd:group added to /etc/group: name=kvm, GID=36 00:57:14,109 INFO groupadd:group added to /etc/gshadow: name=kvm 00:57:14,113 INFO groupadd:new group: name=kvm, GID=36 00:57:14,136 INFO groupadd:group added to /etc/group: name=render, GID=998 00:57:14,140 INFO groupadd:group added to /etc/gshadow: name=render 00:57:14,144 INFO groupadd:new group: name=render, GID=998 00:57:14,166 INFO groupadd:group added to /etc/group: name=systemd-journal, GID=190 00:57:14,171 INFO groupadd:group added to /etc/gshadow: name=systemd-journal 00:57:14,174 INFO groupadd:new group: name=systemd-journal, GID=190 00:57:14,196 INFO groupadd:group added to /etc/group: name=systemd-coredump, GID=997 00:57:14,201 INFO groupadd:group added to /etc/gshadow: name=systemd-coredump 00:57:14,205 INFO groupadd:new group: name=systemd-coredump, GID=997 00:57:14,225 INFO useradd:new user: name=systemd-coredump, UID=999, GID=997, home=/, shell=/sbin/nologin 00:57:14,263 INFO groupadd:group added to /etc/group: name=systemd-resolve, GID=193 00:57:14,268 INFO groupadd:group added to /etc/gshadow: name=systemd-resolve 00:57:14,271 INFO groupadd:new group: name=systemd-resolve, GID=193 00:57:14,291 INFO useradd:new user: name=systemd-resolve, UID=193, GID=193, home=/, shell=/sbin/nologin 00:57:14,312 INFO anaconda:packaging: Installed: systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 00:57:16,547 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 00:57:16,728 INFO anaconda:packaging: Installed: systemd-udev-239-45.el8_4.3.aarch64 1628609468 bc23ec3ca8ad5e5e87395f41ccfbb5f63331ba292ea105a9851e68da28878309 00:57:17,537 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-udev-239-45.el8_4.3.aarch64 1628609468 bc23ec3ca8ad5e5e87395f41ccfbb5f63331ba292ea105a9851e68da28878309 00:57:18,287 INFO anaconda:packaging: Configuring (running scriptlet for): trousers-0.3.15-1.el8.aarch64 1605564531 292c904845193c84dd61405c4cdcb40068e8e801b0f8c38075061d0c0a986b11 00:57:18,324 INFO groupadd:group added to /etc/group: name=tss, GID=59 00:57:18,329 INFO groupadd:group added to /etc/gshadow: name=tss 00:57:18,332 INFO groupadd:new group: name=tss, GID=59 00:57:18,358 INFO useradd:new user: name=tss, UID=59, GID=59, home=/dev/null, shell=/sbin/nologin 00:57:18,385 INFO anaconda:packaging: Installed: trousers-0.3.15-1.el8.aarch64 1605564531 292c904845193c84dd61405c4cdcb40068e8e801b0f8c38075061d0c0a986b11 00:57:18,434 INFO anaconda:packaging: Configuring (running scriptlet for): trousers-0.3.15-1.el8.aarch64 1605564531 292c904845193c84dd61405c4cdcb40068e8e801b0f8c38075061d0c0a986b11 00:57:18,474 INFO anaconda:packaging: Installed: python3-six-1.11.0-8.el8.noarch 1557588702 a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b 00:57:18,519 INFO anaconda:packaging: Installed: polkit-libs-0.115-11.el8_4.1.aarch64 1622839345 531bd9c13e3b6b004aa05d4481790ece7e05bcb83714f49b06e3be43a6992721 00:57:18,557 INFO anaconda:packaging: Configuring (running scriptlet for): polkit-libs-0.115-11.el8_4.1.aarch64 1622839345 531bd9c13e3b6b004aa05d4481790ece7e05bcb83714f49b06e3be43a6992721 00:57:18,591 INFO anaconda:packaging: Installed: python3-libselinux-2.9-5.el8.aarch64 1603743587 1a39d5db45d7e97f0a9b564b263ae22d20433bd2f40a6298b8e3ca6a80875da3 00:57:18,658 INFO anaconda:packaging: Configuring (running scriptlet for): polkit-0.115-11.el8_4.1.aarch64 1622839345 525d0442e0522164ebc5289f907947bb41c5472007131d8fa2b119fcf0745b02 00:57:18,692 INFO groupadd:group added to /etc/group: name=polkitd, GID=996 00:57:18,697 INFO groupadd:group added to /etc/gshadow: name=polkitd 00:57:18,701 INFO groupadd:new group: name=polkitd, GID=996 00:57:18,722 INFO useradd:new user: name=polkitd, UID=998, GID=996, home=/, shell=/sbin/nologin 00:57:18,749 INFO anaconda:packaging: Installed: polkit-0.115-11.el8_4.1.aarch64 1622839345 525d0442e0522164ebc5289f907947bb41c5472007131d8fa2b119fcf0745b02 00:57:18,875 INFO anaconda:packaging: Configuring (running scriptlet for): polkit-0.115-11.el8_4.1.aarch64 1622839345 525d0442e0522164ebc5289f907947bb41c5472007131d8fa2b119fcf0745b02 00:57:18,914 INFO anaconda:packaging: Installed: polkit-pkla-compat-0.1-12.el8.aarch64 1557588280 d25d562fe77f391458903ebf0d9078b6d38af6d9ced39d902b9afc7e717d2234 00:57:18,969 INFO anaconda:packaging: Installed: json-glib-1.4.4-1.el8.aarch64 1557583440 01e70480bb032d5e0b60c5e732d4302d3a0ce73d1502a1729280d2b36e7e1c1a 00:57:19,148 INFO anaconda:packaging: Installed: libmodulemd-2.9.4-2.el8.aarch64 1592260013 a3bb8aeb4f6af342eacc714ff1000ffffcb7811302589efcec73f43fe59d33e3 00:57:19,210 INFO anaconda:packaging: Installed: policycoreutils-2.9-14.el8.aarch64 1616130866 fd775c5c414c71bcb408333c9fb7fb46258f9655e42d3cd801f3b348a18e9ed7 00:57:19,607 INFO anaconda:packaging: Configuring (running scriptlet for): policycoreutils-2.9-14.el8.aarch64 1616130866 fd775c5c414c71bcb408333c9fb7fb46258f9655e42d3cd801f3b348a18e9ed7 00:57:19,646 INFO anaconda:packaging: Installed: libevent-2.1.8-5.el8.aarch64 1557584388 a7fed3b521d23e60539dcbd548bda2a62f0d745a99dd5feeb43b6539f7f88232 00:57:19,739 INFO anaconda:packaging: Installed: gobject-introspection-1.56.1-1.el8.aarch64 1557582127 38b18b20b348adabd9df71ebf378a56c805f086a46b3fb89f2ed5e35f5505417 00:57:19,852 INFO anaconda:packaging: Installed: python3-gobject-base-3.28.3-2.el8.aarch64 1595266368 ddc064aa8fb904fbcb1c0da0946f61581a30f6dea8fde9343c29491b0bcd7009 00:57:20,099 INFO anaconda:packaging: Installed: libgudev-232-4.el8.aarch64 1557584654 3580edd85564275b4f99bc0045d795f9d792e53215560ff955122abf67f83c21 00:57:20,126 INFO anaconda:packaging: Installed: libsolv-0.7.16-2.el8.aarch64 1612422384 e429a14e210bdbbc71cb231d31c9c004b79859abbf93bc1c325335083c5c9636 00:57:20,202 INFO anaconda:packaging: Installed: iproute-5.9.0-4.el8.aarch64 1615818174 face40eec523ec75a6a1e9d1b7d76b150065a79b15a272d8566fa90f73cc916e 00:57:20,580 INFO anaconda:packaging: Installed: parted-3.2-38.el8.aarch64 1573237793 52e88fe9b9a841735a8ef826592fc11ef7006b3368ff224c4577aad86b5989ea 00:57:20,799 INFO anaconda:packaging: Configuring (running scriptlet for): parted-3.2-38.el8.aarch64 1573237793 52e88fe9b9a841735a8ef826592fc11ef7006b3368ff224c4577aad86b5989ea 00:57:20,845 INFO anaconda:packaging: Installed: libblockdev-utils-2.24-5.el8.aarch64 1610550691 557936d469350ff19b938adec1e78c899d89b86f67f42c03d200369f66555858 00:57:20,867 INFO anaconda:packaging: Installed: python3-decorator-4.2.1-2.el8.noarch 1557588489 0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578 00:57:20,908 INFO anaconda:packaging: Installed: python3-configobj-5.0.6-11.el8.noarch 1557588527 1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e 00:57:21,061 INFO anaconda:packaging: Installed: kernel-core-4.18.0-305.17.1.el8_4.aarch64 1631110505 680fa1c24237dd00359585248a62d77c4de39afef0b420b1c7321bbe4aa4d226 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11700/12000 00:57:26,145 INFO anaconda:packaging: Configuring (running scriptlet for): kernel-core-4.18.0-305.17.1.el8_4.aarch64 1631110505 680fa1c24237dd00359585248a62d77c4de39afef0b420b1c7321bbe4aa4d226 00:57:26,167 INFO anaconda:packaging: Installed: crontabs-1.11-17.20190603git.el8.noarch 1610439789 bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0 00:57:26,200 INFO anaconda:packaging: Installed: cronie-1.5.2-4.el8.aarch64 1573230628 d95e7d75d39bdec2742f406a12027605612e8abc38a9bcac5c9b632611313020 00:57:26,264 INFO anaconda:packaging: Configuring (running scriptlet for): cronie-1.5.2-4.el8.aarch64 1573230628 d95e7d75d39bdec2742f406a12027605612e8abc38a9bcac5c9b632611313020 00:57:26,303 INFO anaconda:packaging: Configuring (running scriptlet for): cronie-1.5.2-4.el8.aarch64 1573230628 d95e7d75d39bdec2742f406a12027605612e8abc38a9bcac5c9b632611313020 00:57:26,339 INFO anaconda:packaging: Installed: cronie-anacron-1.5.2-4.el8.aarch64 1573230628 b729404e9d1195caf72cf793331886708fdf8d807b74575871b5aa8ae8d726b4 00:57:26,358 INFO anaconda:packaging: Configuring (running scriptlet for): cronie-anacron-1.5.2-4.el8.aarch64 1573230628 b729404e9d1195caf72cf793331886708fdf8d807b74575871b5aa8ae8d726b4 00:57:26,386 INFO anaconda:packaging: Installed: initscripts-10.00.15-1.el8.aarch64 1613725442 fb3b1edd91abc3b6c0f62d34828cc3c6e50945a9a04a79a7d809caf97ba27a76 00:57:26,756 INFO anaconda:packaging: Configuring (running scriptlet for): initscripts-10.00.15-1.el8.aarch64 1613725442 fb3b1edd91abc3b6c0f62d34828cc3c6e50945a9a04a79a7d809caf97ba27a76 00:57:26,797 INFO anaconda:packaging: Installed: iputils-20180629-7.el8.aarch64 1614063816 6a8bdae6d069605468b2a153403187aa157c6d7ec59dd7097f160ea2b10c4899 00:57:26,880 INFO anaconda:packaging: Configuring (running scriptlet for): iputils-20180629-7.el8.aarch64 1614063816 6a8bdae6d069605468b2a153403187aa157c6d7ec59dd7097f160ea2b10c4899 00:57:26,923 INFO anaconda:packaging: Installed: NetworkManager-libnm-1:1.30.0-10.el8_4.aarch64 1628609604 9a791d16574dc3408f495eb383b6c2669b34fc4545b3c43c8c791fbbe10619d2 00:57:27,504 INFO anaconda:packaging: Configuring (running scriptlet for): NetworkManager-libnm-1:1.30.0-10.el8_4.aarch64 1628609604 9a791d16574dc3408f495eb383b6c2669b34fc4545b3c43c8c791fbbe10619d2 00:57:27,539 INFO anaconda:packaging: Configuring (running scriptlet for): NetworkManager-1:1.30.0-10.el8_4.aarch64 1628609604 2b502af85265b40430fd5da6b3d750023ce90003d19a3f75844c170db1d53c58 00:57:27,555 INFO anaconda:packaging: Installed: NetworkManager-1:1.30.0-10.el8_4.aarch64 1628609604 2b502af85265b40430fd5da6b3d750023ce90003d19a3f75844c170db1d53c58 00:57:28,121 INFO anaconda:packaging: Configuring (running scriptlet for): NetworkManager-1:1.30.0-10.el8_4.aarch64 1628609604 2b502af85265b40430fd5da6b3d750023ce90003d19a3f75844c170db1d53c58 00:57:28,202 INFO anaconda:packaging: Configuring (running scriptlet for): NetworkManager-1:1.30.0-10.el8_4.aarch64 1628609604 2b502af85265b40430fd5da6b3d750023ce90003d19a3f75844c170db1d53c58 00:57:28,205 INFO systemd-udevd:Using default interface naming scheme 'rhel-8.0'. 00:57:28,212 DEBUG NetworkManager: [1631667448.2124] platform-linux: UDEV event: action 'change' subsys 'net' device 'enp1s0' (2); seqnum=2118 00:57:28,223 DEBUG NetworkManager: [1631667448.2236] platform-linux: UDEV event: action 'change' subsys 'net' device 'lo' (1); seqnum=2119 00:57:28,228 INFO anaconda:packaging: Installed: gdk-pixbuf2-2.36.12-5.el8.aarch64 1573231851 b2c52d4191957d35b81428fc1e991915839a99fd4d0756c846b5c4dd386b38fe 00:57:28,629 INFO anaconda:packaging: Configuring (running scriptlet for): gdk-pixbuf2-2.36.12-5.el8.aarch64 1573231851 b2c52d4191957d35b81428fc1e991915839a99fd4d0756c846b5c4dd386b38fe 00:57:28,666 INFO anaconda:packaging: Configuring (running scriptlet for): openssh-8.0p1-6.el8_4.2.aarch64 1622130979 202846d57a464cb7d83c4117c835cb6d826d6d34316e89d27a3df59b06dcf46f 00:57:28,699 INFO groupadd:group added to /etc/group: name=ssh_keys, GID=995 00:57:28,704 INFO groupadd:group added to /etc/gshadow: name=ssh_keys 00:57:28,707 INFO groupadd:new group: name=ssh_keys, GID=995 00:57:28,714 INFO anaconda:packaging: Installed: openssh-8.0p1-6.el8_4.2.aarch64 1622130979 202846d57a464cb7d83c4117c835cb6d826d6d34316e89d27a3df59b06dcf46f 00:57:28,870 INFO anaconda:packaging: Installed: xfsprogs-5.0.0-8.el8.aarch64 1610439994 837415ea8b9b03d658b7381f40e545d17156b3cf77be24d0f52b1e668dba876b 00:57:29,258 INFO anaconda:packaging: Configuring (running scriptlet for): xfsprogs-5.0.0-8.el8.aarch64 1610439994 837415ea8b9b03d658b7381f40e545d17156b3cf77be24d0f52b1e668dba876b 00:57:29,290 INFO anaconda:packaging: Installed: e2fsprogs-1.45.6-1.el8.aarch64 1595015162 0cffcd6b8e08d65613fc54169ff4c8c04ee745dbe74bc483a29569ffca105ab4 00:57:29,699 INFO anaconda:packaging: Installed: libusbx-1.0.23-4.el8.aarch64 1597695003 ae797d004f3cafb89773fcc8a3f0d6d046546b7cb3f9741be200d095c637706f 00:57:29,733 INFO anaconda:packaging: Installed: fontconfig-2.13.1-3.el8.aarch64 1557581481 e4dc102f15c1e6104bdeae343e54fcc7929b922b93077f6b50216087e7125a2d 00:57:29,987 INFO anaconda:packaging: Configuring (running scriptlet for): fontconfig-2.13.1-3.el8.aarch64 1557581481 e4dc102f15c1e6104bdeae343e54fcc7929b922b93077f6b50216087e7125a2d 00:57:31,076 INFO anaconda:packaging: Installed: cairo-1.15.12-3.el8.aarch64 1557788538 3187b5a82f1e6906539903c42b3bbd0b9979f00ae41d73c52e69e239f1090bf7 00:57:31,236 INFO anaconda:packaging: Installed: libnfsidmap-1:2.3.3-41.el8_4.2.aarch64 1628609553 ae573d3983b854a9556041a3e052e9bb4a7ae35bbf583207c38c309d3e329546 00:57:31,279 INFO anaconda:packaging: Installed: python3-audit-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 122fe05bd35778f2887e7f5cad32e8e93247fbbd71bd3da5ed78f788d529d028 00:57:31,314 INFO anaconda:packaging: Installed: python3-libxml2-2.9.7-9.el8_4.2.aarch64 1624987190 f67f21a251940c375d99f7a47381ddea919a9a4e2b31f242101cdf04ce8bdb70 00:57:31,420 INFO anaconda:packaging: Installed: python3-pyyaml-3.12-12.el8.aarch64 1557588779 125e3be7258821f7bc210b7eee8591289ea4ce97edea2832d8e6a89f1b6969e5 00:57:31,593 INFO anaconda:packaging: Installed: libldb-2.2.0-2.el8.aarch64 1617167657 2c39518dfdca89425e9ed6c4283808793c67d663573187343d539653054befea 00:57:31,699 INFO anaconda:packaging: Configuring (running scriptlet for): iptables-1.8.4-17.el8.aarch64 1611853487 894d7d7611e90a46fccfb68ce9e74f23d06135e8c3051772885374ed1986854f Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11690/12000 00:57:31,716 INFO anaconda:packaging: Installed: iptables-1.8.4-17.el8.aarch64 1611853487 894d7d7611e90a46fccfb68ce9e74f23d06135e8c3051772885374ed1986854f 00:57:32,482 INFO anaconda:packaging: Configuring (running scriptlet for): iptables-1.8.4-17.el8.aarch64 1611853487 894d7d7611e90a46fccfb68ce9e74f23d06135e8c3051772885374ed1986854f 00:57:32,516 INFO anaconda:packaging: Installed: iptables-ebtables-1.8.4-17.el8.aarch64 1611853487 4e24b51eb75563ede5ab1ccc31df20c5313f4f08a9533b4e116c57df14b44b3c 00:57:32,536 INFO anaconda:packaging: Configuring (running scriptlet for): iptables-ebtables-1.8.4-17.el8.aarch64 1611853487 4e24b51eb75563ede5ab1ccc31df20c5313f4f08a9533b4e116c57df14b44b3c 00:57:32,576 INFO anaconda:packaging: Installed: sssd-nfs-idmap-2.4.0-9.el8_4.2.aarch64 1629124289 449f63d8153bf3ad6317a2f5efe25e232282220ac9b4831de26686aacb4873e5 00:57:32,602 INFO anaconda:packaging: Installed: cairo-gobject-1.15.12-3.el8.aarch64 1557788538 c98e748866b96eab0e8ea4170fe312cb48fd46db98e23c6125b1262c4b8b495d 00:57:32,615 INFO anaconda:packaging: Installed: python3-cairo-1.16.3-6.el8.aarch64 1557807206 84ee9acac31c9363ccca04a9fab7358b9ed979f41faa7742f96b45a37df56663 00:57:32,666 INFO anaconda:packaging: Installed: python3-gobject-3.28.3-2.el8.aarch64 1595266368 1e59b06a691d101f9eab26c2950b2dbe8861ede192c2630423c5b558c21d5875 00:57:32,676 INFO anaconda:packaging: Installed: libgusb-0.3.0-1.el8.aarch64 1557584651 995a24fdcc789353e5f6670c3b14f317391aead116e782099895f44fe4a1bcd7 00:57:32,706 INFO anaconda:packaging: Installed: audit-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 2036b917615991af2730df046d2cea4b66a69d9592a4e97faeb7134bbdba45ed 00:57:32,964 INFO anaconda:packaging: Configuring (running scriptlet for): audit-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 2036b917615991af2730df046d2cea4b66a69d9592a4e97faeb7134bbdba45ed 00:57:33,086 INFO anaconda:packaging: Installed: kernel-modules-4.18.0-305.17.1.el8_4.aarch64 1631110505 682dbf792edfad0dbaaedef3d680a568878410bb58667009af25f1d5fc305416 00:57:34,313 INFO anaconda:packaging: Configuring (running scriptlet for): kernel-modules-4.18.0-305.17.1.el8_4.aarch64 1631110505 682dbf792edfad0dbaaedef3d680a568878410bb58667009af25f1d5fc305416 00:57:40,052 INFO anaconda:packaging: Installed: libblockdev-2.24-5.el8.aarch64 1610550691 32139f25d31aa0a24af7f323dd0b2b3e61a223a0625647a202a4dd096177604b 00:57:40,089 INFO anaconda:packaging: Installed: libblockdev-fs-2.24-5.el8.aarch64 1610550691 c15152fc2384c0975239d56e66dc0230910bcc4b4ec910789b566d0bdd5a402a 00:57:40,104 INFO anaconda:packaging: Installed: libblockdev-loop-2.24-5.el8.aarch64 1610550691 84a35e99f477325de799c003dda1f18fc4f55aa0568d2a8f76ceead48018be87 00:57:40,117 INFO anaconda:packaging: Installed: libblockdev-part-2.24-5.el8.aarch64 1610550691 2f84090ca73dda79376d3abd8a9e77c8cd2665b2979c0544da48ec1bf8b7a6be 00:57:40,131 INFO anaconda:packaging: Installed: libblockdev-swap-2.24-5.el8.aarch64 1610550691 3888acd343f7f6763c69c68c96605987b07739279124ab3fdb74391c8545b775 00:57:40,161 INFO anaconda:packaging: Installed: libmbim-1.20.2-1.el8.aarch64 1586220057 be00b7c6f61da34124858a5027f889c6ac47fc1e93b871e9c7c3be034f7c2137 00:57:40,211 INFO anaconda:packaging: Configuring (running scriptlet for): libmbim-1.20.2-1.el8.aarch64 1586220057 be00b7c6f61da34124858a5027f889c6ac47fc1e93b871e9c7c3be034f7c2137 00:57:40,242 INFO anaconda:packaging: Installed: libqmi-1.24.0-1.el8.aarch64 1586461744 ae46383205e15ba9b4fb8ec6ff2f360146a2118e534658894be80653aec40e6a 00:57:40,409 INFO anaconda:packaging: Configuring (running scriptlet for): libqmi-1.24.0-1.el8.aarch64 1586461744 ae46383205e15ba9b4fb8ec6ff2f360146a2118e534658894be80653aec40e6a 00:57:40,440 INFO anaconda:packaging: Installed: python3-pydbus-0.6.0-5.el8.noarch 1557807976 bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549 00:57:40,591 INFO anaconda:packaging: Installed: PackageKit-glib-1.1.12-6.el8.aarch64 1592260767 f6b8397ec69323c3e0d12c1e4bfe55bc048060696412c9f17a82541683b5d98f 00:57:40,630 INFO anaconda:packaging: Installed: libverto-libevent-0.3.0-5.el8.aarch64 1557535347 c32f372529ad09dea40f1262ceec38464f1bd8aa8acb2ba1358e0d1742743261 00:57:40,643 INFO anaconda:packaging: Installed: gssproxy-0.8.0-19.el8.aarch64 1607018482 a66c5d0bba10bc7f363b7e4b13763f563ca9c052662c7b2ac42e87922655ee7f 00:57:40,693 INFO anaconda:packaging: Configuring (running scriptlet for): gssproxy-0.8.0-19.el8.aarch64 1607018482 a66c5d0bba10bc7f363b7e4b13763f563ca9c052662c7b2ac42e87922655ee7f 00:57:40,732 INFO anaconda:packaging: Configuring (running scriptlet for): unbound-libs-1.7.3-15.el8.aarch64 1607569361 eee895f5f57ddeb26b84ec90d0719092cee4585f0a92a2be708a2a86db79e72f 00:57:40,769 INFO groupadd:group added to /etc/group: name=unbound, GID=994 00:57:40,773 INFO groupadd:group added to /etc/gshadow: name=unbound 00:57:40,777 INFO groupadd:new group: name=unbound, GID=994 00:57:40,800 INFO useradd:new user: name=unbound, UID=997, GID=994, home=/etc/unbound, shell=/sbin/nologin 00:57:40,826 INFO anaconda:packaging: Installed: unbound-libs-1.7.3-15.el8.aarch64 1607569361 eee895f5f57ddeb26b84ec90d0719092cee4585f0a92a2be708a2a86db79e72f 00:57:40,947 INFO anaconda:packaging: Configuring (running scriptlet for): unbound-libs-1.7.3-15.el8.aarch64 1607569361 eee895f5f57ddeb26b84ec90d0719092cee4585f0a92a2be708a2a86db79e72f 00:57:41,003 INFO anaconda:packaging: Installed: python3-unbound-1.7.3-15.el8.aarch64 1607569361 a67e1a1f75ea5320d8e8d07512f907caa0fb7198624a5b5e8b730223f2979f89 00:57:41,110 INFO anaconda:packaging: Configuring (running scriptlet for): rpcbind-1.2.5-8.el8.aarch64 1606871753 19de7245f0ce7a0fed90263e2b63d98edb549ba1f40ce17916842ef3eb937c44 00:57:41,142 INFO groupadd:group added to /etc/group: name=rpc, GID=32 00:57:41,147 INFO groupadd:group added to /etc/gshadow: name=rpc 00:57:41,150 INFO groupadd:new group: name=rpc, GID=32 00:57:41,178 INFO useradd:new user: name=rpc, UID=32, GID=32, home=/var/lib/rpcbind, shell=/sbin/nologin 00:57:41,203 INFO anaconda:packaging: Installed: rpcbind-1.2.5-8.el8.aarch64 1606871753 19de7245f0ce7a0fed90263e2b63d98edb549ba1f40ce17916842ef3eb937c44 00:57:41,246 INFO anaconda:packaging: Configuring (running scriptlet for): rpcbind-1.2.5-8.el8.aarch64 1606871753 19de7245f0ce7a0fed90263e2b63d98edb549ba1f40ce17916842ef3eb937c44 00:57:41,318 INFO anaconda:packaging: Configuring (running scriptlet for): rpcbind-1.2.5-8.el8.aarch64 1606871753 19de7245f0ce7a0fed90263e2b63d98edb549ba1f40ce17916842ef3eb937c44 00:57:41,396 INFO anaconda:packaging: Configuring (running scriptlet for): rpcbind-1.2.5-8.el8.aarch64 1606871753 19de7245f0ce7a0fed90263e2b63d98edb549ba1f40ce17916842ef3eb937c44 00:57:41,471 INFO anaconda:packaging: Installed: rpm-plugin-selinux-4.14.3-14.el8_4.aarch64 1622657806 6d8622539ece77db21387ee85a70ae2884acdd5633a2aa4001137beb163328af 00:57:41,492 INFO anaconda:packaging: Installed: selinux-policy-3.14.3-67.el8_4.1.noarch 1628610155 89744b87b55becba254445b2396c397a40422b8e95dab3a7eac4decd5008d651 00:57:41,509 INFO anaconda:packaging: Configuring (running scriptlet for): selinux-policy-3.14.3-67.el8_4.1.noarch 1628610155 89744b87b55becba254445b2396c397a40422b8e95dab3a7eac4decd5008d651 00:57:41,531 INFO anaconda:packaging: Configuring (running scriptlet for): selinux-policy-3.14.3-67.el8_4.1.noarch 1628610155 89744b87b55becba254445b2396c397a40422b8e95dab3a7eac4decd5008d651 00:57:41,589 INFO anaconda:packaging: Configuring (running scriptlet for): selinux-policy-targeted-3.14.3-67.el8_4.1.noarch 1628610155 b7995e380c09dfb1859a219ed12fe77ce962fe4d1b578b597d461c04623bdebe 00:57:41,606 INFO anaconda:packaging: Installed: selinux-policy-targeted-3.14.3-67.el8_4.1.noarch 1628610155 b7995e380c09dfb1859a219ed12fe77ce962fe4d1b578b597d461c04623bdebe Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11680/12000 00:57:49,147 INFO anaconda:packaging: Configuring (running scriptlet for): selinux-policy-targeted-3.14.3-67.el8_4.1.noarch 1628610155 b7995e380c09dfb1859a219ed12fe77ce962fe4d1b578b597d461c04623bdebe 00:57:49,444 INFO kernel:SELinux: Converting 285 SID table entries... 00:57:49,445 INFO kernel:SELinux: policy capability network_peer_controls=1 00:57:49,445 INFO kernel:SELinux: policy capability open_perms=1 00:57:49,445 INFO kernel:SELinux: policy capability extended_socket_class=1 00:57:49,445 INFO kernel:SELinux: policy capability always_check_network=0 00:57:49,445 INFO kernel:SELinux: policy capability cgroup_seclabel=1 00:57:49,445 INFO kernel:SELinux: policy capability nnp_nosuid_transition=1 00:57:49,559 INFO dbus-daemon:[system] Reloaded configuration 00:57:49,568 INFO dbus-daemon:Reloaded configuration 00:57:50,108 INFO anaconda:packaging: Installed: timedatex-0.5-3.el8.aarch64 1557589856 f6078b759fafad2208d3e572cec9fbfb473dea334bc7a90583811f451d493cef 00:57:50,154 INFO anaconda:packaging: Configuring (running scriptlet for): timedatex-0.5-3.el8.aarch64 1557589856 f6078b759fafad2208d3e572cec9fbfb473dea334bc7a90583811f451d493cef 00:57:50,212 INFO anaconda:packaging: Installed: python3-libsemanage-2.9-6.el8.aarch64 1612389818 bc96ccd4671ee6a42d4ad5bbfbbd67ad397d276e29b4353ca6d67ae9705924a7 00:57:50,251 INFO anaconda:packaging: Installed: python3-setools-4.3.0-2.el8.aarch64 1595367589 bd4efc248eee5517821027c94e937c69f92bac82243dc7798456fcef51521766 00:57:50,845 INFO anaconda:packaging: Installed: python3-policycoreutils-2.9-14.el8.noarch 1616130866 c28e181d809d28e50acf6614855b449ccd3a98e1499c83ffd3114785f408638e Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11670/12000 00:57:51,873 INFO anaconda:packaging: Installed: policycoreutils-python-utils-2.9-14.el8.noarch 1616130866 90a76e9e6f91deeb03c0fea610e84ce30b492b42a3bd76cf7188665d59a80274 00:57:51,996 INFO anaconda:packaging: Installed: python3-slip-0.6.4-11.el8.noarch 1557588696 233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396 00:57:52,079 INFO anaconda:packaging: Installed: python3-dateutil-1:2.6.1-6.el8.noarch 1557588521 c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea 00:57:52,240 INFO anaconda:packaging: Installed: python3-linux-procfs-0.6.3-1.el8.noarch 1610550079 dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94 00:57:52,294 INFO anaconda:packaging: Installed: python3-pyudev-0.21.0-7.el8.noarch 1557588691 aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45 00:57:52,457 INFO anaconda:packaging: Configuring (running scriptlet for): authselect-libs-1.2.2-2.el8.aarch64 1616085339 a43092414c4c98fee4c92aa4bd4811ef17ba0b6f486b8c6f36e3fba8dce295f3 00:57:52,476 INFO anaconda:packaging: Installed: authselect-libs-1.2.2-2.el8.aarch64 1616085339 a43092414c4c98fee4c92aa4bd4811ef17ba0b6f486b8c6f36e3fba8dce295f3 00:57:52,730 INFO anaconda:packaging: Installed: mdadm-4.1-16.el8_4.aarch64 1628609260 6929d61ca2b5a2e3975353e07e91e05669649f5a296a048ca3b5a166e1d5a514 00:57:53,184 INFO anaconda:packaging: Configuring (running scriptlet for): mdadm-4.1-16.el8_4.aarch64 1628609260 6929d61ca2b5a2e3975353e07e91e05669649f5a296a048ca3b5a166e1d5a514 00:57:53,243 INFO anaconda:packaging: Installed: libblockdev-mdraid-2.24-5.el8.aarch64 1610550691 d56c41cbf844250ed8de74d3c6e0d0ed4085cf3bace19b4f542350c411e731e7 00:57:53,258 INFO anaconda:packaging: Installed: oddjob-0.34.7-1.el8.aarch64 1608178851 6f06a99c5365fe31fe74f3466629d1d9f670baf06e760b23cce0dc082fd645d5 00:57:53,330 INFO anaconda:packaging: Configuring (running scriptlet for): oddjob-0.34.7-1.el8.aarch64 1608178851 6f06a99c5365fe31fe74f3466629d1d9f670baf06e760b23cce0dc082fd645d5 00:57:53,371 INFO dbus-daemon:[system] Reloaded configuration 00:57:53,377 INFO dbus-daemon:Reloaded configuration 00:57:53,392 INFO anaconda:packaging: Installed: oddjob-mkhomedir-0.34.7-1.el8.aarch64 1608178851 56d7f758e6741340af8c85568a1b154ad4021ba283899a4d07da7f89ad54a5be 00:57:53,424 INFO anaconda:packaging: Configuring (running scriptlet for): oddjob-mkhomedir-0.34.7-1.el8.aarch64 1608178851 56d7f758e6741340af8c85568a1b154ad4021ba283899a4d07da7f89ad54a5be 00:57:53,463 INFO anaconda:packaging: Installed: authselect-1.2.2-2.el8.aarch64 1616085339 b9854a81f41a7d258f9ebe6b8705b1af236271dc8779edfa75bf9be30d72eb79 00:57:53,465 INFO dbus-daemon:[system] Reloaded configuration 00:57:53,471 INFO dbus-daemon:Reloaded configuration 00:57:53,544 INFO anaconda:packaging: Installed: libxmlb-0.1.15-1.el8.aarch64 1589587122 681a63da0ba730eb9acfc209b02e0df7d9cb48722703389c05461e56848b8a93 00:57:53,584 INFO anaconda:packaging: Installed: ModemManager-glib-1.10.8-2.el8.aarch64 1587696517 dbed55a96bd89a636f21a71a6e21a1f0282be7dc9cafdbbba44214a03d4f796e 00:57:53,654 INFO anaconda:packaging: Configuring (running scriptlet for): ModemManager-glib-1.10.8-2.el8.aarch64 1587696517 dbed55a96bd89a636f21a71a6e21a1f0282be7dc9cafdbbba44214a03d4f796e 00:57:53,709 INFO anaconda:packaging: Installed: dbus-glib-0.110-2.el8.aarch64 1557580884 eb5c0f62803580e76f09d53bec1fb4797f03846537fb0d050fd62045b7ce64ce 00:57:53,760 INFO anaconda:packaging: Configuring (running scriptlet for): dbus-glib-0.110-2.el8.aarch64 1557580884 eb5c0f62803580e76f09d53bec1fb4797f03846537fb0d050fd62045b7ce64ce 00:57:53,788 INFO anaconda:packaging: Installed: python3-dbus-1.2.4-15.el8.aarch64 1573230892 116c1d18b0bda6388cde56e4c93f28b2449dc496ea6a9c5e2d4b581065e2e6c4 00:57:53,946 INFO anaconda:packaging: Installed: python3-slip-dbus-0.6.4-11.el8.noarch 1557588696 563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639 00:57:54,035 INFO anaconda:packaging: Installed: gsettings-desktop-schemas-3.32.0-5.el8.aarch64 1595357281 ca7db91c6d3c963ca8b697e018762fdf7329a0f6186b5e7a5a38555e4962290a 00:57:54,438 INFO anaconda:packaging: Installed: glib-networking-2.56.1-1.1.el8.aarch64 1557581996 aeb3b5ca60e55077ecf9da81d6bcb50a86b909808d7373f3f8a372dabcc1eedb 00:57:54,685 INFO anaconda:packaging: Installed: cockpit-bridge-238.2-1.el8.aarch64 1615860600 ba28345b1f36652df778eeaf1435e507dad5d40ec0a121c4df89ab596700e14d 00:57:54,850 INFO anaconda:packaging: Installed: libsoup-2.62.3-2.el8.aarch64 1602003331 fe9e12b98655b4ccc8cae9ac2d9860709de999486a86456f8f9134840e70dfb3 00:57:55,115 INFO anaconda:packaging: Installed: libappstream-glib-0.7.14-3.el8.aarch64 1557584046 791e9574c613eed49b92680ff89cf786f7f3d7bac52bc5427b72b2ea5058dfab 00:57:55,289 INFO anaconda:packaging: Installed: libgcab1-1.1-1.el8.aarch64 1557581753 2b631d5095ee3489538ca00499ac65e2815ace2d1feed0996cbbab54762b2fa8 00:57:55,383 INFO anaconda:packaging: Installed: libsecret-0.18.6-1.el8.aarch64 1557585898 6665ea7ce8357d9678ed40a58981a554bf0b843b434c839755bc784aef6f2a85 00:57:55,562 INFO anaconda:packaging: Installed: pinentry-1.1.0-2.el8.aarch64 1557806682 cd55ba5d97f3de548d5fa7e14b9ff2924300f620dfc8013d55d8b2e031c36d36 00:57:55,607 INFO anaconda:packaging: Configuring (running scriptlet for): pinentry-1.1.0-2.el8.aarch64 1557806682 cd55ba5d97f3de548d5fa7e14b9ff2924300f620dfc8013d55d8b2e031c36d36 00:57:55,630 INFO anaconda:packaging: Installed: gnupg2-smime-2.2.20-2.el8.aarch64 1589573397 23aadf767124fc38a0dade4a824e48b53ad5d873d389ce442d5d5b3665fde2a6 00:57:55,692 INFO anaconda:packaging: Installed: gnupg2-2.2.20-2.el8.aarch64 1589573397 5c1fb984527d2c638364bcca6d016cd8a4ff9d656875d9e29b199eef6b41a527 00:57:56,520 INFO anaconda:packaging: Installed: gpgme-1.13.1-7.el8.aarch64 1609882988 cf82a6ec23b9fa60f30fc8d3c8b30c6d1423f81ebedbe06ec7bb32a8b1d7a904 00:57:56,617 INFO anaconda:packaging: Installed: librepo-1.12.0-3.el8.aarch64 1608178906 75c3348327e6fc7de78abc552f3ff5fd908e6a688a486fd1674b3e040e88be59 00:57:56,647 INFO anaconda:packaging: Installed: libdnf-0.55.0-7.el8.aarch64 1615494753 f57143929020c17c77bcb242087060a0bfb976c0c7eca0dcbb63a440116ce85e 00:57:56,897 INFO anaconda:packaging: Installed: python3-libdnf-0.55.0-7.el8.aarch64 1615494753 f5caf82f2a2d683e69d99f96395dfa02472186473ba58edf4e41ac8af79e0bd9 00:57:57,175 INFO anaconda:packaging: Installed: python3-hawkey-0.55.0-7.el8.aarch64 1615494753 f0173d65c9fa3e16a25c14ecb901f8736286ff5f08e529ad816a242ca76ae1f9 00:57:57,222 INFO anaconda:packaging: Installed: PackageKit-1.1.12-6.el8.aarch64 1592260767 8cb3ec4e989bd4683533ffd91ac7b7eae70465e175fc3cee5bb7aa8950c9c767 00:57:57,619 INFO anaconda:packaging: Configuring (running scriptlet for): PackageKit-1.1.12-6.el8.aarch64 1592260767 8cb3ec4e989bd4683533ffd91ac7b7eae70465e175fc3cee5bb7aa8950c9c767 00:57:57,658 INFO anaconda:packaging: Installed: python3-gpg-1.13.1-7.el8.aarch64 1609882988 26962c14b5d9645d815f6c9c23cbbec935321c4cdde3d62adc26f322019da36b 00:57:57,933 INFO anaconda:packaging: Installed: libuser-0.62-23.el8.aarch64 1573234877 7235adbeb071f9076a9595523cae26a97be5afbb015ccab9ba459764e4cc4ee0 00:57:58,281 INFO anaconda:packaging: Configuring (running scriptlet for): libuser-0.62-23.el8.aarch64 1573234877 7235adbeb071f9076a9595523cae26a97be5afbb015ccab9ba459764e4cc4ee0 00:57:58,313 INFO anaconda:packaging: Installed: libudisks2-2.9.0-6.el8.aarch64 1611853804 788080bc6161a6e23db3718ede2b4615d499d929810c5d5b5ae62fb60b23eecc 00:57:58,371 INFO anaconda:packaging: Installed: grub2-tools-extra-1:2.02-99.el8.aarch64 1614718965 c00604e003e6f6ad649397b2c371c5cf4bdc616060995080078e75febd88e04f 00:57:58,718 INFO anaconda:packaging: Installed: dracut-squash-049-135.git20210121.el8.aarch64 1613121073 c262218c02f26800db8fe4ef7cb417f8a63ca46c26042f6da5cf09cc9f6ace14 00:57:58,738 INFO anaconda:packaging: Installed: virt-what-1.18-9.el8_4.aarch64 1628609265 402c99315251325e7f4fe19d88035371e8d70009030fb299beede37bae194f9f 00:57:58,763 INFO anaconda:packaging: Installed: sssd-client-2.4.0-9.el8_4.2.aarch64 1629124289 25a6aec26d3ddc649a07e719b4f3a66841d8a170d3068f416d2a2486d00dea40 00:57:58,846 INFO anaconda:packaging: Configuring (running scriptlet for): sssd-client-2.4.0-9.el8_4.2.aarch64 1629124289 25a6aec26d3ddc649a07e719b4f3a66841d8a170d3068f416d2a2486d00dea40 00:57:58,887 INFO anaconda:packaging: Installed: sudo-1.8.29-7.el8.aarch64 1612458867 633737dc830de1084efc2637d6f4246f4a5b93eba3106184e4541f698c4f99e9 00:57:59,335 INFO anaconda:packaging: Configuring (running scriptlet for): sudo-1.8.29-7.el8.aarch64 1612458867 633737dc830de1084efc2637d6f4246f4a5b93eba3106184e4541f698c4f99e9 00:57:59,355 INFO anaconda:packaging: Installed: rpm-plugin-systemd-inhibit-4.14.3-14.el8_4.aarch64 1622657806 1e343be31cc08d9385d4593d945ae3465b14713660f88e074948d04291f63209 00:57:59,372 INFO anaconda:packaging: Installed: bind-export-libs-32:9.11.26-4.el8_4.aarch64 1622149187 6984533e753692a567798b57edacbe76abdc5dfa5a51711dd1d2a7fcc9a85ce7 00:57:59,595 INFO anaconda:packaging: Configuring (running scriptlet for): bind-export-libs-32:9.11.26-4.el8_4.aarch64 1622149187 6984533e753692a567798b57edacbe76abdc5dfa5a51711dd1d2a7fcc9a85ce7 00:57:59,626 INFO anaconda:packaging: Installed: libsss_certmap-2.4.0-9.el8_4.2.aarch64 1629124289 358c01a3cedc44b005d28c28ceafdba8878a4e27ea7e7223ecfe64dc6ba4ce2c 00:57:59,666 INFO anaconda:packaging: Configuring (running scriptlet for): libsss_certmap-2.4.0-9.el8_4.2.aarch64 1629124289 358c01a3cedc44b005d28c28ceafdba8878a4e27ea7e7223ecfe64dc6ba4ce2c 00:57:59,698 INFO anaconda:packaging: Configuring (running scriptlet for): sssd-common-2.4.0-9.el8_4.2.aarch64 1629124289 c48c87a446aa2298ea23d37252dfd4db44705d8635e71541e1fb484ea5dd9d10 00:57:59,757 INFO groupadd:group added to /etc/group: name=sssd, GID=993 00:57:59,763 INFO groupadd:group added to /etc/gshadow: name=sssd 00:57:59,767 INFO groupadd:new group: name=sssd, GID=993 00:57:59,794 INFO useradd:new user: name=sssd, UID=996, GID=993, home=/, shell=/sbin/nologin 00:57:59,841 INFO anaconda:packaging: Installed: sssd-common-2.4.0-9.el8_4.2.aarch64 1629124289 c48c87a446aa2298ea23d37252dfd4db44705d8635e71541e1fb484ea5dd9d10 00:58:00,507 INFO anaconda:packaging: Configuring (running scriptlet for): sssd-common-2.4.0-9.el8_4.2.aarch64 1629124289 c48c87a446aa2298ea23d37252dfd4db44705d8635e71541e1fb484ea5dd9d10 00:58:00,679 INFO anaconda:packaging: Installed: mokutil-1:0.3.0-11.el8.aarch64 1611112249 7497656e09f43d0bbd9f97a89736b0d46bd8fe4ac823d78c5165b4efd9b5b4d2 00:58:00,707 INFO anaconda:packaging: Configuring (running scriptlet for): tpm2-tss-2.3.2-3.el8.aarch64 1606872642 c5f38ac5bbae4a978bb96cc5b89a3abc0bdcc7b66325845805d0766820d1746f 00:58:00,728 INFO anaconda:packaging: Installed: tpm2-tss-2.3.2-3.el8.aarch64 1606872642 c5f38ac5bbae4a978bb96cc5b89a3abc0bdcc7b66325845805d0766820d1746f 00:58:00,839 INFO anaconda:packaging: Configuring (running scriptlet for): tpm2-tss-2.3.2-3.el8.aarch64 1606872642 c5f38ac5bbae4a978bb96cc5b89a3abc0bdcc7b66325845805d0766820d1746f 00:58:00,872 INFO anaconda:packaging: Installed: ima-evm-utils-1.3.2-12.el8.aarch64 1614064293 b2dca0b246c7df7a398d9a1708c45ec6697a69afce5fe0cf1e2629fea1776ac9 00:58:00,910 INFO anaconda:packaging: Installed: rpm-build-libs-4.14.3-14.el8_4.aarch64 1622657806 a9639b60bf7092f42b803296c0ccd86a3b0e854afd2459cece3b12a6baa3ea67 00:58:00,945 INFO anaconda:packaging: Configuring (running scriptlet for): rpm-build-libs-4.14.3-14.el8_4.aarch64 1622657806 a9639b60bf7092f42b803296c0ccd86a3b0e854afd2459cece3b12a6baa3ea67 00:58:00,977 INFO anaconda:packaging: Installed: python3-rpm-4.14.3-14.el8_4.aarch64 1622657806 19ddc3902ffa6347448c4a5c43683d4425483e2218ef5ddacaf73bda56aaadb9 00:58:01,049 INFO anaconda:packaging: Installed: sscg-2.3.3-14.el8.aarch64 1587693565 b0ee4de357e56889a4f62eb2294ff18997150ca2cef4d208a6eca566114997b8 00:58:01,075 INFO anaconda:packaging: Installed: dhcp-libs-12:4.3.6-44.0.1.el8.aarch64 1610994845 4591e8cca5f1273ce89ad91015eb2feb070ae0fbd2feed752c9fcf54c7fedc47 00:58:01,102 INFO anaconda:packaging: Installed: dhcp-client-12:4.3.6-44.0.1.el8.aarch64 1610994845 c05c1e1158621f0eb34f9827ba8b43216422803cb6ea8497c2a2674200934980 00:58:01,181 INFO anaconda:packaging: Installed: dracut-network-049-135.git20210121.el8.aarch64 1613121073 10aa2ffa836febb6d3d54d7fe7e6504d863427176fe2bb45fb592067615a8db2 00:58:01,350 INFO anaconda:packaging: Installed: kexec-tools-2.0.20-46.el8_4.2.aarch64 1628609412 1b85ecc1b5a9faeaf3a880ca40ebfd5ffce571bc198575eb726884d3a0c9add6 00:58:01,579 INFO anaconda:packaging: Configuring (running scriptlet for): kexec-tools-2.0.20-46.el8_4.2.aarch64 1628609412 1b85ecc1b5a9faeaf3a880ca40ebfd5ffce571bc198575eb726884d3a0c9add6 00:58:01,623 INFO anaconda:packaging: Installed: libatasmart-0.19-14.el8.aarch64 1557796170 2cb6c88868446219d7cb277e3592f10aa233c9f8cecda16594a21ef35e212565 00:58:01,661 INFO anaconda:packaging: Configuring (running scriptlet for): libatasmart-0.19-14.el8.aarch64 1557796170 2cb6c88868446219d7cb277e3592f10aa233c9f8cecda16594a21ef35e212565 00:58:01,693 INFO anaconda:packaging: Installed: python3-systemd-234-8.el8.aarch64 1557875997 b44932e4383ed1a197cacb9af673eb527ad5903202db0c573aeac879f42d7a9a 00:58:01,795 INFO anaconda:packaging: Installed: setroubleshoot-plugins-3.3.13-1.el8.noarch 1597701373 30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11660/12000 00:58:02,480 INFO anaconda:packaging: Configuring (running scriptlet for): setroubleshoot-server-3.3.24-3.el8.aarch64 1613120829 f1ae77b49730d555d9da6e18393cf8f9269539a798d7a8cb639fb7222bbd5cf0 00:58:02,512 INFO useradd:new group: name=setroubleshoot, GID=992 00:58:02,513 INFO useradd:new user: name=setroubleshoot, UID=995, GID=992, home=/var/lib/setroubleshoot, shell=/sbin/nologin 00:58:02,678 INFO anaconda:packaging: Installed: setroubleshoot-server-3.3.24-3.el8.aarch64 1613120829 f1ae77b49730d555d9da6e18393cf8f9269539a798d7a8cb639fb7222bbd5cf0 00:58:03,208 INFO anaconda:packaging: Configuring (running scriptlet for): setroubleshoot-server-3.3.24-3.el8.aarch64 1613120829 f1ae77b49730d555d9da6e18393cf8f9269539a798d7a8cb639fb7222bbd5cf0 00:58:03,367 INFO anaconda:packaging: Installed: centos-logos-85.8-1.el8.aarch64 1624917426 66fed01641bb8315ed965e41b7511a7861faccc15c370afaf6c3ac4505d85ccb 00:58:03,659 INFO anaconda:packaging: Configuring (running scriptlet for): centos-logos-85.8-1.el8.aarch64 1624917426 66fed01641bb8315ed965e41b7511a7861faccc15c370afaf6c3ac4505d85ccb 00:58:03,677 INFO anaconda:packaging: Configuring (running scriptlet for): logrotate-3.14.0-4.el8.aarch64 1589594143 652669a54f26b9d3d43a344c7b1ddd50c9601acaed10779f7183bbf9b730a351 00:58:03,693 INFO anaconda:packaging: Installed: logrotate-3.14.0-4.el8.aarch64 1589594143 652669a54f26b9d3d43a344c7b1ddd50c9601acaed10779f7183bbf9b730a351 00:58:03,737 INFO anaconda:packaging: Installed: nss-sysinit-3.53.1-17.el8_3.aarch64 1608262942 4bab308159d367165e2712cc7ba065406479b9fb821d9765c2637f83d63599b0 00:58:03,768 INFO anaconda:packaging: Installed: nss-3.53.1-17.el8_3.aarch64 1608262942 97d225efd3895a04e38d49c7b23ebed1f88e129c27528cdb4ad04c7f89d5fd09 00:58:04,139 INFO anaconda:packaging: Installed: volume_key-libs-0.3.11-5.el8.aarch64 1573244013 3ec4f0a88c90f2021507016d369c7a77aac7c3d120ab35a30532235b4eb524f5 00:58:04,283 INFO anaconda:packaging: Installed: libblockdev-crypto-2.24-5.el8.aarch64 1610550691 cd64280a4ed9674ab653e1ac2310dd760aeed80d1375ac993e4f55667bba68ac 00:58:04,297 INFO anaconda:packaging: Installed: udisks2-2.9.0-6.el8.aarch64 1611853804 50afb4276b205dcb04b9b689aa298beb8ebfc7b1c9a3fbf3be0f4e43417bfd06 00:58:04,627 INFO anaconda:packaging: Configuring (running scriptlet for): udisks2-2.9.0-6.el8.aarch64 1611853804 50afb4276b205dcb04b9b689aa298beb8ebfc7b1c9a3fbf3be0f4e43417bfd06 00:58:04,886 INFO anaconda:packaging: Installed: fwupd-1.5.9-1.el8_4.aarch64 1624990598 15191dde68fc59ef8cf0e783d046d53a1dcb8ff96eba99852335cb7be58fdfaf 00:58:04,950 INFO systemd-udevd:Using default interface naming scheme 'rhel-8.0'. 00:58:04,973 DEBUG NetworkManager: [1631667484.9729] platform-linux: UDEV event: action 'change' subsys 'net' device 'enp1s0' (2); seqnum=2194 00:58:05,081 DEBUG NetworkManager: [1631667485.0816] platform-linux: UDEV event: action 'change' subsys 'net' device 'lo' (1); seqnum=2316 00:58:05,175 INFO systemd-logind:Watching system buttons on /dev/input/event0 (Power Button) 00:58:06,018 INFO anaconda:packaging: Configuring (running scriptlet for): fwupd-1.5.9-1.el8_4.aarch64 1624990598 15191dde68fc59ef8cf0e783d046d53a1dcb8ff96eba99852335cb7be58fdfaf 00:58:06,070 INFO anaconda:packaging: Installed: teamd-1.31-2.el8.aarch64 1599579275 a2b5f3f92b2265a36c8a33b8315e56cd1399ac33d04ae2f34cb47ae56d89824f 00:58:06,205 INFO anaconda:packaging: Installed: NetworkManager-team-1:1.30.0-10.el8_4.aarch64 1628609604 c9be0a5a2d9c5fd282c63e6acb33d4a216980ddb6dec1f3bbe19fa2f5e695178 00:58:06,219 INFO anaconda:packaging: Installed: quota-1:4.04-12.el8.aarch64 1611111782 d64ea344f88f24fa4ba7f16d69657754111c8a1d7b3b008dc6244f10fdf58f3a 00:58:06,418 INFO anaconda:packaging: Installed: kernel-tools-4.18.0-305.17.1.el8_4.aarch64 1631110505 10694fcf2fbe697a37c105b2f7e4a71455662fe43ba91c337712bff07ad7dffd 00:58:06,546 INFO anaconda:packaging: Installed: python3-chardet-3.0.4-7.el8.noarch 1557588504 176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652 00:58:06,857 INFO anaconda:packaging: Installed: python3-idna-2.5-5.el8.noarch 1557588568 78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc 00:58:06,952 INFO anaconda:packaging: Installed: python3-libcomps-0.1.11-5.el8.aarch64 1612422297 702db562b775f8b2728a5a719c3818f94d78d7f533f10eeceda1f49dca637a2e 00:58:07,001 INFO anaconda:packaging: Installed: python3-dnf-4.4.2-11.el8.noarch 1615491563 31f906e19cd725334dbf542b607604e019e34f5796d69f17afdd8470ce982b0b 00:58:07,683 INFO anaconda:packaging: Installed: dnf-4.4.2-11.el8.noarch 1615491563 889a4e0f9fa8e150b433dd201537d4ee621cc46d5a82d1037ec50288ad772b63 00:58:07,923 INFO anaconda:packaging: Configuring (running scriptlet for): dnf-4.4.2-11.el8.noarch 1615491563 889a4e0f9fa8e150b433dd201537d4ee621cc46d5a82d1037ec50288ad772b63 00:58:07,966 INFO anaconda:packaging: Installed: python3-dnf-plugins-core-4.0.18-4.el8.noarch 1615491543 932108dfb97eca6e5ecc724275a74934d9f13f4969c67c981759c2e0b2d0ef09 00:58:08,191 INFO anaconda:packaging: Installed: dnf-plugins-core-4.0.18-4.el8.noarch 1615491543 b3c2b3517021435b23f1e923ada351a80c0a6c2b5f7df4d54a4574cfbe3fbbbd 00:58:08,308 INFO anaconda:packaging: Installed: python3-perf-4.18.0-305.17.1.el8_4.aarch64 1631110505 cf390bc738f2dcbcd4a9174532190d543bbdfcf2fbee452c5e28fb8a2b0b4963 00:58:08,368 INFO anaconda:packaging: Installed: python3-ply-3.9-9.el8.noarch 1610439834 d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf 00:58:08,456 INFO anaconda:packaging: Installed: python3-pycparser-2.14-14.el8.noarch 1557588721 8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7 00:58:08,610 INFO anaconda:packaging: Installed: python3-cffi-1.11.5-5.el8.aarch64 1557588468 7cf94e71d42aecccf095c8225aabe5085f8cf7fb4f956fabbe04d23ba7688029 00:58:08,826 INFO anaconda:packaging: Installed: python3-cryptography-3.2.1-4.el8.aarch64 1614670255 d63ab488f12e9c43a6f915cba388b381677a2f89b2c8910852b1de906978b1fc 00:58:09,771 INFO anaconda:packaging: Installed: python3-jwt-1.6.1-2.el8.noarch 1557588633 ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1 00:58:09,885 INFO anaconda:packaging: Installed: python3-oauthlib-2.1.0-1.el8.noarch 1557588664 20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631 00:58:10,243 INFO anaconda:packaging: Installed: python3-pysocks-1.6.8-3.el8.noarch 1557588655 7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154 00:58:10,281 INFO anaconda:packaging: Installed: python3-urllib3-1.24.2-5.el8.noarch 1605564342 aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0 00:58:10,558 INFO anaconda:packaging: Installed: python3-requests-2.20.0-2.1.el8_1.noarch 1576103860 003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9 00:58:10,719 INFO anaconda:packaging: Installed: python3-schedutils-0.6-6.el8.aarch64 1573239506 7d11819e0646e34f1489fbe9f6673a6cd701657d8ae1fe0ca370f7421150163f 00:58:10,753 INFO anaconda:packaging: Installed: python3-syspurpose-1.28.13-3.el8_4.aarch64 1624987943 7f9da23e1d17a92e598b355281cb1494398df32ed2c6654ba1ebc10a4ef8e3b2 00:58:10,857 INFO anaconda:packaging: Installed: python3-jsonpointer-1.10-11.el8.noarch 1557807561 60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2 00:58:10,896 INFO anaconda:packaging: Installed: python3-jsonpatch-1.21-2.el8.noarch 1557876014 85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae 00:58:10,939 INFO anaconda:packaging: Installed: python3-jsonschema-2.6.0-4.el8.noarch 1557807600 0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7 00:58:11,102 INFO anaconda:packaging: Installed: python3-markupsafe-0.23-19.el8.aarch64 1557807744 b0c806fe44182d354d8397045090bdc18c44dc1185895f7340d91406534cb186 00:58:11,175 INFO anaconda:packaging: Installed: python3-prettytable-0.7.2-14.el8.noarch 1557807872 1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3 00:58:11,216 INFO anaconda:packaging: Installed: python3-ptyprocess-0.5.2-4.el8.noarch 1557807949 499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958 00:58:11,259 INFO anaconda:packaging: Installed: python3-pexpect-4.3.1-3.el8.noarch 1557875976 0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817 00:58:11,494 INFO anaconda:packaging: Installed: sos-4.0-11.el8.noarch 1616085036 83bc9ea2fd57eb29a4390165af36b7246a7cf47face1c7cf29cd8422dde1f3e0 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11650/12000 00:58:13,825 INFO anaconda:packaging: Installed: python3-pyserial-3.1.1-8.el8.noarch 1557807164 82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4 00:58:14,083 INFO anaconda:packaging: Installed: python3-pytz-2017.2-9.el8.noarch 1557808381 0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52 00:58:14,166 INFO anaconda:packaging: Installed: python3-babel-2.5.1-5.el8.noarch 1573230266 9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96 00:58:17,406 INFO anaconda:packaging: Installed: python3-jinja2-2.10.1-2.el8_0.noarch 1561995907 5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70 00:58:17,999 INFO anaconda:packaging: Installed: nftables-1:0.9.3-18.el8.aarch64 1615411625 b5a6e135afed7038aa1b6f5f53ddb98fc079765fcd84ec36b27c4af3dae3d33a 00:58:18,090 INFO anaconda:packaging: Configuring (running scriptlet for): nftables-1:0.9.3-18.el8.aarch64 1615411625 b5a6e135afed7038aa1b6f5f53ddb98fc079765fcd84ec36b27c4af3dae3d33a 00:58:18,129 INFO anaconda:packaging: Installed: python3-nftables-1:0.9.3-18.el8.aarch64 1615411625 e357ec4e4c90e0787fc54a045db7f2049b5909ba77dfe8e7056d1d1cec2658ec 00:58:18,156 INFO anaconda:packaging: Installed: python3-firewall-0.8.2-7.el8_4.noarch 1624987687 603dd7ed77171be1ea51107495d6048d389c3b50bde6c17483243c601fe8dba2 00:58:18,567 INFO anaconda:packaging: Installed: firewalld-0.8.2-7.el8_4.noarch 1624987687 f6e07230b5e1542bf8c7f6a34302f53b6043c25ad26c2f6b63bf03788ed7770d 00:58:19,461 INFO anaconda:packaging: Configuring (running scriptlet for): firewalld-0.8.2-7.el8_4.noarch 1624987687 f6e07230b5e1542bf8c7f6a34302f53b6043c25ad26c2f6b63bf03788ed7770d 00:58:19,506 INFO anaconda:packaging: Installed: cloud-init-20.3-10.el8_4.5.noarch 1628609723 1cfa312db77c6924cf07dfb3481d13ebb291cef2c7fdc2c5d78b0da339bef30e 00:58:21,207 INFO anaconda:packaging: Configuring (running scriptlet for): cloud-init-20.3-10.el8_4.5.noarch 1628609723 1cfa312db77c6924cf07dfb3481d13ebb291cef2c7fdc2c5d78b0da339bef30e 00:58:21,319 INFO anaconda:packaging: Installed: cockpit-system-238.2-1.el8.noarch 1615860600 4984500d518281452e5a6505e40cb5215c9e9b590ae947709c59f5e1b00259a3 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11640/12000 00:58:22,349 INFO anaconda:packaging: Installed: tuned-2.15.0-2.el8_4.1.noarch 1622576866 3467092d88f831e8548c6c0ba1f2e955e31d12406d23814af06a9a1d533fa57b 00:58:23,379 INFO anaconda:packaging: Configuring (running scriptlet for): tuned-2.15.0-2.el8_4.1.noarch 1622576866 3467092d88f831e8548c6c0ba1f2e955e31d12406d23814af06a9a1d533fa57b 00:58:23,428 INFO anaconda:packaging: Installed: yum-utils-4.0.18-4.el8.noarch 1615491543 03029d138ec936e6b0b81cd7095f2a85d1c9688a9fb45ba49a4c956d9ea8162b 00:58:23,493 INFO anaconda:packaging: Installed: yum-4.4.2-11.el8.noarch 1615491563 5e8839ed1ad834e8e6302c3e99d9b2cc42d6cbeb496f653acbb31d0418423ccc 00:58:23,521 INFO anaconda:packaging: Configuring (running scriptlet for): nfs-utils-1:2.3.3-41.el8_4.2.aarch64 1628609553 f7654dfcc34c9e394024273ff4f29e0eb1bcac8a1e43014c9d4a2818d60aa488 00:58:23,580 INFO groupadd:group added to /etc/group: name=rpcuser, GID=29 00:58:23,584 NOTICE kernel:audit: type=1116 audit(1631667503.565:72): pid=2755 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-group id=29 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:23,586 INFO groupadd:group added to /etc/gshadow: name=rpcuser 00:58:23,594 NOTICE kernel:audit: type=1132 audit(1631667503.575:73): pid=2755 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-shadow-group id=29 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:23,634 INFO groupadd:new group: name=rpcuser, GID=29 00:58:23,695 INFO useradd:new user: name=rpcuser, UID=29, GID=29, home=/var/lib/nfs, shell=/sbin/nologin 00:58:23,704 NOTICE kernel:audit: type=1114 audit(1631667503.685:74): pid=2764 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:useradd_t:s0 msg='op=add-user acct="rpcuser" exe="/usr/sbin/useradd" hostname=? addr=? terminal=? res=success' 00:58:23,828 INFO anaconda:packaging: Installed: nfs-utils-1:2.3.3-41.el8_4.2.aarch64 1628609553 f7654dfcc34c9e394024273ff4f29e0eb1bcac8a1e43014c9d4a2818d60aa488 00:58:24,143 INFO anaconda:packaging: Configuring (running scriptlet for): nfs-utils-1:2.3.3-41.el8_4.2.aarch64 1628609553 f7654dfcc34c9e394024273ff4f29e0eb1bcac8a1e43014c9d4a2818d60aa488 00:58:24,248 INFO anaconda:packaging: Configuring (running scriptlet for): nfs-utils-1:2.3.3-41.el8_4.2.aarch64 1628609553 f7654dfcc34c9e394024273ff4f29e0eb1bcac8a1e43014c9d4a2818d60aa488 00:58:24,279 INFO anaconda:dnf: Running in chroot, ignoring request: try-restart 00:58:24,283 INFO anaconda:packaging: Configuring (running scriptlet for): nfs-utils-1:2.3.3-41.el8_4.2.aarch64 1628609553 f7654dfcc34c9e394024273ff4f29e0eb1bcac8a1e43014c9d4a2818d60aa488 00:58:24,312 INFO anaconda:dnf: Running in chroot, ignoring request: try-restart 00:58:24,318 INFO anaconda:packaging: Installed: shim-aa64-15-15.el8_2.aarch64 1596248253 6404c2bf11a3f1b5b8215807cb4a5c95d6b283dccfe2e5798ec51918337afdcb 00:58:24,500 INFO anaconda:packaging: Installed: rsyslog-8.1911.0-7.el8_4.2.aarch64 1622579675 98b8dc32885569202695c4cb9818d453fd5d5910ce37d0aa407a75d6a9d8e98b 00:58:24,837 INFO anaconda:packaging: Configuring (running scriptlet for): rsyslog-8.1911.0-7.el8_4.2.aarch64 1622579675 98b8dc32885569202695c4cb9818d453fd5d5910ce37d0aa407a75d6a9d8e98b 00:58:24,883 INFO anaconda:packaging: Configuring (running scriptlet for): cockpit-ws-238.2-1.el8.aarch64 1615860600 743541303fbe67a44dddfda88f01ca2609dcfd56bb6445422cf52de41ab66cdf 00:58:24,940 INFO groupadd:group added to /etc/group: name=cockpit-ws, GID=991 00:58:24,944 NOTICE kernel:audit: type=1116 audit(1631667504.925:75): pid=2793 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-group id=991 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:24,945 INFO groupadd:group added to /etc/gshadow: name=cockpit-ws 00:58:24,954 NOTICE kernel:audit: type=1132 audit(1631667504.935:76): pid=2793 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-shadow-group id=991 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:24,989 INFO groupadd:new group: name=cockpit-ws, GID=991 00:58:25,053 INFO useradd:new user: name=cockpit-ws, UID=994, GID=991, home=/nonexisting, shell=/sbin/nologin 00:58:25,064 NOTICE kernel:audit: type=1114 audit(1631667505.045:77): pid=2800 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:useradd_t:s0 msg='op=add-user acct="cockpit-ws" exe="/usr/sbin/useradd" hostname=? addr=? terminal=? res=success' 00:58:25,218 INFO groupadd:group added to /etc/group: name=cockpit-wsinstance, GID=990 00:58:25,224 INFO groupadd:group added to /etc/gshadow: name=cockpit-wsinstance 00:58:25,224 NOTICE kernel:audit: type=1116 audit(1631667505.205:78): pid=2808 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-group id=990 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:25,224 NOTICE kernel:audit: type=1132 audit(1631667505.205:79): pid=2808 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-shadow-group id=990 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:25,268 INFO groupadd:new group: name=cockpit-wsinstance, GID=990 00:58:25,330 INFO useradd:new user: name=cockpit-wsinstance, UID=993, GID=990, home=/nonexisting, shell=/sbin/nologin 00:58:25,334 NOTICE kernel:audit: type=1114 audit(1631667505.315:80): pid=2815 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:useradd_t:s0 msg='op=add-user acct="cockpit-wsinstance" exe="/usr/sbin/useradd" hostname=? addr=? terminal=? res=success' 00:58:25,457 INFO anaconda:packaging: Installed: cockpit-ws-238.2-1.el8.aarch64 1615860600 743541303fbe67a44dddfda88f01ca2609dcfd56bb6445422cf52de41ab66cdf 00:58:25,942 INFO anaconda:packaging: Configuring (running scriptlet for): cockpit-ws-238.2-1.el8.aarch64 1615860600 743541303fbe67a44dddfda88f01ca2609dcfd56bb6445422cf52de41ab66cdf 00:58:27,090 INFO anaconda:packaging: Configuring (running scriptlet for): chrony-3.5-2.el8.aarch64 1614669137 70c5fa7ec4726f14d6709220e22e03ecc0df3ee9cdaed4e031eb01fc90031e91 00:58:27,156 INFO groupadd:group added to /etc/group: name=chrony, GID=989 00:58:27,164 NOTICE kernel:audit: type=1116 audit(1631667507.145:81): pid=2828 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:groupadd_t:s0 msg='op=add-group id=989 exe="/usr/sbin/groupadd" hostname=? addr=? terminal=? res=success' 00:58:27,173 INFO groupadd:group added to /etc/gshadow: name=chrony 00:58:27,217 INFO groupadd:new group: name=chrony, GID=989 00:58:27,281 INFO useradd:new user: name=chrony, UID=992, GID=989, home=/var/lib/chrony, shell=/sbin/nologin 00:58:27,407 INFO anaconda:packaging: Installed: chrony-3.5-2.el8.aarch64 1614669137 70c5fa7ec4726f14d6709220e22e03ecc0df3ee9cdaed4e031eb01fc90031e91 00:58:27,504 INFO anaconda:packaging: Configuring (running scriptlet for): chrony-3.5-2.el8.aarch64 1614669137 70c5fa7ec4726f14d6709220e22e03ecc0df3ee9cdaed4e031eb01fc90031e91 00:58:27,557 INFO anaconda:dnf: Running in chroot, ignoring request: daemon-reload 00:58:27,564 INFO anaconda:packaging: Installed: sssd-kcm-2.4.0-9.el8_4.2.aarch64 1629124289 7c483c2b3603849f9fc7f5710835fd1d23476be0a14e72aa421b1fc815e3ccb5 00:58:27,621 INFO anaconda:packaging: Configuring (running scriptlet for): sssd-kcm-2.4.0-9.el8_4.2.aarch64 1629124289 7c483c2b3603849f9fc7f5710835fd1d23476be0a14e72aa421b1fc815e3ccb5 00:58:27,661 INFO anaconda:packaging: Installed: grub2-efi-aa64-1:2.02-99.el8.aarch64 1614718965 3820be30bf35ddb847712c605ed1c057056a5fd8289e2286b16ca0fa3e1cdea3 00:58:27,790 INFO anaconda:packaging: Installed: passwd-0.80-3.el8.aarch64 1586221803 5175b8c44052fe8a2cfa001f3937072190218cd432d4070ca64a3883c638f0e7 00:58:27,999 INFO anaconda:packaging: Installed: authselect-compat-1.2.2-2.el8.aarch64 1616085339 c36d044a08801713014d597125bf4d40c6f11b3a22ac0d7cc882e90812b87234 00:58:28,123 INFO anaconda:packaging: Installed: kernel-4.18.0-305.17.1.el8_4.aarch64 1631110505 9a2c9be9977b2e7a014f0a5f7f0c8bd41eeed544f7cb3713ac2d18b8ec22a07d 00:58:28,156 INFO anaconda:packaging: Installed: openssh-clients-8.0p1-6.el8_4.2.aarch64 1622130979 2f5327e46b79f61b1d7c433a7054766846d2765e5b459cbe32d239c30efa957c 00:58:28,337 INFO anaconda:packaging: Configuring (running scriptlet for): openssh-server-8.0p1-6.el8_4.2.aarch64 1622130979 f19335b38927bcd8fa60c5d02162a62ecf72401714e1e0a4189f44d6fc354ed4 00:58:28,393 INFO groupadd:group added to /etc/group: name=sshd, GID=74 00:58:28,399 INFO groupadd:group added to /etc/gshadow: name=sshd 00:58:28,443 INFO groupadd:new group: name=sshd, GID=74 00:58:28,506 INFO useradd:new user: name=sshd, UID=74, GID=74, home=/var/empty/sshd, shell=/sbin/nologin 00:58:28,635 INFO anaconda:packaging: Installed: openssh-server-8.0p1-6.el8_4.2.aarch64 1622130979 f19335b38927bcd8fa60c5d02162a62ecf72401714e1e0a4189f44d6fc354ed4 00:58:28,746 INFO anaconda:packaging: Configuring (running scriptlet for): openssh-server-8.0p1-6.el8_4.2.aarch64 1622130979 f19335b38927bcd8fa60c5d02162a62ecf72401714e1e0a4189f44d6fc354ed4 00:58:28,790 INFO anaconda:packaging: Installed: NetworkManager-tui-1:1.30.0-10.el8_4.aarch64 1628609604 ef037c5c7093f9c195e09a0e8a5e9c6c72008e7c6cbe4b64dbbc5ba37467b33d 00:58:28,847 INFO anaconda:packaging: Configuring (running scriptlet for): rng-tools-6.8-3.el8.aarch64 1587696616 fe63e34985dcfebf169957d2dbd5cca1af88591bfe02e0442811c03e021e4094 00:58:28,881 INFO useradd:new group: name=rngd, GID=988 00:58:28,882 INFO useradd:new user: name=rngd, UID=991, GID=988, home=/var/lib/rngd, shell=/sbin/nologin 00:58:28,884 WARNING kernel:kauditd_printk_skb: 5 callbacks suppressed 00:58:28,884 NOTICE kernel:audit: type=1116 audit(1631667508.865:87): pid=2868 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:useradd_t:s0 msg='op=add-group acct="rngd" exe="/usr/sbin/useradd" hostname=? addr=? terminal=? res=success' 00:58:28,894 NOTICE kernel:audit: type=1114 audit(1631667508.875:88): pid=2868 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:useradd_t:s0 msg='op=add-user acct="rngd" exe="/usr/sbin/useradd" hostname=? addr=? terminal=? res=success' 00:58:29,023 INFO anaconda:packaging: Installed: rng-tools-6.8-3.el8.aarch64 1587696616 fe63e34985dcfebf169957d2dbd5cca1af88591bfe02e0442811c03e021e4094 00:58:29,067 INFO anaconda:packaging: Configuring (running scriptlet for): rng-tools-6.8-3.el8.aarch64 1587696616 fe63e34985dcfebf169957d2dbd5cca1af88591bfe02e0442811c03e021e4094 00:58:29,111 INFO anaconda:packaging: Installed: qemu-guest-agent-15:4.2.0-48.module_el8.4.0+885+5e18b468.3.aarch64 1628628602 c56f4ceb7d9981dd14e657dc6c8b44600ae2d250ede633eb31c412021ebe864d 00:58:29,168 INFO anaconda:packaging: Configuring (running scriptlet for): qemu-guest-agent-15:4.2.0-48.module_el8.4.0+885+5e18b468.3.aarch64 1628628602 c56f4ceb7d9981dd14e657dc6c8b44600ae2d250ede633eb31c412021ebe864d 00:58:29,208 INFO anaconda:packaging: Installed: irqbalance-2:1.4.0-6.el8.aarch64 1612249391 cefd3eaed457cf764287462510811813ac91c4fd01ef94e2e165e1db690022cf 00:58:29,237 INFO anaconda:packaging: Configuring (running scriptlet for): irqbalance-2:1.4.0-6.el8.aarch64 1612249391 cefd3eaed457cf764287462510811813ac91c4fd01ef94e2e165e1db690022cf 00:58:29,278 INFO anaconda:packaging: Installed: dracut-config-generic-049-135.git20210121.el8.aarch64 1613121073 cc996e967e2e60926a30f0e5fea0447895367effe674bf57a8373307c4cd8870 00:58:29,288 INFO anaconda:packaging: Installed: dracut-config-rescue-049-135.git20210121.el8.aarch64 1613121073 13fe858934ac13197257298f7b6f56b9fe050320f81fb0b3597c6782ff783feb 00:58:29,300 INFO anaconda:packaging: Installed: cloud-utils-growpart-0.31-1.el8.noarch 1595342687 7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71 00:58:29,321 INFO anaconda:packaging: Installed: prefixdevname-0.1.0-6.el8.aarch64 1558550049 a8bc6c8653eaede6f46620da42f99ee5d511f161e78f2719aa231c75cf06cd15 00:58:29,438 INFO anaconda:packaging: Configuring (running scriptlet for): man-db-2.7.6.1-17.el8.aarch64 1557586723 9d9492991dc9808ee56e00ab111f95714c62fee7fcbdb2141684c473ed2b2cc9 00:58:29,454 INFO anaconda:packaging: Installed: man-db-2.7.6.1-17.el8.aarch64 1557586723 9d9492991dc9808ee56e00ab111f95714c62fee7fcbdb2141684c473ed2b2cc9 00:58:30,179 INFO anaconda:packaging: Configuring (running scriptlet for): man-db-2.7.6.1-17.el8.aarch64 1557586723 9d9492991dc9808ee56e00ab111f95714c62fee7fcbdb2141684c473ed2b2cc9 00:58:30,202 INFO anaconda:packaging: Installed: sg3_utils-1.44-5.el8.aarch64 1587692970 de0cec19f3194af0aff5ee5f133f370dca5cb1d3d6826c24e30c001cec779c36 00:58:31,051 INFO anaconda:packaging: Installed: efibootmgr-16-1.el8.aarch64 1557581197 7d604604382cb1ec72fb7534cdff4371e5b8ceb84be26ebb3ea6cfbc613f82d9 00:58:31,087 INFO anaconda:packaging: Installed: rsync-3.1.3-12.el8.aarch64 1608719042 94ffbde06999afef29ad7d85eb1d2e6fd7e8b168e0604d9b6ad4dca350264e5f 00:58:31,234 INFO anaconda:packaging: Installed: tar-2:1.30-5.el8.aarch64 1595282431 3d527d861793fe3a74b6254540068e8b846e6df20d75754df39904e67f1e569f 00:58:31,499 INFO anaconda:packaging: Configuring (running scriptlet for): tar-2:1.30-5.el8.aarch64 1595282431 3d527d861793fe3a74b6254540068e8b846e6df20d75754df39904e67f1e569f 00:58:31,522 INFO anaconda:packaging: Installed: lshw-B.02.19.2-5.el8.aarch64 1612335858 b85c88cf8bbc27f000910367fa1a95e031c0a1ce20fde06b8ad9b8892e73b99e 00:58:31,599 INFO anaconda:packaging: Installed: hostname-3.20-6.el8.aarch64 1557582534 656b3b23230b9c17461b5cde860d46bb84074a406f71840697fca8dffcdf280c 00:58:31,632 INFO anaconda:packaging: Configuring (running scriptlet for): hostname-3.20-6.el8.aarch64 1557582534 656b3b23230b9c17461b5cde860d46bb84074a406f71840697fca8dffcdf280c 00:58:31,672 INFO anaconda:packaging: Installed: lsscsi-0.32-2.el8.aarch64 1605563467 c2db72eece99cda2b9e88517fc5c619e40fea27ac2bd8f17155ae731ebea320e 00:58:31,711 INFO anaconda:packaging: Installed: rootfiles-8.1-22.el8.noarch 1557588938 d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39 00:58:31,716 INFO anaconda:packaging: Post installation setup phase started. 00:58:31,751 INFO anaconda:packaging: Configuring (running scriptlet for): filesystem-3.8-3.el8.aarch64 1604417043 c5e8aa3dc1f3067ccfe85bf9e93bfbfe54434bb9224af414a02d73ff8c0cdf4c Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11630/12000 00:58:31,957 INFO anaconda:packaging: Configuring (running scriptlet for): glibc-all-langpacks-2.28-151.el8.aarch64 1615497081 81bddadd1b3ebd1dbb01bd75a80897dc53733a80440103500524bb75c2c3f5d8 00:58:39,433 INFO anaconda:packaging: Configuring (running scriptlet for): crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3.noarch 1617821142 a4ba25827849b4859446854c1106c62c215d413f9d16d5b30fadb78082fb233c 00:58:40,074 INFO anaconda:packaging: Configuring (running scriptlet for): ca-certificates-2020.2.41-80.0.el8_2.noarch 1597185516 dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be 00:58:41,409 INFO anaconda:packaging: Configuring (running scriptlet for): kernel-core-4.18.0-305.17.1.el8_4.aarch64 1631110505 680fa1c24237dd00359585248a62d77c4de39afef0b420b1c7321bbe4aa4d226 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11620/12000 00:58:51,235 DEBUG NetworkManager: [1631667531.2349] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 297.194 seconds Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11610/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11600/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11590/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11580/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11570/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11560/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11550/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11540/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11530/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11520/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11510/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11500/12000 01:00:43,177 INFO anaconda:dnf: dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y#012dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 01:00:43,180 INFO anaconda:packaging: Configuring (running scriptlet for): authselect-libs-1.2.2-2.el8.aarch64 1616085339 a43092414c4c98fee4c92aa4bd4811ef17ba0b6f486b8c6f36e3fba8dce295f3 01:00:43,220 INFO anaconda:packaging: Configuring (running scriptlet for): sssd-common-2.4.0-9.el8_4.2.aarch64 1629124289 c48c87a446aa2298ea23d37252dfd4db44705d8635e71541e1fb484ea5dd9d10 01:00:43,256 INFO anaconda:packaging: Configuring (running scriptlet for): centos-logos-85.8-1.el8.aarch64 1624917426 66fed01641bb8315ed965e41b7511a7861faccc15c370afaf6c3ac4505d85ccb 01:00:43,274 INFO anaconda:packaging: Configuring (running scriptlet for): nss-3.53.1-17.el8_3.aarch64 1608262942 97d225efd3895a04e38d49c7b23ebed1f88e129c27528cdb4ad04c7f89d5fd09 01:00:43,526 INFO anaconda:packaging: Configuring (running scriptlet for): tuned-2.15.0-2.el8_4.1.noarch 1622576866 3467092d88f831e8548c6c0ba1f2e955e31d12406d23814af06a9a1d533fa57b 01:00:43,572 INFO anaconda:packaging: Configuring (running scriptlet for): authselect-compat-1.2.2-2.el8.aarch64 1616085339 c36d044a08801713014d597125bf4d40c6f11b3a22ac0d7cc882e90812b87234 01:00:43,593 INFO anaconda:packaging: Configuring (running scriptlet for): rootfiles-8.1-22.el8.noarch 1557588938 d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39 01:00:43,689 INFO anaconda:packaging: Configuring (running scriptlet for): glibc-common-2.28-151.el8.aarch64 1615497081 cb9d61ff598d6197b1cf93458319d64f7ebf60029ee9b64e77636cf739de41d9 01:00:43,772 INFO anaconda:packaging: Configuring (running scriptlet for): info-6.5-6.el8.aarch64 1587693166 187a1fbb7e2992dfa777c7ca5c2f7369ecb85e4be4a483e6c0c6036e02bacf95 01:00:44,158 INFO anaconda:packaging: Configuring (running scriptlet for): glib2-2.56.4-10.el8_4.1.aarch64 1628609837 f9899e210581f892bd2315506499feea648401162b7ee96f5d7e3e7616491478 01:00:44,209 INFO anaconda:packaging: Configuring (running scriptlet for): glib2-2.56.4-10.el8_4.1.aarch64 1628609837 f9899e210581f892bd2315506499feea648401162b7ee96f5d7e3e7616491478 01:00:44,259 INFO anaconda:packaging: Configuring (running scriptlet for): shared-mime-info-1.9-3.el8.aarch64 1557589089 955e50447ee8ba78996529e1f9192eab92b25251d236b6e24a61be9787fb7552 01:00:46,874 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 01:00:46,919 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 01:00:46,957 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 01:00:47,021 INFO anaconda:dnf: Running in chroot, ignoring request: daemon-reload 01:00:47,023 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 01:00:47,074 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 01:00:47,240 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-udev-239-45.el8_4.3.aarch64 1628609468 bc23ec3ca8ad5e5e87395f41ccfbb5f63331ba292ea105a9851e68da28878309 01:00:48,001 INFO anaconda:packaging: Configuring (running scriptlet for): systemd-udev-239-45.el8_4.3.aarch64 1628609468 bc23ec3ca8ad5e5e87395f41ccfbb5f63331ba292ea105a9851e68da28878309 01:00:48,180 INFO anaconda:packaging: Configuring (running scriptlet for): fontconfig-2.13.1-3.el8.aarch64 1557581481 e4dc102f15c1e6104bdeae343e54fcc7929b922b93077f6b50216087e7125a2d 01:00:48,734 INFO anaconda:packaging: Configuring (running scriptlet for): man-db-2.7.6.1-17.el8.aarch64 1557586723 9d9492991dc9808ee56e00ab111f95714c62fee7fcbdb2141684c473ed2b2cc9 01:00:48,807 INFO systemd:Started /usr/bin/systemctl start man-db-cache-update. 01:00:48,814 NOTICE kernel:audit: type=1130 audit(1631667648.795:89): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=run-r54e256b59c2b470d948f030bcc4f00a4 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' 01:00:48,844 NOTICE kernel:audit: type=1138 audit(1631667648.825:90): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="libgcc-8.4.1-1.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,844 NOTICE kernel:audit: type=1138 audit(1631667648.825:91): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="tzdata-2021a-1.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:92): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="fontpackages-filesystem-1.44-22.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:93): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="geolite2-country-20180605-1.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:94): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="geolite2-city-20180605-1.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:95): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="python3-setuptools-wheel-39.2.0-6.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:96): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="python3-pip-wheel-9.0.3-19.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:97): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="libreport-filesystem-2.9.5-15.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,845 NOTICE kernel:audit: type=1138 audit(1631667648.825:98): pid=2158 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=install sw="hwdata-0.314-8.8.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/mnt/sysroot/" comm="anaconda" exe="/usr/libexec/platform-python3.6" hostname=localhost.localdomain addr=? terminal=pts/0 res=success' 01:00:48,935 INFO systemctl:Failed to start man-db-cache-update.service: Unit man-db-cache-update.service not found. 01:00:48,938 NOTICE systemd:run-r54e256b59c2b470d948f030bcc4f00a4.service: Main process exited, code=exited, status=5/NOTINSTALLED 01:00:48,939 WARNING systemd:run-r54e256b59c2b470d948f030bcc4f00a4.service: Failed with result 'exit-code'. 01:00:49,738 INFO anaconda:packaging: Verifying: ModemManager-glib-1.10.8-2.el8.aarch64 1587696517 dbed55a96bd89a636f21a71a6e21a1f0282be7dc9cafdbbba44214a03d4f796e 01:00:49,754 INFO anaconda:packaging: Verifying: NetworkManager-1:1.30.0-10.el8_4.aarch64 1628609604 2b502af85265b40430fd5da6b3d750023ce90003d19a3f75844c170db1d53c58 01:00:49,771 INFO anaconda:packaging: Verifying: NetworkManager-libnm-1:1.30.0-10.el8_4.aarch64 1628609604 9a791d16574dc3408f495eb383b6c2669b34fc4545b3c43c8c791fbbe10619d2 01:00:50,373 INFO anaconda:packaging: Verifying: NetworkManager-team-1:1.30.0-10.el8_4.aarch64 1628609604 c9be0a5a2d9c5fd282c63e6acb33d4a216980ddb6dec1f3bbe19fa2f5e695178 01:00:50,385 INFO anaconda:packaging: Verifying: NetworkManager-tui-1:1.30.0-10.el8_4.aarch64 1628609604 ef037c5c7093f9c195e09a0e8a5e9c6c72008e7c6cbe4b64dbbc5ba37467b33d 01:00:50,395 INFO anaconda:packaging: Verifying: acl-2.2.53-1.el8.aarch64 1557533888 47c2cc5872174c548de1096dc5673ee91349209d89e0193a4793955d6865b3b1 01:00:50,406 INFO anaconda:packaging: Verifying: audit-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 2036b917615991af2730df046d2cea4b66a69d9592a4e97faeb7134bbdba45ed 01:00:50,417 INFO anaconda:packaging: Verifying: audit-libs-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 11811c556a3bdc9c572c0ab67d3106bd1de3406c9d471de03e028f041b5785c3 01:00:50,442 INFO anaconda:packaging: Verifying: authselect-1.2.2-2.el8.aarch64 1616085339 b9854a81f41a7d258f9ebe6b8705b1af236271dc8779edfa75bf9be30d72eb79 01:00:50,453 INFO anaconda:packaging: Verifying: authselect-libs-1.2.2-2.el8.aarch64 1616085339 a43092414c4c98fee4c92aa4bd4811ef17ba0b6f486b8c6f36e3fba8dce295f3 01:00:50,464 INFO anaconda:packaging: Verifying: basesystem-11-5.el8.noarch 1557533944 48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68 01:00:50,475 INFO anaconda:packaging: Verifying: bash-4.4.20-1.el8_4.aarch64 1622128538 c54e1e16d2d363a7dfdb0d4bb57bc9c40f92662382453cfebcea88551be717d0 01:00:50,485 INFO anaconda:packaging: Verifying: bind-export-libs-32:9.11.26-4.el8_4.aarch64 1622149187 6984533e753692a567798b57edacbe76abdc5dfa5a51711dd1d2a7fcc9a85ce7 01:00:50,496 INFO anaconda:packaging: Verifying: brotli-1.0.6-3.el8.aarch64 1610440164 04133335e4b0fb04154b80c43e3e6143dcae27b6a3c11db384ec2ca56e6b3ae1 01:00:50,507 INFO anaconda:packaging: Verifying: bubblewrap-0.4.0-1.el8.aarch64 1587693427 a445b27920d4bf9e6944a289c3e9cf69cb4396fe5f7f3383aab7dbe53ad6b39f 01:00:50,518 INFO anaconda:packaging: Verifying: bzip2-1.0.6-26.el8.aarch64 1557534038 b18d9f23161d7d5de93fa72a56c645762deefbc0f3e5a095bb8d9e3cf09521e6 01:00:50,528 INFO anaconda:packaging: Verifying: bzip2-libs-1.0.6-26.el8.aarch64 1557534038 a4451cae0e8a3307228ed8ac7dc9bab7de77fcbf2004141daa7f986f5dc9b381 01:00:50,539 INFO anaconda:packaging: Verifying: c-ares-1.13.0-5.el8.aarch64 1557580686 4ae071ebcf06cec6e4e7e49a50d83464cb1f1f1c72449a02ba1dfc820dbf67c5 01:00:50,550 INFO anaconda:packaging: Verifying: ca-certificates-2020.2.41-80.0.el8_2.noarch 1597185516 dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be 01:00:50,561 INFO anaconda:packaging: Verifying: centos-gpg-keys-1:8-2.el8.noarch 1604968391 842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb 01:00:50,571 INFO anaconda:packaging: Verifying: centos-linux-release-8.4-1.2105.el8.noarch 1622121624 aa8f875a815dfad5ea66401e233754a5ed77e82d5f2b2b91e6f49dc08b857365 01:00:50,582 INFO anaconda:packaging: Verifying: centos-linux-repos-8-2.el8.noarch 1604968391 bfacb37de07b01b1161fd00263c6cb7cd9d733e4fdbc6767cf5b14dd8e11e789 01:00:50,593 INFO anaconda:packaging: Verifying: centos-logos-85.8-1.el8.aarch64 1624917426 66fed01641bb8315ed965e41b7511a7861faccc15c370afaf6c3ac4505d85ccb 01:00:50,604 INFO anaconda:packaging: Verifying: checkpolicy-2.9-1.el8.aarch64 1573487380 01b89be34e48d345ba14a3856bba0d1ff94e79798b5f7529a6a0803b97adca15 01:00:50,614 INFO anaconda:packaging: Verifying: chkconfig-1.13-2.el8.aarch64 1587954848 5a6844f54e6d9d5afe0e273736fa859d6ffc2aa89db879e92c6b04ed90d78df5 01:00:50,625 INFO anaconda:packaging: Verifying: chrony-3.5-2.el8.aarch64 1614669137 70c5fa7ec4726f14d6709220e22e03ecc0df3ee9cdaed4e031eb01fc90031e91 01:00:50,640 INFO anaconda:packaging: Verifying: cockpit-bridge-238.2-1.el8.aarch64 1615860600 ba28345b1f36652df778eeaf1435e507dad5d40ec0a121c4df89ab596700e14d 01:00:50,651 INFO anaconda:packaging: Verifying: cockpit-system-238.2-1.el8.noarch 1615860600 4984500d518281452e5a6505e40cb5215c9e9b590ae947709c59f5e1b00259a3 01:00:50,662 INFO anaconda:packaging: Verifying: cockpit-ws-238.2-1.el8.aarch64 1615860600 743541303fbe67a44dddfda88f01ca2609dcfd56bb6445422cf52de41ab66cdf 01:00:50,672 INFO anaconda:packaging: Verifying: coreutils-8.30-8.el8.aarch64 1587954500 b984c970c0c1853560745669820004326855f6e6204f7a7bfed90f6f1b12e2b5 01:00:50,683 INFO anaconda:packaging: Verifying: coreutils-common-8.30-8.el8.aarch64 1587954500 6327a50f92274316adcfc4fc5c5a57bf62eba7fb6997952a31354f82acad679d 01:00:50,693 DEBUG anaconda:dnf: Installed: ModemManager-glib-1.10.8-2.el8.aarch64 01:00:50,694 DEBUG anaconda:dnf: Installed: NetworkManager-1:1.30.0-10.el8_4.aarch64 01:00:50,695 DEBUG anaconda:dnf: Installed: NetworkManager-libnm-1:1.30.0-10.el8_4.aarch64 01:00:50,695 DEBUG anaconda:dnf: Installed: NetworkManager-team-1:1.30.0-10.el8_4.aarch64 01:00:50,696 DEBUG anaconda:dnf: Installed: NetworkManager-tui-1:1.30.0-10.el8_4.aarch64 01:00:50,697 INFO anaconda:packaging: Verifying: cpio-2.12-10.el8.aarch64 1611306630 15ecc3b70281c46dc6c9ebaaf3bf25941440088dc26664417121a090287c57de 01:00:50,697 DEBUG anaconda:dnf: Installed: PackageKit-1.1.12-6.el8.aarch64 01:00:50,698 DEBUG anaconda:dnf: Installed: PackageKit-glib-1.1.12-6.el8.aarch64 01:00:50,698 DEBUG anaconda:dnf: Installed: abattis-cantarell-fonts-0.0.25-6.el8.noarch 01:00:50,699 DEBUG anaconda:dnf: Installed: acl-2.2.53-1.el8.aarch64 01:00:50,699 INFO anaconda:packaging: Verifying: cracklib-2.9.6-15.el8.aarch64 1557533931 54efb853142572e1c2872e351838fc3657b662722ff6b2913d1872d4752a0eb8 01:00:50,700 DEBUG anaconda:dnf: Installed: audit-3.0-0.17.20191104git1c2f876.el8.aarch64 01:00:50,701 DEBUG anaconda:dnf: Installed: audit-libs-3.0-0.17.20191104git1c2f876.el8.aarch64 01:00:50,701 DEBUG anaconda:dnf: Installed: authselect-1.2.2-2.el8.aarch64 01:00:50,702 DEBUG anaconda:dnf: Installed: authselect-compat-1.2.2-2.el8.aarch64 01:00:50,702 INFO anaconda:packaging: Verifying: cracklib-dicts-2.9.6-15.el8.aarch64 1557533931 d61741af0ffe96c55f588dd164b9c3c93e7c7175c7e616db25990ab3e16e0f22 01:00:50,703 DEBUG anaconda:dnf: Installed: authselect-libs-1.2.2-2.el8.aarch64 01:00:50,704 DEBUG anaconda:dnf: Installed: basesystem-11-5.el8.noarch 01:00:50,704 DEBUG anaconda:dnf: Installed: bash-4.4.20-1.el8_4.aarch64 01:00:50,705 DEBUG anaconda:dnf: Installed: bind-export-libs-32:9.11.26-4.el8_4.aarch64 01:00:50,706 INFO anaconda:packaging: Verifying: cronie-1.5.2-4.el8.aarch64 1573230628 d95e7d75d39bdec2742f406a12027605612e8abc38a9bcac5c9b632611313020 01:00:50,706 DEBUG anaconda:dnf: Installed: brotli-1.0.6-3.el8.aarch64 01:00:50,706 DEBUG anaconda:dnf: Installed: bubblewrap-0.4.0-1.el8.aarch64 01:00:50,707 DEBUG anaconda:dnf: Installed: bzip2-1.0.6-26.el8.aarch64 01:00:50,707 DEBUG anaconda:dnf: Installed: bzip2-libs-1.0.6-26.el8.aarch64 01:00:50,709 DEBUG anaconda:dnf: Installed: c-ares-1.13.0-5.el8.aarch64 01:00:50,709 DEBUG anaconda:dnf: Installed: ca-certificates-2020.2.41-80.0.el8_2.noarch 01:00:50,710 DEBUG anaconda:dnf: Installed: cairo-1.15.12-3.el8.aarch64 01:00:50,710 DEBUG anaconda:dnf: Installed: cairo-gobject-1.15.12-3.el8.aarch64 01:00:50,711 DEBUG anaconda:dnf: Installed: centos-gpg-keys-1:8-2.el8.noarch 01:00:50,711 DEBUG anaconda:dnf: Installed: centos-linux-release-8.4-1.2105.el8.noarch 01:00:50,712 DEBUG anaconda:dnf: Installed: centos-linux-repos-8-2.el8.noarch 01:00:50,713 DEBUG anaconda:dnf: Installed: centos-logos-85.8-1.el8.aarch64 01:00:50,714 DEBUG anaconda:dnf: Installed: checkpolicy-2.9-1.el8.aarch64 01:00:50,714 DEBUG anaconda:dnf: Installed: chkconfig-1.13-2.el8.aarch64 01:00:50,715 DEBUG anaconda:dnf: Installed: chrony-3.5-2.el8.aarch64 01:00:50,715 DEBUG anaconda:dnf: Installed: cloud-init-20.3-10.el8_4.5.noarch 01:00:50,716 DEBUG anaconda:dnf: Installed: cloud-utils-growpart-0.31-1.el8.noarch 01:00:50,717 INFO anaconda:packaging: Verifying: cronie-anacron-1.5.2-4.el8.aarch64 1573230628 b729404e9d1195caf72cf793331886708fdf8d807b74575871b5aa8ae8d726b4 01:00:50,717 DEBUG anaconda:dnf: Installed: cockpit-bridge-238.2-1.el8.aarch64 01:00:50,718 DEBUG anaconda:dnf: Installed: cockpit-system-238.2-1.el8.noarch 01:00:50,724 INFO anaconda:packaging: Verifying: crontabs-1.11-17.20190603git.el8.noarch 1610439789 bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0 01:00:50,724 INFO anaconda:packaging: Verifying: crypto-policies-20210209-1.gitbfb6bed.el8_3.noarch 1617821142 fa4a0c233d055bc746917ecf7440e2646cfeb9943acc02d13e534674e922f365 01:00:50,725 INFO anaconda:packaging: Verifying: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3.noarch 1617821142 a4ba25827849b4859446854c1106c62c215d413f9d16d5b30fadb78082fb233c 01:00:50,725 INFO anaconda:packaging: Verifying: cryptsetup-libs-2.3.3-4.el8.aarch64 1613725826 c94d212f77d5d83ba1bd22a5c6b5e92590d5c4cb412950ec22d1309d79e2fc0e 01:00:50,726 INFO anaconda:packaging: Verifying: curl-7.61.1-18.el8.aarch64 1612337043 89ebdd969468d9c9669fa65c9c92f0b66b306ef430f8c913663eefd789496e74 01:00:50,727 DEBUG anaconda:dnf: Installed: cockpit-ws-238.2-1.el8.aarch64 01:00:50,728 INFO anaconda:packaging: Verifying: cyrus-sasl-lib-2.1.27-5.el8.aarch64 1589586896 36d4e208921238b99c822a5f1686120c0c227fc02dc6e3258c2c71d62492a1e7 01:00:50,729 DEBUG anaconda:dnf: Installed: coreutils-8.30-8.el8.aarch64 01:00:50,729 DEBUG anaconda:dnf: Installed: coreutils-common-8.30-8.el8.aarch64 01:00:50,729 INFO anaconda:packaging: Verifying: dbus-1:1.12.8-12.el8_4.2.aarch64 1622130562 01d8739575cf3ddc7972ecd926e95fc8bada0b68c55b12b61356a7b6ee8a8ba7 01:00:50,731 DEBUG anaconda:dnf: Installed: cpio-2.12-10.el8.aarch64 01:00:50,731 INFO anaconda:packaging: Verifying: dbus-common-1:1.12.8-12.el8_4.2.noarch 1622130562 6ce7684301bdc7839657679ff3e02c364923bca48c31ba939867e0822a542906 01:00:50,731 DEBUG anaconda:dnf: Installed: cracklib-2.9.6-15.el8.aarch64 01:00:50,732 INFO anaconda:packaging: Verifying: dbus-daemon-1:1.12.8-12.el8_4.2.aarch64 1622130562 28a253744f6d75744fd836fcfd9fe4ef4393fdd0007a7f8c73253a8525c77160 01:00:50,732 DEBUG anaconda:dnf: Installed: cracklib-dicts-2.9.6-15.el8.aarch64 01:00:50,733 DEBUG anaconda:dnf: Installed: cronie-1.5.2-4.el8.aarch64 01:00:50,734 DEBUG anaconda:dnf: Installed: cronie-anacron-1.5.2-4.el8.aarch64 01:00:50,734 INFO anaconda:packaging: Verifying: dbus-glib-0.110-2.el8.aarch64 1557580884 eb5c0f62803580e76f09d53bec1fb4797f03846537fb0d050fd62045b7ce64ce 01:00:50,734 DEBUG anaconda:dnf: Installed: crontabs-1.11-17.20190603git.el8.noarch 01:00:50,735 DEBUG anaconda:dnf: Installed: crypto-policies-20210209-1.gitbfb6bed.el8_3.noarch 01:00:50,736 INFO anaconda:packaging: Verifying: dbus-libs-1:1.12.8-12.el8_4.2.aarch64 1622130562 3acae7760113f8e0b33e182b63748fec10f77abaf6a0add876bd54baf11c1970 01:00:50,736 DEBUG anaconda:dnf: Installed: crypto-policies-scripts-20210209-1.gitbfb6bed.el8_3.noarch 01:00:50,737 DEBUG anaconda:dnf: Installed: cryptsetup-libs-2.3.3-4.el8.aarch64 01:00:50,737 DEBUG anaconda:dnf: Installed: curl-7.61.1-18.el8.aarch64 01:00:50,738 INFO anaconda:packaging: Verifying: dbus-tools-1:1.12.8-12.el8_4.2.aarch64 1622130562 dc1b0474023ae4092a0228aff872fba12c02a65fa288d32ff07f3262f50cdc85 01:00:50,738 DEBUG anaconda:dnf: Installed: cyrus-sasl-lib-2.1.27-5.el8.aarch64 01:00:50,739 DEBUG anaconda:dnf: Installed: dbus-1:1.12.8-12.el8_4.2.aarch64 01:00:50,739 INFO anaconda:packaging: Verifying: dejavu-fonts-common-2.35-7.el8.noarch 1608016986 dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5 01:00:50,740 DEBUG anaconda:dnf: Installed: dbus-common-1:1.12.8-12.el8_4.2.noarch 01:00:50,740 DEBUG anaconda:dnf: Installed: dbus-daemon-1:1.12.8-12.el8_4.2.aarch64 01:00:50,741 INFO anaconda:packaging: Verifying: dejavu-sans-mono-fonts-2.35-7.el8.noarch 1608016986 a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb 01:00:50,741 DEBUG anaconda:dnf: Installed: dbus-glib-0.110-2.el8.aarch64 01:00:50,741 DEBUG anaconda:dnf: Installed: dbus-libs-1:1.12.8-12.el8_4.2.aarch64 01:00:50,742 DEBUG anaconda:dnf: Installed: dbus-tools-1:1.12.8-12.el8_4.2.aarch64 01:00:50,742 INFO anaconda:packaging: Verifying: device-mapper-8:1.02.175-5.el8.aarch64 1615413557 cb3ac3a4a966c918f9f43cc1b9c0e8b3020ab613cd37685036d59c06b23cbd2a 01:00:50,742 DEBUG anaconda:dnf: Installed: dejavu-fonts-common-2.35-7.el8.noarch 01:00:50,743 DEBUG anaconda:dnf: Installed: dejavu-sans-mono-fonts-2.35-7.el8.noarch 01:00:50,743 INFO anaconda:packaging: Verifying: device-mapper-libs-8:1.02.175-5.el8.aarch64 1615413557 95722419690a770d0c392dc17faa7d72661e9d3d4dc7edeb09a57b6cf1169b55 01:00:50,744 DEBUG anaconda:dnf: Installed: device-mapper-8:1.02.175-5.el8.aarch64 01:00:50,745 DEBUG anaconda:dnf: Installed: device-mapper-libs-8:1.02.175-5.el8.aarch64 01:00:50,745 INFO anaconda:packaging: Verifying: dhcp-client-12:4.3.6-44.0.1.el8.aarch64 1610994845 c05c1e1158621f0eb34f9827ba8b43216422803cb6ea8497c2a2674200934980 01:00:50,745 DEBUG anaconda:dnf: Installed: dhcp-client-12:4.3.6-44.0.1.el8.aarch64 01:00:50,746 DEBUG anaconda:dnf: Installed: dhcp-common-12:4.3.6-44.0.1.el8.noarch 01:00:50,747 INFO anaconda:packaging: Verifying: dhcp-common-12:4.3.6-44.0.1.el8.noarch 1610994845 7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d 01:00:50,748 DEBUG anaconda:dnf: Installed: dhcp-libs-12:4.3.6-44.0.1.el8.aarch64 01:00:50,748 INFO anaconda:packaging: Verifying: dhcp-libs-12:4.3.6-44.0.1.el8.aarch64 1610994845 4591e8cca5f1273ce89ad91015eb2feb070ae0fbd2feed752c9fcf54c7fedc47 01:00:50,750 DEBUG anaconda:dnf: Installed: diffutils-3.6-6.el8.aarch64 01:00:50,751 DEBUG anaconda:dnf: Installed: dmidecode-1:3.2-8.el8.aarch64 01:00:50,751 INFO anaconda:packaging: Verifying: diffutils-3.6-6.el8.aarch64 1586218262 8cbebc0fa970ceca4f479ee292eaad155084987be2cf7f97bbafe4a529319c98 01:00:50,752 DEBUG anaconda:dnf: Installed: dnf-4.4.2-11.el8.noarch 01:00:50,753 DEBUG anaconda:dnf: Installed: dnf-data-4.4.2-11.el8.noarch 01:00:50,754 DEBUG anaconda:dnf: Installed: dnf-plugins-core-4.0.18-4.el8.noarch 01:00:50,754 INFO anaconda:packaging: Verifying: dmidecode-1:3.2-8.el8.aarch64 1608016943 df1f8c486ab63f496884fc8b97c885e1f6b08ce281c05f0409b90b97e44fbb4f 01:00:50,755 DEBUG anaconda:dnf: Installed: dosfstools-4.1-6.el8.aarch64 01:00:50,756 INFO anaconda:packaging: Verifying: dnf-4.4.2-11.el8.noarch 1615491563 889a4e0f9fa8e150b433dd201537d4ee621cc46d5a82d1037ec50288ad772b63 01:00:50,756 DEBUG anaconda:dnf: Installed: dracut-049-135.git20210121.el8.aarch64 01:00:50,757 DEBUG anaconda:dnf: Installed: dracut-config-generic-049-135.git20210121.el8.aarch64 01:00:50,758 DEBUG anaconda:dnf: Installed: dracut-config-rescue-049-135.git20210121.el8.aarch64 01:00:50,758 INFO anaconda:packaging: Verifying: dnf-data-4.4.2-11.el8.noarch 1615491563 509728d8aead02aef1dd1caafee8ae42b75ff87481cc3b8e7d1f06e7c1058a48 01:00:50,759 DEBUG anaconda:dnf: Installed: dracut-network-049-135.git20210121.el8.aarch64 01:00:50,759 DEBUG anaconda:dnf: Installed: dracut-squash-049-135.git20210121.el8.aarch64 01:00:50,760 INFO anaconda:packaging: Verifying: dnf-plugins-core-4.0.18-4.el8.noarch 1615491543 b3c2b3517021435b23f1e923ada351a80c0a6c2b5f7df4d54a4574cfbe3fbbbd 01:00:50,760 DEBUG anaconda:dnf: Installed: e2fsprogs-1.45.6-1.el8.aarch64 01:00:50,761 DEBUG anaconda:dnf: Installed: e2fsprogs-libs-1.45.6-1.el8.aarch64 01:00:50,762 DEBUG anaconda:dnf: Installed: efi-filesystem-3-3.el8.noarch 01:00:50,763 INFO anaconda:packaging: Verifying: dosfstools-4.1-6.el8.aarch64 1557581141 e57a218c73df587fb441a22bd4e5f97afb8cbe8812707b26b6dd658910e52dcc 01:00:50,763 DEBUG anaconda:dnf: Installed: efibootmgr-16-1.el8.aarch64 01:00:50,763 DEBUG anaconda:dnf: Installed: efivar-libs-37-4.el8.aarch64 01:00:50,765 DEBUG anaconda:dnf: Installed: elfutils-debuginfod-client-0.182-3.el8.aarch64 01:00:50,765 INFO anaconda:packaging: Verifying: dracut-049-135.git20210121.el8.aarch64 1613121073 2dea79ea9e7c098bf1e19cc04bc9c7beb40a04b96a2cba07110cc8bbc152275c 01:00:50,766 DEBUG anaconda:dnf: Installed: elfutils-default-yama-scope-0.182-3.el8.noarch 01:00:50,766 DEBUG anaconda:dnf: Installed: elfutils-libelf-0.182-3.el8.aarch64 01:00:50,768 DEBUG anaconda:dnf: Installed: elfutils-libs-0.182-3.el8.aarch64 01:00:50,768 INFO anaconda:packaging: Verifying: dracut-config-generic-049-135.git20210121.el8.aarch64 1613121073 cc996e967e2e60926a30f0e5fea0447895367effe674bf57a8373307c4cd8870 01:00:50,769 DEBUG anaconda:dnf: Installed: ethtool-2:5.8-5.el8.aarch64 01:00:50,770 DEBUG anaconda:dnf: Installed: expat-2.2.5-4.el8.aarch64 01:00:50,770 INFO anaconda:packaging: Verifying: dracut-config-rescue-049-135.git20210121.el8.aarch64 1613121073 13fe858934ac13197257298f7b6f56b9fe050320f81fb0b3597c6782ff783feb 01:00:50,770 DEBUG anaconda:dnf: Installed: file-5.33-16.el8_3.1.aarch64 01:00:50,771 DEBUG anaconda:dnf: Installed: file-libs-5.33-16.el8_3.1.aarch64 01:00:50,771 INFO anaconda:packaging: Verifying: dracut-network-049-135.git20210121.el8.aarch64 1613121073 10aa2ffa836febb6d3d54d7fe7e6504d863427176fe2bb45fb592067615a8db2 01:00:50,772 DEBUG anaconda:dnf: Installed: filesystem-3.8-3.el8.aarch64 01:00:50,772 DEBUG anaconda:dnf: Installed: findutils-1:4.6.0-20.el8.aarch64 01:00:50,773 INFO anaconda:packaging: Verifying: dracut-squash-049-135.git20210121.el8.aarch64 1613121073 c262218c02f26800db8fe4ef7cb417f8a63ca46c26042f6da5cf09cc9f6ace14 01:00:50,773 DEBUG anaconda:dnf: Installed: firewalld-0.8.2-7.el8_4.noarch 01:00:50,774 INFO anaconda:packaging: Verifying: e2fsprogs-1.45.6-1.el8.aarch64 1595015162 0cffcd6b8e08d65613fc54169ff4c8c04ee745dbe74bc483a29569ffca105ab4 01:00:50,774 DEBUG anaconda:dnf: Installed: firewalld-filesystem-0.8.2-7.el8_4.noarch 01:00:50,775 DEBUG anaconda:dnf: Installed: fontconfig-2.13.1-3.el8.aarch64 01:00:50,775 INFO anaconda:packaging: Verifying: e2fsprogs-libs-1.45.6-1.el8.aarch64 1595015162 47524e50b7ed9647c1d3e290d99952b4d25623c812afdcf9fd92295b1a283ee5 01:00:50,776 DEBUG anaconda:dnf: Installed: fontpackages-filesystem-1.44-22.el8.noarch 01:00:50,776 DEBUG anaconda:dnf: Installed: freetype-2.9.1-4.el8_3.1.aarch64 01:00:50,777 INFO anaconda:packaging: Verifying: efi-filesystem-3-3.el8.noarch 1605562930 d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb 01:00:50,778 DEBUG anaconda:dnf: Installed: fuse-libs-2.9.7-12.el8.aarch64 01:00:50,778 INFO anaconda:packaging: Verifying: efibootmgr-16-1.el8.aarch64 1557581197 7d604604382cb1ec72fb7534cdff4371e5b8ceb84be26ebb3ea6cfbc613f82d9 01:00:50,779 DEBUG anaconda:dnf: Installed: fwupd-1.5.9-1.el8_4.aarch64 01:00:50,780 INFO anaconda:packaging: Verifying: efivar-libs-37-4.el8.aarch64 1604421490 eeb2ec7fc8fc5a2f69220d4a9bc43e9cfe24ef7f5cdb041f40db3dab23cb87c9 01:00:50,780 DEBUG anaconda:dnf: Installed: gawk-4.2.1-2.el8.aarch64 01:00:50,781 DEBUG anaconda:dnf: Installed: gdbm-1:1.18-1.el8.aarch64 01:00:50,781 INFO anaconda:packaging: Verifying: elfutils-debuginfod-client-0.182-3.el8.aarch64 1608663614 597d72b55ef0a4a6b413ee83dba755defa92e7f35aa0d7b28df9028684d1f402 01:00:50,782 DEBUG anaconda:dnf: Installed: gdbm-libs-1:1.18-1.el8.aarch64 01:00:50,782 DEBUG anaconda:dnf: Installed: gdisk-1.0.3-6.el8.aarch64 01:00:50,783 INFO anaconda:packaging: Verifying: elfutils-default-yama-scope-0.182-3.el8.noarch 1608663614 082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805 01:00:50,783 DEBUG anaconda:dnf: Installed: gdk-pixbuf2-2.36.12-5.el8.aarch64 01:00:50,784 DEBUG anaconda:dnf: Installed: geolite2-city-20180605-1.el8.noarch 01:00:50,784 INFO anaconda:packaging: Verifying: elfutils-libelf-0.182-3.el8.aarch64 1608663614 1d87a1b4c2644e3c495f45b6adc8b94e132f462e3229f4084886406bba9e9cfa 01:00:50,785 DEBUG anaconda:dnf: Installed: geolite2-country-20180605-1.el8.noarch 01:00:50,785 DEBUG anaconda:dnf: Installed: gettext-0.19.8.1-17.el8.aarch64 01:00:50,786 INFO anaconda:packaging: Verifying: elfutils-libs-0.182-3.el8.aarch64 1608663614 27113d3675ab5a44de39fa5336d7cc9745c80995e5b2b07b1c836b0c780b5397 01:00:50,786 DEBUG anaconda:dnf: Installed: gettext-libs-0.19.8.1-17.el8.aarch64 01:00:50,787 INFO anaconda:packaging: Verifying: ethtool-2:5.8-5.el8.aarch64 1605553121 8d1710650057c3d0c3c04c777e3d608fc68faee434adb1a8c0ab1c43e1156d3c 01:00:50,789 DEBUG anaconda:dnf: Installed: glib-networking-2.56.1-1.1.el8.aarch64 01:00:50,789 INFO anaconda:packaging: Verifying: expat-2.2.5-4.el8.aarch64 1589595238 16356a5f29d0b191e84e37c92f9b6a3cd2ef683c84dd37c065f3461ad5abef03 01:00:50,789 DEBUG anaconda:dnf: Installed: glib2-2.56.4-10.el8_4.1.aarch64 01:00:50,790 DEBUG anaconda:dnf: Installed: glibc-2.28-151.el8.aarch64 01:00:50,790 INFO anaconda:packaging: Verifying: file-5.33-16.el8_3.1.aarch64 1617806779 66316b7ae0814bf9cf41216a9b784f144c6a8379481ac7e68480ab8151a99905 01:00:50,791 DEBUG anaconda:dnf: Installed: glibc-all-langpacks-2.28-151.el8.aarch64 01:00:50,791 DEBUG anaconda:dnf: Installed: glibc-common-2.28-151.el8.aarch64 01:00:50,792 INFO anaconda:packaging: Verifying: file-libs-5.33-16.el8_3.1.aarch64 1617806779 740106a98f26f25693c9ec1966bb4315a26f05e01bdee23aa0b35d36139b57b8 01:00:50,792 DEBUG anaconda:dnf: Installed: gmp-1:6.1.2-10.el8.aarch64 01:00:50,793 DEBUG anaconda:dnf: Installed: gnupg2-2.2.20-2.el8.aarch64 01:00:50,793 INFO anaconda:packaging: Verifying: filesystem-3.8-3.el8.aarch64 1604417043 c5e8aa3dc1f3067ccfe85bf9e93bfbfe54434bb9224af414a02d73ff8c0cdf4c 01:00:50,794 DEBUG anaconda:dnf: Installed: gnupg2-smime-2.2.20-2.el8.aarch64 01:00:50,794 DEBUG anaconda:dnf: Installed: gnutls-3.6.14-8.el8_3.aarch64 01:00:50,795 INFO anaconda:packaging: Verifying: findutils-1:4.6.0-20.el8.aarch64 1557534393 985479064966d05aa82010ed5b8905942e47e2bebb919c9c1bd004a28addad1d 01:00:50,795 DEBUG anaconda:dnf: Installed: gobject-introspection-1.56.1-1.el8.aarch64 01:00:50,796 INFO anaconda:packaging: Verifying: firewalld-0.8.2-7.el8_4.noarch 1624987687 f6e07230b5e1542bf8c7f6a34302f53b6043c25ad26c2f6b63bf03788ed7770d 01:00:50,796 DEBUG anaconda:dnf: Installed: gpgme-1.13.1-7.el8.aarch64 01:00:50,796 DEBUG anaconda:dnf: Installed: grep-3.1-6.el8.aarch64 01:00:50,798 INFO anaconda:packaging: Verifying: firewalld-filesystem-0.8.2-7.el8_4.noarch 1624987687 6491de36a047aa3487ff340162c03de9915dc08952f77e1c931988cb29af2ffa 01:00:50,798 DEBUG anaconda:dnf: Installed: groff-base-1.22.3-18.el8.aarch64 01:00:50,799 INFO anaconda:packaging: Verifying: fontconfig-2.13.1-3.el8.aarch64 1557581481 e4dc102f15c1e6104bdeae343e54fcc7929b922b93077f6b50216087e7125a2d 01:00:50,799 DEBUG anaconda:dnf: Installed: grub2-common-1:2.02-99.el8.noarch 01:00:50,800 DEBUG anaconda:dnf: Installed: grub2-efi-aa64-1:2.02-99.el8.aarch64 01:00:50,800 INFO anaconda:packaging: Verifying: fontpackages-filesystem-1.44-22.el8.noarch 1557581453 700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f 01:00:50,801 DEBUG anaconda:dnf: Installed: grub2-tools-1:2.02-99.el8.aarch64 01:00:50,802 DEBUG anaconda:dnf: Installed: grub2-tools-extra-1:2.02-99.el8.aarch64 01:00:50,802 INFO anaconda:packaging: Verifying: freetype-2.9.1-4.el8_3.1.aarch64 1605310445 6eaf1961a46202364f9ebe9da1c24ba2e929ae67c452aa4f0aa5e71bfc2a2a51 01:00:50,802 DEBUG anaconda:dnf: Installed: grub2-tools-minimal-1:2.02-99.el8.aarch64 01:00:50,803 DEBUG anaconda:dnf: Installed: grubby-8.40-41.el8.aarch64 01:00:50,803 INFO anaconda:packaging: Verifying: fuse-libs-2.9.7-12.el8.aarch64 1557581642 0431ac0a9ad2ae9d657a66e9a5dc9326b232732e9967088990c09e826c6f3071 01:00:50,804 DEBUG anaconda:dnf: Installed: gsettings-desktop-schemas-3.32.0-5.el8.aarch64 01:00:50,804 DEBUG anaconda:dnf: Installed: gssproxy-0.8.0-19.el8.aarch64 01:00:50,805 INFO anaconda:packaging: Verifying: fwupd-1.5.9-1.el8_4.aarch64 1624990598 15191dde68fc59ef8cf0e783d046d53a1dcb8ff96eba99852335cb7be58fdfaf 01:00:50,805 DEBUG anaconda:dnf: Installed: gzip-1.9-12.el8.aarch64 01:00:50,806 INFO anaconda:packaging: Verifying: gawk-4.2.1-2.el8.aarch64 1607447894 1597024288d637f0865ca9be73fb1f2e5c495005fa9ca5b3aacc6d8ab8f444a8 01:00:50,807 DEBUG anaconda:dnf: Installed: hardlink-1:1.3-6.el8.aarch64 01:00:50,808 INFO anaconda:packaging: Verifying: gdbm-1:1.18-1.el8.aarch64 1557534276 b7d0b4b922429354ffe7ddac90c8cd448229571b8d8e4c342110edadfe809f99 01:00:50,808 DEBUG anaconda:dnf: Installed: hdparm-9.54-3.el8.aarch64 01:00:50,809 DEBUG anaconda:dnf: Installed: hostname-3.20-6.el8.aarch64 01:00:50,809 INFO anaconda:packaging: Verifying: gdbm-libs-1:1.18-1.el8.aarch64 1557534276 a7d04ae40ad91ba0ea93e4971a35585638f6adf8dbe1ed4849f643b6b64a5871 01:00:50,809 DEBUG anaconda:dnf: Installed: hwdata-0.314-8.8.el8.noarch 01:00:50,810 DEBUG anaconda:dnf: Installed: ima-evm-utils-1.3.2-12.el8.aarch64 01:00:50,810 INFO anaconda:packaging: Verifying: gdisk-1.0.3-6.el8.aarch64 1557581795 2d727c662854847b3bd6c68b15609acc29195a9778ad81307a8e1d857006ae60 01:00:50,811 DEBUG anaconda:dnf: Installed: info-6.5-6.el8.aarch64 01:00:50,812 DEBUG anaconda:dnf: Installed: initscripts-10.00.15-1.el8.aarch64 01:00:50,812 INFO anaconda:packaging: Verifying: gdk-pixbuf2-2.36.12-5.el8.aarch64 1573231851 b2c52d4191957d35b81428fc1e991915839a99fd4d0756c846b5c4dd386b38fe 01:00:50,812 DEBUG anaconda:dnf: Installed: ipcalc-0.2.4-4.el8.aarch64 01:00:50,813 DEBUG anaconda:dnf: Installed: iproute-5.9.0-4.el8.aarch64 01:00:50,813 INFO anaconda:packaging: Verifying: gettext-0.19.8.1-17.el8.aarch64 1573232179 5f0c37488d3017b052039ddb8d9189a38c252af97884264959334237109c7e7c 01:00:50,814 DEBUG anaconda:dnf: Installed: ipset-7.1-1.el8.aarch64 01:00:50,815 DEBUG anaconda:dnf: Installed: ipset-libs-7.1-1.el8.aarch64 01:00:50,815 INFO anaconda:packaging: Verifying: gettext-libs-0.19.8.1-17.el8.aarch64 1573232179 882f23e0250a2d4aea49abb4ec8e11a9a3869ccdd812c796b6f85341ff9d30a2 01:00:50,815 DEBUG anaconda:dnf: Installed: iptables-1.8.4-17.el8.aarch64 01:00:50,816 INFO anaconda:packaging: Verifying: glib-networking-2.56.1-1.1.el8.aarch64 1557581996 aeb3b5ca60e55077ecf9da81d6bcb50a86b909808d7373f3f8a372dabcc1eedb 01:00:50,818 INFO anaconda:packaging: Verifying: glib2-2.56.4-10.el8_4.1.aarch64 1628609837 f9899e210581f892bd2315506499feea648401162b7ee96f5d7e3e7616491478 01:00:50,818 DEBUG anaconda:dnf: Installed: iptables-ebtables-1.8.4-17.el8.aarch64 01:00:50,820 INFO anaconda:packaging: Verifying: glibc-2.28-151.el8.aarch64 1615497081 c40968781efeae3964a9ae675dcf834e09a1b6f92060e8184964125accbee6ae 01:00:50,820 DEBUG anaconda:dnf: Installed: iptables-libs-1.8.4-17.el8.aarch64 01:00:50,820 INFO anaconda:packaging: Verifying: glibc-all-langpacks-2.28-151.el8.aarch64 1615497081 81bddadd1b3ebd1dbb01bd75a80897dc53733a80440103500524bb75c2c3f5d8 01:00:50,821 DEBUG anaconda:dnf: Installed: iputils-20180629-7.el8.aarch64 01:00:50,821 DEBUG anaconda:dnf: Installed: irqbalance-2:1.4.0-6.el8.aarch64 01:00:50,822 INFO anaconda:packaging: Verifying: glibc-common-2.28-151.el8.aarch64 1615497081 cb9d61ff598d6197b1cf93458319d64f7ebf60029ee9b64e77636cf739de41d9 01:00:50,822 DEBUG anaconda:dnf: Installed: jansson-2.11-3.el8.aarch64 01:00:50,823 DEBUG anaconda:dnf: Installed: json-c-0.13.1-0.4.el8.aarch64 01:00:50,823 INFO anaconda:packaging: Verifying: gmp-1:6.1.2-10.el8.aarch64 1573232447 8d407f8ad961169fca2ee5e22e824cbc2d2b5fedca9701896cc492d4cb788603 01:00:50,824 DEBUG anaconda:dnf: Installed: json-glib-1.4.4-1.el8.aarch64 01:00:50,825 DEBUG anaconda:dnf: Installed: kbd-2.0.4-10.el8.aarch64 01:00:50,825 INFO anaconda:packaging: Verifying: gnupg2-2.2.20-2.el8.aarch64 1589573397 5c1fb984527d2c638364bcca6d016cd8a4ff9d656875d9e29b199eef6b41a527 01:00:50,825 DEBUG anaconda:dnf: Installed: kbd-legacy-2.0.4-10.el8.noarch 01:00:50,826 DEBUG anaconda:dnf: Installed: kbd-misc-2.0.4-10.el8.noarch 01:00:50,826 DEBUG anaconda:dnf: Installed: kernel-4.18.0-305.17.1.el8_4.aarch64 01:00:50,827 INFO anaconda:packaging: Verifying: gnupg2-smime-2.2.20-2.el8.aarch64 1589573397 23aadf767124fc38a0dade4a824e48b53ad5d873d389ce442d5d5b3665fde2a6 01:00:50,827 DEBUG anaconda:dnf: Installed: kernel-core-4.18.0-305.17.1.el8_4.aarch64 01:00:50,828 DEBUG anaconda:dnf: Installed: kernel-modules-4.18.0-305.17.1.el8_4.aarch64 01:00:50,828 INFO anaconda:packaging: Verifying: gnutls-3.6.14-8.el8_3.aarch64 1618436341 e95b52fddb50b3626f30205cc2755875345ff56df9445a2cbd379bfedb66b314 01:00:50,828 DEBUG anaconda:dnf: Installed: kernel-tools-4.18.0-305.17.1.el8_4.aarch64 01:00:50,829 DEBUG anaconda:dnf: Installed: kernel-tools-libs-4.18.0-305.17.1.el8_4.aarch64 01:00:50,830 INFO anaconda:packaging: Verifying: gobject-introspection-1.56.1-1.el8.aarch64 1557582127 38b18b20b348adabd9df71ebf378a56c805f086a46b3fb89f2ed5e35f5505417 01:00:50,830 DEBUG anaconda:dnf: Installed: kexec-tools-2.0.20-46.el8_4.2.aarch64 01:00:50,831 DEBUG anaconda:dnf: Installed: keyutils-1.5.10-6.el8.aarch64 01:00:50,831 INFO anaconda:packaging: Verifying: gpgme-1.13.1-7.el8.aarch64 1609882988 cf82a6ec23b9fa60f30fc8d3c8b30c6d1423f81ebedbe06ec7bb32a8b1d7a904 01:00:50,833 DEBUG anaconda:dnf: Installed: keyutils-libs-1.5.10-6.el8.aarch64 01:00:50,833 DEBUG anaconda:dnf: Installed: kmod-25-17.el8.aarch64 01:00:50,833 INFO anaconda:packaging: Verifying: grep-3.1-6.el8.aarch64 1557534549 7ffd6e95b0554466e97346b2f41fb5279aedcb29ae07828f63d06a8dedd7cd51 01:00:50,835 DEBUG anaconda:dnf: Installed: kmod-libs-25-17.el8.aarch64 01:00:50,836 INFO anaconda:packaging: Verifying: groff-base-1.22.3-18.el8.aarch64 1559058588 eb12a527155e0e3ef20e1815fd6395e85d9439a0a895b743e6429e09691e56a2 01:00:50,836 DEBUG anaconda:dnf: Installed: kpartx-0.8.4-10.el8.aarch64 01:00:50,836 DEBUG anaconda:dnf: Installed: krb5-libs-1.18.2-8.el8.aarch64 01:00:50,838 DEBUG anaconda:dnf: Installed: less-530-1.el8.aarch64 01:00:50,838 INFO anaconda:packaging: Verifying: grub2-common-1:2.02-99.el8.noarch 1614719007 4a08d5264e865548e65d31886c91b659b33a2c2ba39fd115b00af3ea0bc91a83 01:00:50,838 DEBUG anaconda:dnf: Installed: libX11-1.6.8-4.el8.aarch64 01:00:50,840 DEBUG anaconda:dnf: Installed: libX11-common-1.6.8-4.el8.noarch 01:00:50,840 INFO anaconda:packaging: Verifying: grub2-efi-aa64-1:2.02-99.el8.aarch64 1614718965 3820be30bf35ddb847712c605ed1c057056a5fd8289e2286b16ca0fa3e1cdea3 01:00:50,840 DEBUG anaconda:dnf: Installed: libXau-1.0.9-3.el8.aarch64 01:00:50,840 DEBUG anaconda:dnf: Installed: libXext-1.3.4-1.el8.aarch64 01:00:50,842 DEBUG anaconda:dnf: Installed: libXrender-0.9.10-7.el8.aarch64 01:00:50,842 INFO anaconda:packaging: Verifying: grub2-tools-1:2.02-99.el8.aarch64 1614718965 d1dda077a4155c51c385363fc679bb82a4cdd1c298963bb2c8b4e3d2325e7f34 01:00:50,844 DEBUG anaconda:dnf: Installed: libacl-2.2.53-1.el8.aarch64 01:00:50,844 INFO anaconda:packaging: Verifying: grub2-tools-extra-1:2.02-99.el8.aarch64 1614718965 c00604e003e6f6ad649397b2c371c5cf4bdc616060995080078e75febd88e04f 01:00:50,844 DEBUG anaconda:dnf: Installed: libappstream-glib-0.7.14-3.el8.aarch64 01:00:50,844 DEBUG anaconda:dnf: Installed: libarchive-3.3.3-1.el8.aarch64 01:00:50,845 DEBUG anaconda:dnf: Installed: libassuan-2.5.1-3.el8.aarch64 01:00:50,845 INFO anaconda:packaging: Verifying: grub2-tools-minimal-1:2.02-99.el8.aarch64 1614718965 c214cbb278bac13bc6a5ce886e8ca56dbdc6d9f9d7376b860e49374bb3dac626 01:00:50,847 DEBUG anaconda:dnf: Installed: libatasmart-0.19-14.el8.aarch64 01:00:50,847 INFO anaconda:packaging: Verifying: grubby-8.40-41.el8.aarch64 1589592817 cab88de20635c5ee1ec987cf14b0fdde69f20dfd67db90e8e3fdc6811fedb155 01:00:50,849 INFO anaconda:packaging: Verifying: gsettings-desktop-schemas-3.32.0-5.el8.aarch64 1595357281 ca7db91c6d3c963ca8b697e018762fdf7329a0f6186b5e7a5a38555e4962290a 01:00:50,851 INFO anaconda:packaging: Verifying: gssproxy-0.8.0-19.el8.aarch64 1607018482 a66c5d0bba10bc7f363b7e4b13763f563ca9c052662c7b2ac42e87922655ee7f 01:00:50,852 INFO anaconda:packaging: Verifying: gzip-1.9-12.el8.aarch64 1610550614 1fe57a2d38c0d449efd06fa3e498e49f1952829f612d657418a7496458c0cb7c 01:00:50,854 INFO anaconda:packaging: Verifying: hardlink-1:1.3-6.el8.aarch64 1557582435 0d6de2febd0e0ef4fa74eb8f3cffa1b194118e4b7bfe4d2010bf4903ce2c4096 01:00:50,855 INFO anaconda:packaging: Verifying: hdparm-9.54-3.el8.aarch64 1605562670 a304b4e5bbb4df945bae85a5d7201e45ee939b8a6539e32506c2d74ce7bd595a 01:00:50,857 INFO anaconda:packaging: Verifying: hostname-3.20-6.el8.aarch64 1557582534 656b3b23230b9c17461b5cde860d46bb84074a406f71840697fca8dffcdf280c 01:00:50,859 INFO anaconda:packaging: Verifying: hwdata-0.314-8.8.el8.noarch 1613120613 0031452488b8975622580b0e1b501e77976eb606ea3e84a125628a698c1ff242 01:00:50,860 INFO anaconda:packaging: Verifying: ima-evm-utils-1.3.2-12.el8.aarch64 1614064293 b2dca0b246c7df7a398d9a1708c45ec6697a69afce5fe0cf1e2629fea1776ac9 01:00:50,862 INFO anaconda:packaging: Verifying: info-6.5-6.el8.aarch64 1587693166 187a1fbb7e2992dfa777c7ca5c2f7369ecb85e4be4a483e6c0c6036e02bacf95 01:00:50,863 INFO anaconda:packaging: Verifying: initscripts-10.00.15-1.el8.aarch64 1613725442 fb3b1edd91abc3b6c0f62d34828cc3c6e50945a9a04a79a7d809caf97ba27a76 01:00:50,865 DEBUG anaconda:dnf: Installed: libattr-2.4.48-3.el8.aarch64 01:00:50,865 INFO anaconda:packaging: Verifying: ipcalc-0.2.4-4.el8.aarch64 1586214965 93f4b9f5198e2b04dd8d176ab127660739b18d33438150b03392925f09321fe8 01:00:50,865 DEBUG anaconda:dnf: Installed: libbasicobjects-0.1.1-39.el8.aarch64 01:00:50,866 INFO anaconda:packaging: Verifying: iproute-5.9.0-4.el8.aarch64 1615818174 face40eec523ec75a6a1e9d1b7d76b150065a79b15a272d8566fa90f73cc916e 01:00:50,867 DEBUG anaconda:dnf: Installed: libblkid-2.32.1-27.el8.aarch64 01:00:50,867 INFO anaconda:packaging: Verifying: ipset-7.1-1.el8.aarch64 1573232968 979928665e57d4a33024ae2098579d051caeaf505e6e0bf20006647d74956581 01:00:50,867 DEBUG anaconda:dnf: Installed: libblockdev-2.24-5.el8.aarch64 01:00:50,868 INFO anaconda:packaging: Verifying: ipset-libs-7.1-1.el8.aarch64 1573232968 5a0a3ebbf94f1c49c9dab50c210e568ea3015db2fe4340652c9883ea249e898d 01:00:50,868 DEBUG anaconda:dnf: Installed: libblockdev-crypto-2.24-5.el8.aarch64 01:00:50,869 DEBUG anaconda:dnf: Installed: libblockdev-fs-2.24-5.el8.aarch64 01:00:50,869 INFO anaconda:packaging: Verifying: iptables-1.8.4-17.el8.aarch64 1611853487 894d7d7611e90a46fccfb68ce9e74f23d06135e8c3051772885374ed1986854f 01:00:50,870 DEBUG anaconda:dnf: Installed: libblockdev-loop-2.24-5.el8.aarch64 01:00:50,870 INFO anaconda:packaging: Verifying: iptables-ebtables-1.8.4-17.el8.aarch64 1611853487 4e24b51eb75563ede5ab1ccc31df20c5313f4f08a9533b4e116c57df14b44b3c 01:00:50,871 DEBUG anaconda:dnf: Installed: libblockdev-mdraid-2.24-5.el8.aarch64 01:00:50,871 INFO anaconda:packaging: Verifying: iptables-libs-1.8.4-17.el8.aarch64 1611853487 a64d19d5a2c51692ff7e2ee346fb14f3fba483a7ea1a2cbaee94a16538af4007 01:00:50,872 DEBUG anaconda:dnf: Installed: libblockdev-part-2.24-5.el8.aarch64 01:00:50,872 DEBUG anaconda:dnf: Installed: libblockdev-swap-2.24-5.el8.aarch64 01:00:50,873 INFO anaconda:packaging: Verifying: iputils-20180629-7.el8.aarch64 1614063816 6a8bdae6d069605468b2a153403187aa157c6d7ec59dd7097f160ea2b10c4899 01:00:50,873 DEBUG anaconda:dnf: Installed: libblockdev-utils-2.24-5.el8.aarch64 01:00:50,874 INFO anaconda:packaging: Verifying: irqbalance-2:1.4.0-6.el8.aarch64 1612249391 cefd3eaed457cf764287462510811813ac91c4fd01ef94e2e165e1db690022cf 01:00:50,874 DEBUG anaconda:dnf: Installed: libbytesize-1.4-3.el8.aarch64 01:00:50,875 DEBUG anaconda:dnf: Installed: libcap-2.26-4.el8.aarch64 01:00:50,877 DEBUG anaconda:dnf: Installed: libcap-ng-0.7.9-5.el8.aarch64 01:00:50,878 DEBUG anaconda:dnf: Installed: libcollection-0.7.0-39.el8.aarch64 01:00:50,878 INFO anaconda:packaging: Verifying: jansson-2.11-3.el8.aarch64 1557583287 b8bd21e036c68bb8fbb9f21e6b5f6998fc3558f55a4b902d5d85664d5929134a 01:00:50,878 INFO anaconda:packaging: Verifying: json-c-0.13.1-0.4.el8.aarch64 1612422606 750b606ae2bc707e7452a8816c57374d3f7e4b59ad9e209e247c23b11d1b6b21 01:00:50,879 INFO anaconda:packaging: Verifying: json-glib-1.4.4-1.el8.aarch64 1557583440 01e70480bb032d5e0b60c5e732d4302d3a0ce73d1502a1729280d2b36e7e1c1a 01:00:50,881 INFO anaconda:packaging: Verifying: kbd-2.0.4-10.el8.aarch64 1595275356 aeacdfce1854c4b0cfe9c272b53b2032127e4beacaa1a161c9192239c5df8f12 01:00:50,882 INFO anaconda:packaging: Verifying: kbd-legacy-2.0.4-10.el8.noarch 1595275356 a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83 01:00:50,883 INFO anaconda:packaging: Verifying: kbd-misc-2.0.4-10.el8.noarch 1595275356 ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f 01:00:50,885 INFO anaconda:packaging: Verifying: kernel-4.18.0-305.17.1.el8_4.aarch64 1631110505 9a2c9be9977b2e7a014f0a5f7f0c8bd41eeed544f7cb3713ac2d18b8ec22a07d 01:00:50,886 INFO anaconda:packaging: Verifying: kernel-core-4.18.0-305.17.1.el8_4.aarch64 1631110505 680fa1c24237dd00359585248a62d77c4de39afef0b420b1c7321bbe4aa4d226 01:00:50,889 INFO anaconda:packaging: Verifying: kernel-modules-4.18.0-305.17.1.el8_4.aarch64 1631110505 682dbf792edfad0dbaaedef3d680a568878410bb58667009af25f1d5fc305416 01:00:50,890 INFO anaconda:packaging: Verifying: kernel-tools-4.18.0-305.17.1.el8_4.aarch64 1631110505 10694fcf2fbe697a37c105b2f7e4a71455662fe43ba91c337712bff07ad7dffd 01:00:50,890 DEBUG anaconda:dnf: Installed: libcom_err-1.45.6-1.el8.aarch64 01:00:50,891 INFO anaconda:packaging: Verifying: kernel-tools-libs-4.18.0-305.17.1.el8_4.aarch64 1631110505 f816d983940e0a7b743c6f0a03a2705799ee1c4890d71ae611f92d17c1cccb82 01:00:50,892 DEBUG anaconda:dnf: Installed: libcomps-0.1.11-5.el8.aarch64 01:00:50,896 INFO anaconda:packaging: Verifying: kexec-tools-2.0.20-46.el8_4.2.aarch64 1628609412 1b85ecc1b5a9faeaf3a880ca40ebfd5ffce571bc198575eb726884d3a0c9add6 01:00:50,896 INFO anaconda:packaging: Verifying: keyutils-1.5.10-6.el8.aarch64 1557534531 edaaf208de0881eeebf3a2b3995c3c7c86bad3e78633c519dcec441753af9688 01:00:50,896 INFO anaconda:packaging: Verifying: keyutils-libs-1.5.10-6.el8.aarch64 1557534531 54e61e873e45000433bec3387112f7ead3c4cb9731045caa8033ff5b14ee46b1 01:00:50,896 DEBUG anaconda:dnf: Installed: libcroco-0.6.12-4.el8_2.1.aarch64 01:00:50,897 DEBUG anaconda:dnf: Installed: libcurl-7.61.1-18.el8.aarch64 01:00:50,897 INFO anaconda:packaging: Verifying: kmod-25-17.el8.aarch64 1611167807 acc9808c1c23f46135bebee5f3f26384c05127d5c8a5a0f7acea2a89572abf12 01:00:50,897 DEBUG anaconda:dnf: Installed: libdaemon-0.14-15.el8.aarch64 01:00:50,904 INFO anaconda:packaging: Verifying: kmod-libs-25-17.el8.aarch64 1611167807 6cf949c297bb672fd816c52f1c7ffc1e772251e585d08a0c3c506eefe38b897f 01:00:50,905 INFO anaconda:packaging: Verifying: kpartx-0.8.4-10.el8.aarch64 1616085052 5dbfcad345dc790f7d6a4d1e7decad7e7b720604e53e40594edbed6730883e73 01:00:50,906 INFO anaconda:packaging: Verifying: krb5-libs-1.18.2-8.el8.aarch64 1610126963 c4349b988307bdcbb4f3cc7999b8febd7a11d6ffe9a5deafc091d617651dbac6 01:00:50,906 INFO anaconda:packaging: Verifying: less-530-1.el8.aarch64 1557583955 2057a073ae0bb0149a8093447fad2577f900577605576b3ca22b2af76e970c5f 01:00:50,907 INFO anaconda:packaging: Verifying: libacl-2.2.53-1.el8.aarch64 1557533888 c4cfed85e5a0db903ad134b4327b1714e5453fcf5c4348ec93ab344860a970ef 01:00:50,907 INFO anaconda:packaging: Verifying: libappstream-glib-0.7.14-3.el8.aarch64 1557584046 791e9574c613eed49b92680ff89cf786f7f3d7bac52bc5427b72b2ea5058dfab 01:00:50,908 INFO anaconda:packaging: Verifying: libarchive-3.3.3-1.el8.aarch64 1601995517 e6ddc29b56fcbabe7bcd1ff1535a72c0d4477176a6321b13006d2aa65477ff9d 01:00:50,908 INFO anaconda:packaging: Verifying: libassuan-2.5.1-3.el8.aarch64 1557534744 cf4d477f18ecd97470d1bc50c0e442de6f7d5db74829221d0f9b1ddfc9a71dab 01:00:50,909 INFO anaconda:packaging: Verifying: libattr-2.4.48-3.el8.aarch64 1557533888 6a6db7eab6e53dccc54116d2ddf86b02db4cff332a58b868f7ba778a99666c58 01:00:50,910 DEBUG anaconda:dnf: Installed: libdb-5.3.28-40.el8.aarch64 01:00:50,911 INFO anaconda:packaging: Verifying: libbasicobjects-0.1.1-39.el8.aarch64 1557580950 fb0c3ae20294a9f49668a4152b6906f399e8856246c0c29458fc682e22c1edbe 01:00:50,912 DEBUG anaconda:dnf: Installed: libdb-utils-5.3.28-40.el8.aarch64 01:00:50,912 INFO anaconda:packaging: Verifying: libblkid-2.32.1-27.el8.aarch64 1611212711 e514c5b60193e394e5ed9a98f1b7547eb47ca87ab56be7d37a1072b94db67498 01:00:50,913 DEBUG anaconda:dnf: Installed: libdhash-0.5.0-39.el8.aarch64 01:00:50,914 INFO anaconda:packaging: Verifying: libcap-2.26-4.el8.aarch64 1592260145 dae95e7b55eda5e7dd4cf016e129a88205de730796061e763fafda2876e8c196 01:00:50,914 DEBUG anaconda:dnf: Installed: libdnf-0.55.0-7.el8.aarch64 01:00:50,914 DEBUG anaconda:dnf: Installed: libedit-3.1-23.20170329cvs.el8.aarch64 01:00:50,915 INFO anaconda:packaging: Verifying: libcap-ng-0.7.9-5.el8.aarch64 1586216615 0a3c264fa00b82fda25a2c4bee6ce9012d7ae76f6c170d857946bb60570e389a 01:00:50,915 DEBUG anaconda:dnf: Installed: libestr-0.1.10-1.el8.aarch64 01:00:50,917 INFO anaconda:packaging: Verifying: libcollection-0.7.0-39.el8.aarch64 1557580950 97e11df69bf2ed6eeb3c93b04d5276216bee58543b5e7ef149d7d82d186f67b5 01:00:50,917 DEBUG anaconda:dnf: Installed: libevent-2.1.8-5.el8.aarch64 01:00:50,918 DEBUG anaconda:dnf: Installed: libfastjson-0.99.8-2.el8.aarch64 01:00:50,918 INFO anaconda:packaging: Verifying: libcom_err-1.45.6-1.el8.aarch64 1595015162 6d7b7f9e867b5e3c019a370dfce36706eecb42ed71fe9ac703249285adf4e58b 01:00:50,918 DEBUG anaconda:dnf: Installed: libfdisk-2.32.1-27.el8.aarch64 01:00:50,920 INFO anaconda:packaging: Verifying: libcomps-0.1.11-5.el8.aarch64 1612422297 46fddbe0b46149f1f6099d555f91d47c952f68dbe6f803f60c3dac88fe66cbbb 01:00:50,921 DEBUG anaconda:dnf: Installed: libffi-3.1-22.el8.aarch64 01:00:50,921 INFO anaconda:packaging: Verifying: libcroco-0.6.12-4.el8_2.1.aarch64 1599668725 0022ec2580783f68e603e9d4751478c28f2b383c596b4e896469077748771bfe 01:00:50,921 DEBUG anaconda:dnf: Installed: libgcab1-1.1-1.el8.aarch64 01:00:50,923 INFO anaconda:packaging: Verifying: libcurl-7.61.1-18.el8.aarch64 1612337043 71d917e0883a85aaa0bcd9b4989799161e8e3a99c2185551444ef1129afb75d4 01:00:50,923 DEBUG anaconda:dnf: Installed: libgcc-8.4.1-1.el8.aarch64 01:00:50,925 INFO anaconda:packaging: Verifying: libdaemon-0.14-15.el8.aarch64 1557584227 752995ca0b46a767a114cd55cc620a3188d68d35747b3e0dc995fb0b8d9dc241 01:00:50,926 INFO anaconda:packaging: Verifying: libdb-5.3.28-40.el8.aarch64 1607448021 cab4f9caf4d9e51a7bcaa4d69e7550d5b9372ce817d956d2e5fa4e374c76a8ab 01:00:50,927 INFO anaconda:packaging: Verifying: libdb-utils-5.3.28-40.el8.aarch64 1607448021 47596a15abbe575d633c60d722e2bb3613d8622d6b44489957b3fca5f652b24a 01:00:50,928 INFO anaconda:packaging: Verifying: libdhash-0.5.0-39.el8.aarch64 1557580950 84af0a7d5811252b51025e77aba787704793106b1c4c3fc6f281bafe72d9a586 01:00:50,930 INFO anaconda:packaging: Verifying: libdnf-0.55.0-7.el8.aarch64 1615494753 f57143929020c17c77bcb242087060a0bfb976c0c7eca0dcbb63a440116ce85e 01:00:50,930 DEBUG anaconda:dnf: Installed: libgcrypt-1.8.5-4.el8.aarch64 01:00:50,934 INFO anaconda:packaging: Verifying: libedit-3.1-23.20170329cvs.el8.aarch64 1557584367 ed1bf4961e5dd6e7c813655a18059f9a854d6512a6f7b3ed3077c280e8d6c13c 01:00:50,934 INFO anaconda:packaging: Verifying: libevent-2.1.8-5.el8.aarch64 1557584388 a7fed3b521d23e60539dcbd548bda2a62f0d745a99dd5feeb43b6539f7f88232 01:00:50,934 DEBUG anaconda:dnf: Installed: libgomp-8.4.1-1.el8.aarch64 01:00:50,934 INFO anaconda:packaging: Verifying: libfdisk-2.32.1-27.el8.aarch64 1611212711 a85df6e1cd59e8138973da2fc292ebdb498426169c5d2fbbe6a265a8e3bc6ef2 01:00:50,934 DEBUG anaconda:dnf: Installed: libgpg-error-1.31-1.el8.aarch64 01:00:50,935 DEBUG anaconda:dnf: Installed: libgudev-232-4.el8.aarch64 01:00:50,936 INFO anaconda:packaging: Verifying: libffi-3.1-22.el8.aarch64 1592240601 9d7e9a47e16b3edd1f9ce69c44bf485e8498cb6ced68e354b4c24936cd015bb5 01:00:50,937 INFO anaconda:packaging: Verifying: libgcab1-1.1-1.el8.aarch64 1557581753 2b631d5095ee3489538ca00499ac65e2815ace2d1feed0996cbbab54762b2fa8 01:00:50,938 DEBUG anaconda:dnf: Installed: libgusb-0.3.0-1.el8.aarch64 01:00:50,939 INFO anaconda:packaging: Verifying: libgcc-8.4.1-1.el8.aarch64 1602524519 334940e794fcfed61e3d249c11d6d785df0203f2ea33225e413a5a05921c4bfb 01:00:50,939 DEBUG anaconda:dnf: Installed: libibverbs-32.0-4.el8.aarch64 01:00:50,940 DEBUG anaconda:dnf: Installed: libidn2-2.2.0-1.el8.aarch64 01:00:50,940 INFO anaconda:packaging: Verifying: libgcrypt-1.8.5-4.el8.aarch64 1595269724 38cc7c6b354c4fa166b24fe641a70233ad9b8b650f8339634f0c3a6baf5b32fc 01:00:50,940 DEBUG anaconda:dnf: Installed: libini_config-1.3.1-39.el8.aarch64 01:00:50,942 INFO anaconda:packaging: Verifying: libgomp-8.4.1-1.el8.aarch64 1602524519 4215904c76e9d7d15f4cea0cac396c4b64956f82b058a8c9ee264046b7bb6f39 01:00:50,943 INFO anaconda:packaging: Verifying: libgpg-error-1.31-1.el8.aarch64 1557534857 b953729a0a2be24749aeee9f00853fdc3227737971cf052a999a37ac36387cd9 01:00:50,943 DEBUG anaconda:dnf: Installed: libkcapi-1.2.0-2.el8.aarch64 01:00:50,944 DEBUG anaconda:dnf: Installed: libkcapi-hmaccalc-1.2.0-2.el8.aarch64 01:00:50,944 INFO anaconda:packaging: Verifying: libgudev-232-4.el8.aarch64 1557584654 3580edd85564275b4f99bc0045d795f9d792e53215560ff955122abf67f83c21 01:00:50,946 DEBUG anaconda:dnf: Installed: libksba-1.3.5-7.el8.aarch64 01:00:50,946 INFO anaconda:packaging: Verifying: libgusb-0.3.0-1.el8.aarch64 1557584651 995a24fdcc789353e5f6670c3b14f317391aead116e782099895f44fe4a1bcd7 01:00:50,946 DEBUG anaconda:dnf: Installed: libldb-2.2.0-2.el8.aarch64 01:00:50,947 DEBUG anaconda:dnf: Installed: libmaxminddb-1.2.0-10.el8.aarch64 01:00:50,947 INFO anaconda:packaging: Verifying: libibverbs-32.0-4.el8.aarch64 1612170306 5f2c69d740886aaa2aa29ba3618b4b51a5d2524a959efe962d88a7e384aeb35a 01:00:50,948 DEBUG anaconda:dnf: Installed: libmbim-1.20.2-1.el8.aarch64 01:00:50,949 INFO anaconda:packaging: Verifying: libidn2-2.2.0-1.el8.aarch64 1573233666 b62589101a60a365ef34447cae78f62e6dba560d403dc56c87036709ea00ad88 01:00:50,949 DEBUG anaconda:dnf: Installed: libmetalink-0.1.3-7.el8.aarch64 01:00:50,950 INFO anaconda:packaging: Verifying: libini_config-1.3.1-39.el8.aarch64 1557580950 4156413385dce1692e46bc8bc42c74bc6b4f9748230bbd4a2134a17e69ea79d9 01:00:50,952 INFO anaconda:packaging: Verifying: libkcapi-1.2.0-2.el8.aarch64 1592279009 56738c2c6eda929cc9a5f6a681fb8c431b9beab6ba207ceb53a9717277282b24 01:00:50,953 INFO anaconda:packaging: Verifying: libkcapi-hmaccalc-1.2.0-2.el8.aarch64 1592279009 25f5e0670a0fe489d04e670ef49bb0dd9e5c111c62e2ed054249cb8db0bb365e 01:00:50,954 DEBUG anaconda:dnf: Installed: libmnl-1.0.4-6.el8.aarch64 01:00:50,955 INFO anaconda:packaging: Verifying: libksba-1.3.5-7.el8.aarch64 1557534860 268145276c48fbb98f90edc9a4379eb30ddc8a9a14d93f5970a7c89281ac7e14 01:00:50,955 DEBUG anaconda:dnf: Installed: libmodman-2.0.1-17.el8.aarch64 01:00:50,956 INFO anaconda:packaging: Verifying: libldb-2.2.0-2.el8.aarch64 1617167657 2c39518dfdca89425e9ed6c4283808793c67d663573187343d539653054befea 01:00:50,956 DEBUG anaconda:dnf: Installed: libmodulemd-2.9.4-2.el8.aarch64 01:00:50,957 DEBUG anaconda:dnf: Installed: libmount-2.32.1-27.el8.aarch64 01:00:50,958 INFO anaconda:packaging: Verifying: libmbim-1.20.2-1.el8.aarch64 1586220057 be00b7c6f61da34124858a5027f889c6ac47fc1e93b871e9c7c3be034f7c2137 01:00:50,958 DEBUG anaconda:dnf: Installed: libndp-1.7-5.el8.aarch64 01:00:50,959 INFO anaconda:packaging: Verifying: libmetalink-0.1.3-7.el8.aarch64 1557534971 b86423694dd6d12a0b608760046ef18f6ee97f96cb8ad661ace419a45525e200 01:00:50,959 DEBUG anaconda:dnf: Installed: libnetfilter_conntrack-1.0.6-5.el8.aarch64 01:00:50,960 INFO anaconda:packaging: Verifying: libmnl-1.0.4-6.el8.aarch64 1557584713 fbe4f2cb2660ebe3cb90a73c7dfbd978059af138356e46c9a93049761c0467ef 01:00:50,961 DEBUG anaconda:dnf: Installed: libnfnetlink-1.0.1-13.el8.aarch64 01:00:50,964 INFO anaconda:packaging: Verifying: libmodman-2.0.1-17.el8.aarch64 1557585031 f2628a19999f78a3ec1a796d66c8cd45f58cfb670850ecb7790528279f410677 01:00:50,965 INFO anaconda:packaging: Verifying: libmodulemd-2.9.4-2.el8.aarch64 1592260013 a3bb8aeb4f6af342eacc714ff1000ffffcb7811302589efcec73f43fe59d33e3 01:00:50,966 INFO anaconda:packaging: Verifying: libmount-2.32.1-27.el8.aarch64 1611212711 4ca4ef2d89f699ae3fe0cadb36de3cb845924c2b3159f48c957a3c4efc025f27 01:00:50,975 INFO anaconda:packaging: Verifying: libndp-1.7-5.el8.aarch64 1615818159 7ba563ae42b9056891bdaa04734cbe4ed5b378afae57cc0897ed48bf31a5f9e7 01:00:50,975 INFO anaconda:packaging: Verifying: libnetfilter_conntrack-1.0.6-5.el8.aarch64 1557585128 4e43b0f85746f74064b082fdf6914ba4e9fe386651b1c39aeaecc702b2a59fc0 01:00:50,975 INFO anaconda:packaging: Verifying: libnfnetlink-1.0.1-13.el8.aarch64 1557585535 8422fbc84108abc9a89fe98cef9cd18ad1788b4dc6a9ec0bba1836b772fcaeda 01:00:50,975 INFO anaconda:packaging: Verifying: libnfsidmap-1:2.3.3-41.el8_4.2.aarch64 1628609553 ae573d3983b854a9556041a3e052e9bb4a7ae35bbf583207c38c309d3e329546 01:00:50,975 INFO anaconda:packaging: Verifying: libnftnl-1.1.5-4.el8.aarch64 1587696714 c85fbf0045e810a8a7df257799a82e32fee141db8119e9f1eb7abdb96553127f 01:00:50,976 INFO anaconda:packaging: Verifying: libnghttp2-1.33.0-3.el8_2.1.aarch64 1593182462 23e9ff009c2316652c3bcd96a8b69b5bc26f2acd46214f652a7ce26a572cbabb 01:00:50,976 INFO anaconda:packaging: Verifying: libnl3-3.5.0-1.el8.aarch64 1586219375 851a9cebfb68b8c301231b1121f573311fbb165ace0f4b1a599fa42f80113df9 01:00:50,976 INFO anaconda:packaging: Verifying: libnl3-cli-3.5.0-1.el8.aarch64 1586219375 47822e5b7a8886e09ac50e1143738976ec2ca431f675834d5cf1dd5031316dbc 01:00:50,977 INFO anaconda:packaging: Verifying: libnsl2-1.2.0-2.20180605git4a062cf.el8.aarch64 1557535010 b33276781f442757afd5e066ead95ec79927f2aed608a368420f230d5ee28686 01:00:50,978 DEBUG anaconda:dnf: Installed: libnfsidmap-1:2.3.3-41.el8_4.2.aarch64 01:00:50,979 INFO anaconda:packaging: Verifying: libpath_utils-0.2.1-39.el8.aarch64 1557580950 6cc569defd57bfde537b5a727ae2413a72e7ed8584be0df30b1613bbf8af1e0a 01:00:50,980 INFO anaconda:packaging: Verifying: libpcap-14:1.9.1-5.el8.aarch64 1611213048 239019a8aadb26e4b015d99f7fe49e80c2d1dfa227f7c71322dca2a2a85c2de1 01:00:50,980 DEBUG anaconda:dnf: Installed: libnftnl-1.1.5-4.el8.aarch64 01:00:50,982 INFO anaconda:packaging: Verifying: libpipeline-1.5.0-2.el8.aarch64 1557585743 f5cf9c5fbec4050a8314d47bf7005504c324ca653b6ed3576859d5ecf880b5be 01:00:50,983 INFO anaconda:packaging: Verifying: libpng-2:1.6.34-5.el8.aarch64 1557585701 d7bd4e7a7ff4424266c0f6030bf444de0bea88d0540ff4caf4f7f6c2bac175f6 01:00:50,984 INFO anaconda:packaging: Verifying: libproxy-0.4.15-5.2.el8.aarch64 1557585849 47df802c2647563bac65f260b56e9385c53062dbdc3f5c1f23a9144ca5902d61 01:00:50,985 DEBUG anaconda:dnf: Installed: libnghttp2-1.33.0-3.el8_2.1.aarch64 01:00:50,985 DEBUG anaconda:dnf: Installed: libnl3-3.5.0-1.el8.aarch64 01:00:50,986 INFO anaconda:packaging: Verifying: libpsl-0.20.2-6.el8.aarch64 1592340389 176cbc82e2a94159d457a7444d05573636084c1900405450715df48ac3a822bd 01:00:50,986 DEBUG anaconda:dnf: Installed: libnl3-cli-3.5.0-1.el8.aarch64 01:00:50,987 DEBUG anaconda:dnf: Installed: libnsl2-1.2.0-2.20180605git4a062cf.el8.aarch64 01:00:50,987 INFO anaconda:packaging: Verifying: libpwquality-1.4.4-3.el8.aarch64 1614064199 64e55ddddc1dd27e05097c9222e73052f6f20f9d2f7605f46922b7756adeb0b5 01:00:50,988 DEBUG anaconda:dnf: Installed: libpath_utils-0.2.1-39.el8.aarch64 01:00:50,989 INFO anaconda:packaging: Verifying: libqmi-1.24.0-1.el8.aarch64 1586461744 ae46383205e15ba9b4fb8ec6ff2f360146a2118e534658894be80653aec40e6a 01:00:50,989 DEBUG anaconda:dnf: Installed: libpcap-14:1.9.1-5.el8.aarch64 01:00:50,990 DEBUG anaconda:dnf: Installed: libpipeline-1.5.0-2.el8.aarch64 01:00:50,990 INFO anaconda:packaging: Verifying: libref_array-0.1.5-39.el8.aarch64 1557580950 73276d31fe59e80654a4cfbda40edf01a8cfdeffbdfc1a5b4a5ff5fdb898dfca 01:00:50,991 DEBUG anaconda:dnf: Installed: libpng-2:1.6.34-5.el8.aarch64 01:00:50,992 INFO anaconda:packaging: Verifying: librepo-1.12.0-3.el8.aarch64 1608178906 75c3348327e6fc7de78abc552f3ff5fd908e6a688a486fd1674b3e040e88be59 01:00:50,992 DEBUG anaconda:dnf: Installed: libproxy-0.4.15-5.2.el8.aarch64 01:00:50,992 DEBUG anaconda:dnf: Installed: libpsl-0.20.2-6.el8.aarch64 01:00:50,995 INFO anaconda:packaging: Verifying: libreport-filesystem-2.9.5-15.el8.aarch64 1598291508 b77595c8e29dcd80ce2e45b8c3b02fbb4d6ad5ca024dc8e80f1339e771294e56 01:00:50,996 INFO anaconda:packaging: Verifying: libseccomp-2.5.1-1.el8.aarch64 1613804837 0e6fcdf916490d8538044bf2dc77aa67a5d7d2c51a654d5eee6dca8f69b06ba8 01:00:50,997 INFO anaconda:packaging: Verifying: libsecret-0.18.6-1.el8.aarch64 1557585898 6665ea7ce8357d9678ed40a58981a554bf0b843b434c839755bc784aef6f2a85 01:00:50,997 INFO anaconda:packaging: Verifying: libselinux-2.9-5.el8.aarch64 1603743587 9474fe348bd9e3a7a6ffe7813538e979e80ddb970b074e4e79bd122b4ece8b64 01:00:50,999 INFO anaconda:packaging: Verifying: libselinux-utils-2.9-5.el8.aarch64 1603743587 e4613455147d283b222fcff5ef0f85b3a1a323893ed884db8950e51936e97c52 01:00:50,999 DEBUG anaconda:dnf: Installed: libpwquality-1.4.4-3.el8.aarch64 01:00:51,000 DEBUG anaconda:dnf: Installed: libqmi-1.24.0-1.el8.aarch64 01:00:51,000 INFO anaconda:packaging: Verifying: libsemanage-2.9-6.el8.aarch64 1612389818 ccb929460b2e9f3fc477b5f040b8e9de1faab4492e696aac4d4eafd4d82b7ba3 01:00:51,001 DEBUG anaconda:dnf: Installed: libref_array-0.1.5-39.el8.aarch64 01:00:51,002 DEBUG anaconda:dnf: Installed: librepo-1.12.0-3.el8.aarch64 01:00:51,002 INFO anaconda:packaging: Verifying: libsepol-2.9-2.el8.aarch64 1610439864 fa227d42012eb38ff357aa85387312a5a189fa143519b39d499dc9cf80896abb 01:00:51,002 DEBUG anaconda:dnf: Installed: libreport-filesystem-2.9.5-15.el8.aarch64 01:00:51,003 INFO anaconda:packaging: Verifying: libsigsegv-2.11-5.el8.aarch64 1557535163 b377f4e8bcdc750ed0be94f97bdbfbb12843c458fbc1d5d507f92ad04aaf592b 01:00:51,003 DEBUG anaconda:dnf: Installed: libseccomp-2.5.1-1.el8.aarch64 01:00:51,005 INFO anaconda:packaging: Verifying: libsmartcols-2.32.1-27.el8.aarch64 1611212711 b986299cff4bc6e8418ef9e9a043a32842d2063adf25cea74d25898b48faf788 01:00:51,005 DEBUG anaconda:dnf: Installed: libsecret-0.18.6-1.el8.aarch64 01:00:51,005 DEBUG anaconda:dnf: Installed: libselinux-2.9-5.el8.aarch64 01:00:51,009 INFO anaconda:packaging: Verifying: libsolv-0.7.16-2.el8.aarch64 1612422384 e429a14e210bdbbc71cb231d31c9c004b79859abbf93bc1c325335083c5c9636 01:00:51,010 INFO anaconda:packaging: Verifying: libsoup-2.62.3-2.el8.aarch64 1602003331 fe9e12b98655b4ccc8cae9ac2d9860709de999486a86456f8f9134840e70dfb3 01:00:51,011 INFO anaconda:packaging: Verifying: libss-1.45.6-1.el8.aarch64 1595015162 cd47553428cea964ec585a18b39f03f7baa9bc49fe7f32c6b5f4a645212c762c 01:00:51,011 INFO anaconda:packaging: Verifying: libssh-0.9.4-2.el8.aarch64 1595350114 6ff55c032a7ba633d1a23611b6e9a1e4415e17625034af72007c51a8d124bb15 01:00:51,011 DEBUG anaconda:dnf: Installed: libselinux-utils-2.9-5.el8.aarch64 01:00:51,012 DEBUG anaconda:dnf: Installed: libsemanage-2.9-6.el8.aarch64 01:00:51,012 INFO anaconda:packaging: Verifying: libssh-config-0.9.4-2.el8.noarch 1595350114 4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb 01:00:51,012 DEBUG anaconda:dnf: Installed: libsepol-2.9-2.el8.aarch64 01:00:51,013 DEBUG anaconda:dnf: Installed: libsigsegv-2.11-5.el8.aarch64 01:00:51,013 INFO anaconda:packaging: Verifying: libsss_autofs-2.4.0-9.el8_4.2.aarch64 1629124289 a286c5c06176c839b460315b03bf0e228e2b383528e1ef85653be9f3ffe5e32d 01:00:51,014 DEBUG anaconda:dnf: Installed: libsmartcols-2.32.1-27.el8.aarch64 01:00:51,014 DEBUG anaconda:dnf: Installed: libsolv-0.7.16-2.el8.aarch64 01:00:51,015 INFO anaconda:packaging: Verifying: libsss_certmap-2.4.0-9.el8_4.2.aarch64 1629124289 358c01a3cedc44b005d28c28ceafdba8878a4e27ea7e7223ecfe64dc6ba4ce2c 01:00:51,015 DEBUG anaconda:dnf: Installed: libsoup-2.62.3-2.el8.aarch64 01:00:51,015 DEBUG anaconda:dnf: Installed: libss-1.45.6-1.el8.aarch64 01:00:51,016 INFO anaconda:packaging: Verifying: libsss_idmap-2.4.0-9.el8_4.2.aarch64 1629124289 d4901d786454782c939dd8b709d796e34eb0357e7dc08b2b2a1c2719f53950d4 01:00:51,016 DEBUG anaconda:dnf: Installed: libssh-0.9.4-2.el8.aarch64 01:00:51,017 DEBUG anaconda:dnf: Installed: libssh-config-0.9.4-2.el8.noarch 01:00:51,017 DEBUG anaconda:dnf: Installed: libsss_autofs-2.4.0-9.el8_4.2.aarch64 01:00:51,017 INFO anaconda:packaging: Verifying: libsss_nss_idmap-2.4.0-9.el8_4.2.aarch64 1629124289 9e717c0b9abc2cc84e62b92e98c6e4b7da5831e6a1dfb8854b2d35b074d9a179 01:00:51,018 DEBUG anaconda:dnf: Installed: libsss_certmap-2.4.0-9.el8_4.2.aarch64 01:00:51,018 DEBUG anaconda:dnf: Installed: libsss_idmap-2.4.0-9.el8_4.2.aarch64 01:00:51,019 INFO anaconda:packaging: Verifying: libsss_sudo-2.4.0-9.el8_4.2.aarch64 1629124289 fd82a3e81683f7193c5fbcf041a1275afed343c661bb531b2a8c6aab940c95ac 01:00:51,019 DEBUG anaconda:dnf: Installed: libsss_nss_idmap-2.4.0-9.el8_4.2.aarch64 01:00:51,020 DEBUG anaconda:dnf: Installed: libsss_sudo-2.4.0-9.el8_4.2.aarch64 01:00:51,020 INFO anaconda:packaging: Verifying: libstdc++-8.4.1-1.el8.aarch64 160252451 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11490/12000 9 4c2721eb67d8ce9a71b10a8a2cf82fdc6ee1f3663b8b65eb6128bde4b2df9740 01:00:51,020 DEBUG anaconda:dnf: Installed: libstdc++-8.4.1-1.el8.aarch64 01:00:51,021 DEBUG anaconda:dnf: Installed: libstemmer-0-10.585svn.el8.aarch64 01:00:51,021 DEBUG anaconda:dnf: Installed: libsysfs-2.1.0-24.el8.aarch64 01:00:51,022 INFO anaconda:packaging: Verifying: libstemmer-0-10.585svn.el8.aarch64 1557586055 9d17e43486ac5add558ad43514b81444a6e2603d5f9e8d24b89d41ae5b98b4f6 01:00:51,022 DEBUG anaconda:dnf: Installed: libtalloc-2.3.1-2.el8.aarch64 01:00:51,023 DEBUG anaconda:dnf: Installed: libtasn1-4.13-3.el8.aarch64 01:00:51,023 INFO anaconda:packaging: Verifying: libsysfs-2.1.0-24.el8.aarch64 1557589647 c31bbacfb56aa3e6eaaba32c7e2a186bdedcd768a5d12bfeaeacada350afb4b1 01:00:51,023 DEBUG anaconda:dnf: Installed: libtdb-1.4.3-1.el8.aarch64 01:00:51,024 DEBUG anaconda:dnf: Installed: libteam-1.31-2.el8.aarch64 01:00:51,025 INFO anaconda:packaging: Verifying: libtalloc-2.3.1-2.el8.aarch64 1594938760 0029a34ac546a1104f0d3ec58bea955f19c26daa6f73ccfe16c659badf2611cf 01:00:51,025 DEBUG anaconda:dnf: Installed: libtevent-0.10.2-2.el8.aarch64 01:00:51,025 DEBUG anaconda:dnf: Installed: libtirpc-1.1.4-4.el8.aarch64 01:00:51,026 INFO anaconda:packaging: Verifying: libtasn1-4.13-3.el8.aarch64 1557535255 3401ccfb7fd08c12578b6257b4dac7e94ba5f4cd70fc6a234fd90bb99d1bb108 01:00:51,026 DEBUG anaconda:dnf: Installed: libudisks2-2.9.0-6.el8.aarch64 01:00:51,026 DEBUG anaconda:dnf: Installed: libunistring-0.9.9-3.el8.aarch64 01:00:51,027 DEBUG anaconda:dnf: Installed: libusbx-1.0.23-4.el8.aarch64 01:00:51,027 INFO anaconda:packaging: Verifying: libtdb-1.4.3-1.el8.aarch64 1594938956 3bf6931172acbde40c8ab685946e89075175f443ec27c220370445cdba5b619f 01:00:51,028 DEBUG anaconda:dnf: Installed: libuser-0.62-23.el8.aarch64 01:00:51,028 DEBUG anaconda:dnf: Installed: libutempter-1.1.6-14.el8.aarch64 01:00:51,028 INFO anaconda:packaging: Verifying: libteam-1.31-2.el8.aarch64 1599579275 4f1d3ac69dc9ded1f121002a01aed7a69f526c0fd6313b6aa46267a16de5f675 01:00:51,029 DEBUG anaconda:dnf: Installed: libuuid-2.32.1-27.el8.aarch64 01:00:51,029 DEBUG anaconda:dnf: Installed: libverto-0.3.0-5.el8.aarch64 01:00:51,030 INFO anaconda:packaging: Verifying: libtevent-0.10.2-2.el8.aarch64 1594939778 587aaa3208d8682fca63899ef19164600e43260f8509db60fd21fce03a0877a4 01:00:51,030 DEBUG anaconda:dnf: Installed: libverto-libevent-0.3.0-5.el8.aarch64 01:00:51,031 DEBUG anaconda:dnf: Installed: libxcb-1.13.1-1.el8.aarch64 01:00:51,031 DEBUG anaconda:dnf: Installed: libxcrypt-4.1.1-4.el8.aarch64 01:00:51,031 INFO anaconda:packaging: Verifying: libtirpc-1.1.4-4.el8.aarch64 1573234751 5f5d63e14ca77e84ae79d1d78569ad9326af6c107be137461800527afb5613eb 01:00:51,032 DEBUG anaconda:dnf: Installed: libxkbcommon-0.9.1-1.el8.aarch64 01:00:51,032 DEBUG anaconda:dnf: Installed: libxml2-2.9.7-9.el8_4.2.aarch64 01:00:51,033 INFO anaconda:packaging: Verifying: libunistring-0.9.9-3.el8.aarch64 1557535383 707429ccb3223628d55097a162cd0d3de1bd00b48800677c1099931b0f019e80 01:00:51,033 DEBUG anaconda:dnf: Installed: libxmlb-0.1.15-1.el8.aarch64 01:00:51,034 DEBUG anaconda:dnf: Installed: libyaml-0.1.7-5.el8.aarch64 01:00:51,034 INFO anaconda:packaging: Verifying: libusbx-1.0.23-4.el8.aarch64 1597695003 ae797d004f3cafb89773fcc8a3f0d6d046546b7cb3f9741be200d095c637706f 01:00:51,034 DEBUG anaconda:dnf: Installed: libzstd-1.4.4-1.el8.aarch64 01:00:51,035 DEBUG anaconda:dnf: Installed: linux-firmware-20201218-102.git05789708.el8.noarch 01:00:51,035 INFO anaconda:packaging: Verifying: libuser-0.62-23.el8.aarch64 1573234877 7235adbeb071f9076a9595523cae26a97be5afbb015ccab9ba459764e4cc4ee0 01:00:51,035 DEBUG anaconda:dnf: Installed: logrotate-3.14.0-4.el8.aarch64 01:00:51,036 DEBUG anaconda:dnf: Installed: lshw-B.02.19.2-5.el8.aarch64 01:00:51,037 DEBUG anaconda:dnf: Installed: lsscsi-0.32-2.el8.aarch64 01:00:51,037 INFO anaconda:packaging: Verifying: libutempter-1.1.6-14.el8.aarch64 1557535324 8f6d9839a758fdacfdb4b4b0731e8023b8bbb0b633bd32dbf21c2ce85a933a8a 01:00:51,037 DEBUG anaconda:dnf: Installed: lua-libs-5.3.4-11.el8.aarch64 01:00:51,038 DEBUG anaconda:dnf: Installed: lz4-libs-1.8.3-3.el8_4.aarch64 01:00:51,038 INFO anaconda:packaging: Verifying: libuuid-2.32.1-27.el8.aarch64 1611212711 83ae9139d0c1113285841b8f72d9593d295cba2c5bbfe65380146cd2af9f45ce 01:00:51,038 DEBUG anaconda:dnf: Installed: lzo-2.08-14.el8.aarch64 01:00:51,039 DEBUG anaconda:dnf: Installed: man-db-2.7.6.1-17.el8.aarch64 01:00:51,039 INFO anaconda:packaging: Verifying: libverto-0.3.0-5.el8.aarch64 1557535347 446f45706d78e80d4057d9d55dda32ce1cb823b2ca4dfe50f0ca5b515238130d 01:00:51,040 DEBUG anaconda:dnf: Installed: mdadm-4.1-16.el8_4.aarch64 01:00:51,040 DEBUG anaconda:dnf: Installed: memstrack-0.1.11-1.el8.aarch64 01:00:51,041 DEBUG anaconda:dnf: Installed: mokutil-1:0.3.0-11.el8.aarch64 01:00:51,041 INFO anaconda:packaging: Verifying: libverto-libevent-0.3.0-5.el8.aarch64 1557535347 c32f372529ad09dea40f1262ceec38464f1bd8aa8acb2ba1358e0d1742743261 01:00:51,041 DEBUG anaconda:dnf: Installed: mozjs60-60.9.0-4.el8.aarch64 01:00:51,042 DEBUG anaconda:dnf: Installed: mpfr-3.1.6-1.el8.aarch64 01:00:51,042 INFO anaconda:packaging: Verifying: libxcrypt-4.1.1-4.el8.aarch64 1557535351 2221fb6f38fb36025c3283afe04e009bb1cc688144e71c5a9edc6717f22012c0 01:00:51,043 DEBUG anaconda:dnf: Installed: ncurses-6.1-7.20180224.el8.aarch64 01:00:51,043 DEBUG anaconda:dnf: Installed: ncurses-base-6.1-7.20180224.el8.noarch 01:00:51,043 INFO anaconda:packaging: Verifying: libxml2-2.9.7-9.el8_4.2.aarch64 1624987190 97bde603d98f25ba5c39972734de86c106c73384f9584e8aa79ab22ed8858684 01:00:51,044 DEBUG anaconda:dnf: Installed: ncurses-libs-6.1-7.20180224.el8.aarch64 01:00:51,044 DEBUG anaconda:dnf: Installed: nettle-3.4.1-4.el8_3.aarch64 01:00:51,045 INFO anaconda:packaging: Verifying: libxmlb-0.1.15-1.el8.aarch64 1589587122 681a63da0ba730eb9acfc209b02e0df7d9cb48722703389c05461e56848b8a93 01:00:51,045 DEBUG anaconda:dnf: Installed: newt-0.52.20-11.el8.aarch64 01:00:51,045 DEBUG anaconda:dnf: Installed: nfs-utils-1:2.3.3-41.el8_4.2.aarch64 01:00:51,046 DEBUG anaconda:dnf: Installed: nftables-1:0.9.3-18.el8.aarch64 01:00:51,046 INFO anaconda:packaging: Verifying: libyaml-0.1.7-5.el8.aarch64 1557586308 30327c94b9729602f0b4dd73ff67edc2b7269af782182a2c02f44246ffe7f10f 01:00:51,047 DEBUG anaconda:dnf: Installed: npth-1.5-4.el8.aarch64 01:00:51,047 DEBUG anaconda:dnf: Installed: nspr-4.25.0-2.el8_2.aarch64 01:00:51,048 INFO anaconda:packaging: Verifying: libzstd-1.4.4-1.el8.aarch64 1592405039 b560a8a185100a7c80e6c32f69ba65ce17004156f7218cf183249b15c13295cc 01:00:51,048 DEBUG anaconda:dnf: Installed: nss-3.53.1-17.el8_3.aarch64 01:00:51,049 DEBUG anaconda:dnf: Installed: nss-softokn-3.53.1-17.el8_3.aarch64 01:00:51,049 INFO anaconda:packaging: Verifying: linux-firmware-20201218-102.git05789708.el8.noarch 1611853440 cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03 01:00:51,049 DEBUG anaconda:dnf: Installed: nss-softokn-freebl-3.53.1-17.el8_3.aarch64 01:00:51,050 DEBUG anaconda:dnf: Installed: nss-sysinit-3.53.1-17.el8_3.aarch64 01:00:51,050 DEBUG anaconda:dnf: Installed: nss-util-3.53.1-17.el8_3.aarch64 01:00:51,050 INFO anaconda:packaging: Verifying: logrotate-3.14.0-4.el8.aarch64 1589594143 652669a54f26b9d3d43a344c7b1ddd50c9601acaed10779f7183bbf9b730a351 01:00:51,051 DEBUG anaconda:dnf: Installed: numactl-libs-2.0.12-11.el8.aarch64 01:00:51,051 DEBUG anaconda:dnf: Installed: oddjob-0.34.7-1.el8.aarch64 01:00:51,052 INFO anaconda:packaging: Verifying: lshw-B.02.19.2-5.el8.aarch64 1612335858 b85c88cf8bbc27f000910367fa1a95e031c0a1ce20fde06b8ad9b8892e73b99e 01:00:51,052 DEBUG anaconda:dnf: Installed: oddjob-mkhomedir-0.34.7-1.el8.aarch64 01:00:51,053 DEBUG anaconda:dnf: Installed: openldap-2.4.46-17.el8_4.aarch64 01:00:51,053 INFO anaconda:packaging: Verifying: lsscsi-0.32-2.el8.aarch64 1605563467 c2db72eece99cda2b9e88517fc5c619e40fea27ac2bd8f17155ae731ebea320e 01:00:51,053 DEBUG anaconda:dnf: Installed: openssh-8.0p1-6.el8_4.2.aarch64 01:00:51,054 DEBUG anaconda:dnf: Installed: openssh-clients-8.0p1-6.el8_4.2.aarch64 01:00:51,054 INFO anaconda:packaging: Verifying: lua-libs-5.3.4-11.el8.aarch64 1573235119 914f1d8cf5385ec874ac88b00f5ae99e77be48aa6c7157a2e0c1c5355c415c94 01:00:51,055 DEBUG anaconda:dnf: Installed: openssh-server-8.0p1-6.el8_4.2.aarch64 01:00:51,055 DEBUG anaconda:dnf: Installed: openssl-1:1.1.1g-15.el8_3.aarch64 01:00:51,056 DEBUG anaconda:dnf: Installed: openssl-libs-1:1.1.1g-15.el8_3.aarch64 01:00:51,056 INFO anaconda:packaging: Verifying: lz4-libs-1.8.3-3.el8_4.aarch64 1624987292 db9075646bed11355faf8b425c655a40a55436715a9f401f60e205ddd66edfeb 01:00:51,056 DEBUG anaconda:dnf: Installed: openssl-pkcs11-0.4.10-2.el8.aarch64 01:00:51,057 DEBUG anaconda:dnf: Installed: os-prober-1.74-6.el8.aarch64 01:00:51,057 INFO anaconda:packaging: Verifying: lzo-2.08-14.el8.aarch64 1557586698 6809839757bd05082ca1b8d23eac617898eda3ce34844a0d31b0a030c8cc6653 01:00:51,057 DEBUG anaconda:dnf: Installed: p11-kit-0.23.22-1.el8.aarch64 01:00:51,058 DEBUG anaconda:dnf: Installed: p11-kit-trust-0.23.22-1.el8.aarch64 01:00:51,059 INFO anaconda:packaging: Verifying: man-db-2.7.6.1-17.el8.aarch64 1557586723 9d9492991dc9808ee56e00ab111f95714c62fee7fcbdb2141684c473ed2b2cc9 01:00:51,059 DEBUG anaconda:dnf: Installed: pam-1.3.1-14.el8.aarch64 01:00:51,059 DEBUG anaconda:dnf: Installed: parted-3.2-38.el8.aarch64 01:00:51,060 DEBUG anaconda:dnf: Installed: passwd-0.80-3.el8.aarch64 01:00:51,060 INFO anaconda:packaging: Verifying: mdadm-4.1-16.el8_4.aarch64 1628609260 6929d61ca2b5a2e3975353e07e91e05669649f5a296a048ca3b5a166e1d5a514 01:00:51,060 DEBUG anaconda:dnf: Installed: pciutils-3.7.0-1.el8.aarch64 01:00:51,061 DEBUG anaconda:dnf: Installed: pciutils-libs-3.7.0-1.el8.aarch64 01:00:51,061 INFO anaconda:packaging: Verifying: memstrack-0.1.11-1.el8.aarch64 1597179886 d243985eed87e395c99f05ecfda5a55884d1e7df6f02f5ee01fcc76f520c9f1a 01:00:51,062 DEBUG anaconda:dnf: Installed: pcre-8.42-4.el8.aarch64 01:00:51,062 DEBUG anaconda:dnf: Installed: pcre2-10.32-2.el8.aarch64 01:00:51,063 INFO anaconda:packaging: Verifying: mokutil-1:0.3.0-11.el8.aarch64 1611112249 7497656e09f43d0bbd9f97a89736b0d46bd8fe4ac823d78c5165b4efd9b5b4d2 01:00:51,063 DEBUG anaconda:dnf: Installed: pigz-2.4-4.el8.aarch64 01:00:51,063 DEBUG anaconda:dnf: Installed: pinentry-1.1.0-2.el8.aarch64 01:00:51,064 INFO anaconda:packaging: Verifying: mozjs60-60.9.0-4.el8.aarch64 1587753322 8a1da341e022af37e9861bb2e8f2b045ad0b36cd783547c0dee08b8097e73c80 01:00:51,064 DEBUG anaconda:dnf: Installed: pixman-0.38.4-1.el8.aarch64 01:00:51,065 DEBUG anaconda:dnf: Installed: platform-python-3.6.8-37.el8.aarch64 01:00:51,065 DEBUG anaconda:dnf: Installed: platform-python-pip-9.0.3-19.el8.noarch 01:00:51,065 INFO anaconda:packaging: Verifying: mpfr-3.1.6-1.el8.aarch64 1557535575 97a998a1b93c21bf070f9a9a1dbb525234b00fccedfe67de8967cd9ec7132eb1 01:00:51,066 DEBUG anaconda:dnf: Installed: platform-python-setuptools-39.2.0-6.el8.noarch 01:00:51,066 DEBUG anaconda:dnf: Installed: policycoreutils-2.9-14.el8.aarch64 01:00:51,067 INFO anaconda:packaging: Verifying: ncurses-6.1-7.20180224.el8.aarch64 1557535702 313b9d0ba8b2734cde9edfdf477616c1e535998238e43a1b6465cf946eb92c0b 01:00:51,067 DEBUG anaconda:dnf: Installed: policycoreutils-python-utils-2.9-14.el8.noarch 01:00:51,068 DEBUG anaconda:dnf: Installed: polkit-0.115-11.el8_4.1.aarch64 01:00:51,068 INFO anaconda:packaging: Verifying: ncurses-base-6.1-7.20180224.el8.noarch 1557535702 1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d 01:00:51,068 DEBUG anaconda:dnf: Installed: polkit-libs-0.115-11.el8_4.1.aarch64 01:00:51,069 DEBUG anaconda:dnf: Installed: polkit-pkla-compat-0.1-12.el8.aarch64 01:00:51,069 DEBUG anaconda:dnf: Installed: popt-1.18-1.el8.aarch64 01:00:51,070 INFO anaconda:packaging: Verifying: ncurses-libs-6.1-7.20180224.el8.aarch64 1557535702 4d62bee2b38b7ae79937139f3e246ddefd184da953a70263d633f770d30b60c3 01:00:51,070 DEBUG anaconda:dnf: Installed: prefixdevname-0.1.0-6.el8.aarch64 01:00:51,071 DEBUG anaconda:dnf: Installed: procps-ng-3.3.15-6.el8.aarch64 01:00:51,071 INFO anaconda:packaging: Verifying: nettle-3.4.1-4.el8_3.aarch64 1618436289 cb15a94a261477946cdb55373ca0e6b0666bf82fc68d4684e7f4a8c496882dd2 01:00:51,071 DEBUG anaconda:dnf: Installed: psmisc-23.1-5.el8.aarch64 01:00:51,072 DEBUG anaconda:dnf: Installed: publicsuffix-list-dafsa-20180723-1.el8.noarch 01:00:51,072 INFO anaconda:packaging: Verifying: newt-0.52.20-11.el8.aarch64 1586208562 b0b43ae9d3f38a2bd20dd4452a3d6e791407ac3b24b71019605e8caf8adaf79e 01:00:51,072 DEBUG anaconda:dnf: Installed: python3-audit-3.0-0.17.20191104git1c2f876.el8.aarch64 01:00:51,073 DEBUG anaconda:dnf: Installed: python3-babel-2.5.1-5.el8.noarch 01:00:51,074 INFO anaconda:packaging: Verifying: nfs-utils-1:2.3.3-41.el8_4.2.aarch64 1628609553 f7654dfcc34c9e394024273ff4f29e0eb1bcac8a1e43014c9d4a2818d60aa488 01:00:51,074 DEBUG anaconda:dnf: Installed: python3-cairo-1.16.3-6.el8.aarch64 01:00:51,074 DEBUG anaconda:dnf: Installed: python3-cffi-1.11.5-5.el8.aarch64 01:00:51,075 DEBUG anaconda:dnf: Installed: python3-chardet-3.0.4-7.el8.noarch 01:00:51,075 INFO anaconda:packaging: Verifying: nftables-1:0.9.3-18.el8.aarch64 1615411625 b5a6e135afed7038aa1b6f5f53ddb98fc079765fcd84ec36b27c4af3dae3d33a 01:00:51,075 DEBUG anaconda:dnf: Installed: python3-configobj-5.0.6-11.el8.noarch 01:00:51,076 DEBUG anaconda:dnf: Installed: python3-cryptography-3.2.1-4.el8.aarch64 01:00:51,076 INFO anaconda:packaging: Verifying: npth-1.5-4.el8.aarch64 1557535644 eaaeb7ee9274c38650feab7a7abae0b6b38637cded9cf6c828651326b791dc68 01:00:51,077 DEBUG anaconda:dnf: Installed: python3-dateutil-1:2.6.1-6.el8.noarch 01:00:51,077 DEBUG anaconda:dnf: Installed: python3-dbus-1.2.4-15.el8.aarch64 01:00:51,078 INFO anaconda:packaging: Verifying: numactl-libs-2.0.12-11.el8.aarch64 1589588457 316ba902f1e1ee768e86f956efd4f4cc30d9023d7797ec3a4cbfd727363ad274 01:00:51,078 DEBUG anaconda:dnf: Installed: python3-decorator-4.2.1-2.el8.noarch 01:00:51,078 DEBUG anaconda:dnf: Installed: python3-dnf-4.4.2-11.el8.noarch 01:00:51,079 DEBUG anaconda:dnf: Installed: python3-dnf-plugins-core-4.0.18-4.el8.noarch 01:00:51,079 INFO anaconda:packaging: Verifying: openldap-2.4.46-17.el8_4.aarch64 1623941051 2d3343015e291d718b75dc1f395e526429835685fe98f62d4f0d64bc99f830a6 01:00:51,080 DEBUG anaconda:dnf: Installed: python3-firewall-0.8.2-7.el8_4.noarch 01:00:51,080 DEBUG anaconda:dnf: Installed: python3-gobject-3.28.3-2.el8.aarch64 01:00:51,080 INFO anaconda:packaging: Verifying: openssh-8.0p1-6.el8_4.2.aarch64 1622130979 202846d57a464cb7d83c4117c835cb6d826d6d34316e89d27a3df59b06dcf46f 01:00:51,081 DEBUG anaconda:dnf: Installed: python3-gobject-base-3.28.3-2.el8.aarch64 01:00:51,081 DEBUG anaconda:dnf: Installed: python3-gpg-1.13.1-7.el8.aarch64 01:00:51,082 INFO anaconda:packaging: Verifying: openssh-clients-8.0p1-6.el8_4.2.aarch64 1622130979 2f5327e46b79f61b1d7c433a7054766846d2765e5b459cbe32d239c30efa957c 01:00:51,082 DEBUG anaconda:dnf: Installed: python3-hawkey-0.55.0-7.el8.aarch64 01:00:51,083 DEBUG anaconda:dnf: Installed: python3-idna-2.5-5.el8.noarch 01:00:51,083 INFO anaconda:packaging: Verifying: openssh-server-8.0p1-6.el8_4.2.aarch64 1622130979 f19335b38927bcd8fa60c5d02162a62ecf72401714e1e0a4189f44d6fc354ed4 01:00:51,083 DEBUG anaconda:dnf: Installed: python3-jinja2-2.10.1-2.el8_0.noarch 01:00:51,084 DEBUG anaconda:dnf: Installed: python3-jsonpatch-1.21-2.el8.noarch 01:00:51,084 DEBUG anaconda:dnf: Installed: python3-jsonpointer-1.10-11.el8.noarch 01:00:51,085 INFO anaconda:packaging: Verifying: openssl-1:1.1.1g-15.el8_3.aarch64 1617116102 4201b41e521c75ab876d9ae2687bd31369a7b87de2f6b4042be788f7fd3ecfc4 01:00:51,085 DEBUG anaconda:dnf: Installed: python3-jsonschema-2.6.0-4.el8.noarch 01:00:51,086 DEBUG anaconda:dnf: Installed: python3-jwt-1.6.1-2.el8.noarch 01:00:51,086 INFO anaconda:packaging: Verifying: openssl-libs-1:1.1.1g-15.el8_3.aarch64 1617116102 0a85ce00ab6f9894dc40287bc99cae6583d821c105852072db78c1f4afa85e20 01:00:51,086 DEBUG anaconda:dnf: Installed: python3-libcomps-0.1.11-5.el8.aarch64 01:00:51,087 DEBUG anaconda:dnf: Installed: python3-libdnf-0.55.0-7.el8.aarch64 01:00:51,087 INFO anaconda:packaging: Verifying: openssl-pkcs11-0.4.10-2.el8.aarch64 1586219947 f758b3e76f41ecb5340e7def046acd9f91242ebe7060ad2d509381584075ead8 01:00:51,087 DEBUG anaconda:dnf: Installed: python3-libs-3.6.8-37.el8.aarch64 01:00:51,088 DEBUG anaconda:dnf: Installed: python3-libselinux-2.9-5.el8.aarch64 01:00:51,089 DEBUG anaconda:dnf: Installed: python3-libsemanage-2.9-6.el8.aarch64 01:00:51,089 INFO anaconda:packaging: Verifying: os-prober-1.74-6.el8.aarch64 1557587474 5515efce88237588ed2f13b8008846f139cafd1ba5063eccdfb156af03fc8f75 01:00:51,089 DEBUG anaconda:dnf: Installed: python3-libxml2-2.9.7-9.el8_4.2.aarch64 01:00:51,090 DEBUG anaconda:dnf: Installed: python3-linux-procfs-0.6.3-1.el8.noarch 01:00:51,090 INFO anaconda:packaging: Verifying: p11-kit-0.23.22-1.el8.aarch64 1610440318 cfee10a5ca5613896a4e84716aa393094fd97c09f2c585c9aa921e6063783867 01:00:51,090 DEBUG anaconda:dnf: Installed: python3-markupsafe-0.23-19.el8.aarch64 01:00:51,091 DEBUG anaconda:dnf: Installed: python3-nftables-1:0.9.3-18.el8.aarch64 01:00:51,091 INFO anaconda:packaging: Verifying: p11-kit-trust-0.23.22-1.el8.aarch64 1610440318 3fc181bf0f076fef283fdb63d36e7b84930c8822fa67dff6e1ccea9987d6dbf3 01:00:51,092 DEBUG anaconda:dnf: Installed: python3-oauthlib-2.1.0-1.el8.noarch 01:00:51,092 DEBUG anaconda:dnf: Installed: python3-perf-4.18.0-305.17.1.el8_4.aarch64 01:00:51,093 INFO anaconda:packaging: Verifying: pam-1.3.1-14.el8.aarch64 1606949345 32f47ba9eb0537e9939b6d8afc0e7f44bdeebca2f33513b7fafeec27101d4257 01:00:51,093 DEBUG anaconda:dnf: Installed: python3-pexpect-4.3.1-3.el8.noarch 01:00:51,093 DEBUG anaconda:dnf: Installed: python3-pip-wheel-9.0.3-19.el8.noarch 01:00:51,094 DEBUG anaconda:dnf: Installed: python3-ply-3.9-9.el8.noarch 01:00:51,094 INFO anaconda:packaging: Verifying: parted-3.2-38.el8.aarch64 1573237793 52e88fe9b9a841735a8ef826592fc11ef7006b3368ff224c4577aad86b5989ea 01:00:51,094 DEBUG anaconda:dnf: Installed: python3-policycoreutils-2.9-14.el8.noarch 01:00:51,095 DEBUG anaconda:dnf: Installed: python3-prettytable-0.7.2-14.el8.noarch 01:00:51,095 INFO anaconda:packaging: Verifying: passwd-0.80-3.el8.aarch64 1586221803 5175b8c44052fe8a2cfa001f3937072190218cd432d4070ca64a3883c638f0e7 01:00:51,096 DEBUG anaconda:dnf: Installed: python3-ptyprocess-0.5.2-4.el8.noarch 01:00:51,096 DEBUG anaconda:dnf: Installed: python3-pycparser-2.14-14.el8.noarch 01:00:51,097 INFO anaconda:packaging: Verifying: pciutils-3.7.0-1.el8.aarch64 1606871367 8337a6e98b7ae82d5263e08524381a5e396fd7cafca6f7195753286c0c082a04 01:00:51,097 DEBUG anaconda:dnf: Installed: python3-pydbus-0.6.0-5.el8.noarch 01:00:51,097 DEBUG anaconda:dnf: Installed: python3-pyserial-3.1.1-8.el8.noarch 01:00:51,098 DEBUG anaconda:dnf: Installed: python3-pysocks-1.6.8-3.el8.noarch 01:00:51,098 INFO anaconda:packaging: Verifying: pciutils-libs-3.7.0-1.el8.aarch64 1606871367 ae037b9b513dd2ce6b4ecce6255a8fddf94367bc9c348ba45c5aefbfeff29201 01:00:51,099 DEBUG anaconda:dnf: Installed: python3-pytz-2017.2-9.el8.noarch 01:00:51,099 DEBUG anaconda:dnf: Installed: python3-pyudev-0.21.0-7.el8.noarch 01:00:51,100 INFO anaconda:packaging: Verifying: pcre-8.42-4.el8.aarch64 1557587721 a8053346f758919a8e6f177d767d6372352b2b37e1c86195ab87a891ce55e692 01:00:51,100 DEBUG anaconda:dnf: Installed: python3-pyyaml-3.12-12.el8.aarch64 01:00:51,100 DEBUG anaconda:dnf: Installed: python3-requests-2.20.0-2.1.el8_1.noarch 01:00:51,101 INFO anaconda:packaging: Verifying: pcre2-10.32-2.el8.aarch64 1592282612 3a386eca4550def1fef05213ddc8fe082e589a2fe2898f634265fbe8fe828296 01:00:51,101 DEBUG anaconda:dnf: Installed: python3-rpm-4.14.3-14.el8_4.aarch64 01:00:51,102 DEBUG anaconda:dnf: Installed: python3-schedutils-0.6-6.el8.aarch64 01:00:51,102 DEBUG anaconda:dnf: Installed: python3-setools-4.3.0-2.el8.aarch64 01:00:51,102 INFO anaconda:packaging: Verifying: pigz-2.4-4.el8.aarch64 1586220729 bf8bbf6b7fab0e19535a3d7e7bad6a62971b41e7a231683cb42e534355a831b7 01:00:51,103 DEBUG anaconda:dnf: Installed: python3-setuptools-wheel-39.2.0-6.el8.noarch 01:00:51,103 DEBUG anaconda:dnf: Installed: python3-six-1.11.0-8.el8.noarch 01:00:51,104 INFO anaconda:packaging: Verifying: platform-python-3.6.8-37.el8.aarch64 1616134578 853f212dd85cba56a3400e1731cc7c4c63fa268cd556ab059f198b1c2866e77a 01:00:51,104 DEBUG anaconda:dnf: Installed: python3-slip-0.6.4-11.el8.noarch 01:00:51,105 DEBUG anaconda:dnf: Installed: python3-slip-dbus-0.6.4-11.el8.noarch 01:00:51,105 INFO anaconda:packaging: Verifying: platform-python-pip-9.0.3-19.el8.noarch 1610615033 5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe 01:00:51,105 DEBUG anaconda:dnf: Installed: python3-syspurpose-1.28.13-3.el8_4.aarch64 01:00:51,106 DEBUG anaconda:dnf: Installed: python3-systemd-234-8.el8.aarch64 01:00:51,106 INFO anaconda:packaging: Verifying: platform-python-setuptools-39.2.0-6.el8.noarch 1587953140 946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557 01:00:51,107 DEBUG anaconda:dnf: Installed: python3-unbound-1.7.3-15.el8.aarch64 01:00:51,107 DEBUG anaconda:dnf: Installed: python3-urllib3-1.24.2-5.el8.noarch 01:00:51,108 DEBUG anaconda:dnf: Installed: qemu-guest-agent-15:4.2.0-48.module_el8.4.0+885+5e18b468.3.aarch64 01:00:51,108 INFO anaconda:packaging: Verifying: policycoreutils-2.9-14.el8.aarch64 1616130866 fd775c5c414c71bcb408333c9fb7fb46258f9655e42d3cd801f3b348a18e9ed7 01:00:51,108 DEBUG anaconda:dnf: Installed: quota-1:4.04-12.el8.aarch64 01:00:51,109 DEBUG anaconda:dnf: Installed: quota-nls-1:4.04-12.el8.noarch 01:00:51,109 INFO anaconda:packaging: Verifying: policycoreutils-python-utils-2.9-14.el8.noarch 1616130866 90a76e9e6f91deeb03c0fea610e84ce30b492b42a3bd76cf7188665d59a80274 01:00:51,109 DEBUG anaconda:dnf: Installed: rdma-core-32.0-4.el8.aarch64 01:00:51,110 DEBUG anaconda:dnf: Installed: readline-7.0-10.el8.aarch64 01:00:51,111 INFO anaconda:packaging: Verifying: polkit-0.115-11.el8_4.1.aarch64 1622839345 525d0442e0522164ebc5289f907947bb41c5472007131d8fa2b119fcf0745b02 01:00:51,111 DEBUG anaconda:dnf: Installed: rng-tools-6.8-3.el8.aarch64 01:00:51,111 DEBUG anaconda:dnf: Installed: rootfiles-8.1-22.el8.noarch 01:00:51,112 DEBUG anaconda:dnf: Installed: rpcbind-1.2.5-8.el8.aarch64 01:00:51,112 INFO anaconda:packaging: Verifying: polkit-libs-0.115-11.el8_4.1.aarch64 1622839345 531bd9c13e3b6b004aa05d4481790ece7e05bcb83714f49b06e3be43a6992721 01:00:51,112 DEBUG anaconda:dnf: Installed: rpm-4.14.3-14.el8_4.aarch64 01:00:51,113 DEBUG anaconda:dnf: Installed: rpm-build-libs-4.14.3-14.el8_4.aarch64 01:00:51,113 INFO anaconda:packaging: Verifying: polkit-pkla-compat-0.1-12.el8.aarch64 1557588280 d25d562fe77f391458903ebf0d9078b6d38af6d9ced39d902b9afc7e717d2234 01:00:51,114 DEBUG anaconda:dnf: Installed: rpm-libs-4.14.3-14.el8_4.aarch64 01:00:51,114 DEBUG anaconda:dnf: Installed: rpm-plugin-selinux-4.14.3-14.el8_4.aarch64 01:00:51,115 INFO anaconda:packaging: Verifying: popt-1.18-1.el8.aarch64 1611040244 2596d6cba62bf9594e4fbb07df31e2459eb6fca8e479fd0be2b32c7561e9ad95 01:00:51,115 DEBUG anaconda:dnf: Installed: rpm-plugin-systemd-inhibit-4.14.3-14.el8_4.aarch64 01:00:51,115 DEBUG anaconda:dnf: Installed: rsync-3.1.3-12.el8.aarch64 01:00:51,116 INFO anaconda:packaging: Verifying: prefixdevname-0.1.0-6.el8.aarch64 1558550049 a8bc6c8653eaede6f46620da42f99ee5d511f161e78f2719aa231c75cf06cd15 01:00:51,116 DEBUG anaconda:dnf: Installed: rsyslog-8.1911.0-7.el8_4.2.aarch64 01:00:51,117 DEBUG anaconda:dnf: Installed: sed-4.5-2.el8.aarch64 01:00:51,117 DEBUG anaconda:dnf: Installed: selinux-policy-3.14.3-67.el8_4.1.noarch 01:00:51,117 INFO anaconda:packaging: Verifying: procps-ng-3.3.15-6.el8.aarch64 1612250093 dda0f9ad611135e6bee3459f183292cb1364b6c09795ead62cfe402426482212 01:00:51,118 DEBUG anaconda:dnf: Installed: selinux-policy-targeted-3.14.3-67.el8_4.1.noarch 01:00:51,118 DEBUG anaconda:dnf: Installed: setroubleshoot-plugins-3.3.13-1.el8.noarch 01:00:51,119 INFO anaconda:packaging: Verifying: psmisc-23.1-5.el8.aarch64 1595372379 e6852f9e715174c037c57ef9ee45a6318775968322c244185fc51f40a10dbdcc 01:00:51,119 DEBUG anaconda:dnf: Installed: setroubleshoot-server-3.3.24-3.el8.aarch64 01:00:51,120 DEBUG anaconda:dnf: Installed: setup-2.12.2-6.el8.noarch 01:00:51,120 INFO anaconda:packaging: Verifying: publicsuffix-list-dafsa-20180723-1.el8.noarch 1557535917 65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2 01:00:51,120 DEBUG anaconda:dnf: Installed: sg3_utils-1.44-5.el8.aarch64 01:00:51,121 DEBUG anaconda:dnf: Installed: sg3_utils-libs-1.44-5.el8.aarch64 01:00:51,121 DEBUG anaconda:dnf: Installed: shadow-utils-2:4.6-12.el8.aarch64 01:00:51,122 INFO anaconda:packaging: Verifying: python3-audit-3.0-0.17.20191104git1c2f876.el8.aarch64 1587693161 122fe05bd35778f2887e7f5cad32e8e93247fbbd71bd3da5ed78f788d529d028 01:00:51,122 DEBUG anaconda:dnf: Installed: shared-mime-info-1.9-3.el8.aarch64 01:00:51,123 DEBUG anaconda:dnf: Installed: shim-aa64-15-15.el8_2.aarch64 01:00:51,123 INFO anaconda:packaging: Verifying: python3-cffi-1.11.5-5.el8.aarch64 1557588468 7cf94e71d42aecccf095c8225aabe5085f8cf7fb4f956fabbe04d23ba7688029 01:00:51,123 DEBUG anaconda:dnf: Installed: slang-2.3.2-3.el8.aarch64 01:00:51,124 DEBUG anaconda:dnf: Installed: snappy-1.1.8-3.el8.aarch64 01:00:51,124 INFO anaconda:packaging: Verifying: python3-chardet-3.0.4-7.el8.noarch 1557588504 176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652 01:00:51,124 DEBUG anaconda:dnf: Installed: sos-4.0-11.el8.noarch 01:00:51,125 DEBUG anaconda:dnf: Installed: sqlite-libs-3.26.0-13.el8.aarch64 01:00:51,126 DEBUG anaconda:dnf: Installed: squashfs-tools-4.3-20.el8.aarch64 01:00:51,126 INFO anaconda:packaging: Verifying: python3-configobj-5.0.6-11.el8.noarch 1557588527 1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e 01:00:51,126 DEBUG anaconda:dnf: Installed: sscg-2.3.3-14.el8.aarch64 01:00:51,127 DEBUG anaconda:dnf: Installed: sssd-client-2.4.0-9.el8_4.2.aarch64 01:00:51,127 INFO anaconda:packaging: Verifying: python3-cryptography-3.2.1-4.el8.aarch64 1614670255 d63ab488f12e9c43a6f915cba388b381677a2f89b2c8910852b1de906978b1fc 01:00:51,128 DEBUG anaconda:dnf: Installed: sssd-common-2.4.0-9.el8_4.2.aarch64 01:00:51,128 INFO anaconda:packaging: Verifying: python3-dateutil-1:2.6.1-6.el8.noarch 1557588521 c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea 01:00:51,130 INFO anaconda:packaging: Verifying: python3-dbus-1.2.4-15.el8.aarch64 1573230892 116c1d18b0bda6388cde56e4c93f28b2449dc496ea6a9c5e2d4b581065e2e6c4 01:00:51,131 INFO anaconda:packaging: Verifying: python3-decorator-4.2.1-2.el8.noarch 1557588489 0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578 01:00:51,133 INFO anaconda:packaging: Verifying: python3-dnf-4.4.2-11.el8.noarch 1615491563 31f906e19cd725334dbf542b607604e019e34f5796d69f17afdd8470ce982b0b 01:00:51,134 INFO anaconda:packaging: Verifying: python3-dnf-plugins-core-4.0.18-4.el8.noarch 1615491543 932108dfb97eca6e5ecc724275a74934d9f13f4969c67c981759c2e0b2d0ef09 01:00:51,136 INFO anaconda:packaging: Verifying: python3-firewall-0.8.2-7.el8_4.noarch 1624987687 603dd7ed77171be1ea51107495d6048d389c3b50bde6c17483243c601fe8dba2 01:00:51,137 INFO anaconda:packaging: Verifying: python3-gobject-base-3.28.3-2.el8.aarch64 1595266368 ddc064aa8fb904fbcb1c0da0946f61581a30f6dea8fde9343c29491b0bcd7009 01:00:51,139 INFO anaconda:packaging: Verifying: python3-gpg-1.13.1-7.el8.aarch64 1609882988 26962c14b5d9645d815f6c9c23cbbec935321c4cdde3d62adc26f322019da36b 01:00:51,140 INFO anaconda:packaging: Verifying: python3-hawkey-0.55.0-7.el8.aarch64 1615494753 f0173d65c9fa3e16a25c14ecb901f8736286ff5f08e529ad816a242ca76ae1f9 01:00:51,141 INFO anaconda:packaging: Verifying: python3-idna-2.5-5.el8.noarch 1557588568 78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc 01:00:51,143 INFO anaconda:packaging: Verifying: python3-jwt-1.6.1-2.el8.noarch 1557588633 ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1 01:00:51,144 DEBUG anaconda:dnf: Installed: sssd-kcm-2.4.0-9.el8_4.2.aarch64 01:00:51,144 INFO anaconda:packaging: Verifying: python3-libcomps-0.1.11-5.el8.aarch64 1612422297 702db562b775f8b2728a5a719c3818f94d78d7f533f10eeceda1f49dca637a2e 01:00:51,145 DEBUG anaconda:dnf: Installed: sssd-nfs-idmap-2.4.0-9.el8_4.2.aarch64 01:00:51,145 DEBUG anaconda:dnf: Installed: sudo-1.8.29-7.el8.aarch64 01:00:51,146 INFO anaconda:packaging: Verifying: python3-libdnf-0.55.0-7.el8.aarch64 1615494753 f5caf82f2a2d683e69d99f96395dfa02472186473ba58edf4e41ac8af79e0bd9 01:00:51,146 DEBUG anaconda:dnf: Installed: systemd-239-45.el8_4.3.aarch64 01:00:51,146 DEBUG anaconda:dnf: Installed: systemd-libs-239-45.el8_4.3.aarch64 01:00:51,147 DEBUG anaconda:dnf: Installed: systemd-pam-239-45.el8_4.3.aarch64 01:00:51,147 INFO anaconda:packaging: Verifying: python3-libs-3.6.8-37.el8.aarch64 1616134578 9834b8aa6a6e84f30f6a4d417539ce48a643df8e34f9e09bc32fa51c7aa28e8b 01:00:51,148 DEBUG anaconda:dnf: Installed: systemd-udev-239-45.el8_4.3.aarch64 01:00:51,148 DEBUG anaconda:dnf: Installed: tar-2:1.30-5.el8.aarch64 01:00:51,148 INFO anaconda:packaging: Verifying: python3-libselinux-2.9-5.el8.aarch64 1603743587 1a39d5db45d7e97f0a9b564b263ae22d20433bd2f40a6298b8e3ca6a80875da3 01:00:51,149 DEBUG anaconda:dnf: Installed: teamd-1.31-2.el8.aarch64 01:00:51,149 DEBUG anaconda:dnf: Installed: timedatex-0.5-3.el8.aarch64 01:00:51,150 INFO anaconda:packaging: Verifying: python3-libsemanage-2.9-6.el8.aarch64 1612389818 bc96ccd4671ee6a42d4ad5bbfbbd67ad397d276e29b4353ca6d67ae9705924a7 01:00:51,150 DEBUG anaconda:dnf: Installed: tpm2-tss-2.3.2-3.el8.aarch64 01:00:51,151 DEBUG anaconda:dnf: Installed: trousers-0.3.15-1.el8.aarch64 01:00:51,151 DEBUG anaconda:dnf: Installed: trousers-lib-0.3.15-1.el8.aarch64 01:00:51,151 INFO anaconda:packaging: Verifying: python3-libxml2-2.9.7-9.el8_4.2.aarch64 1624987190 f67f21a251940c375d99f7a47381ddea919a9a4e2b31f242101cdf04ce8bdb70 01:00:51,152 DEBUG anaconda:dnf: Installed: tuned-2.15.0-2.el8_4.1.noarch 01:00:51,152 DEBUG anaconda:dnf: Installed: tzdata-2021a-1.el8.noarch 01:00:51,153 INFO anaconda:packaging: Verifying: python3-linux-procfs-0.6.3-1.el8.noarch 1610550079 dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94 01:00:51,153 DEBUG anaconda:dnf: Installed: udisks2-2.9.0-6.el8.aarch64 01:00:51,154 DEBUG anaconda:dnf: Installed: unbound-libs-1.7.3-15.el8.aarch64 01:00:51,154 INFO anaconda:packaging: Verifying: python3-nftables-1:0.9.3-18.el8.aarch64 1615411625 e357ec4e4c90e0787fc54a045db7f2049b5909ba77dfe8e7056d1d1cec2658ec 01:00:51,154 DEBUG anaconda:dnf: Installed: util-linux-2.32.1-27.el8.aarch64 01:00:51,155 INFO anaconda:packaging: Verifying: python3-oauthlib-2.1.0-1.el8.noarch 1557588664 20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631 01:00:51,157 INFO anaconda:packaging: Verifying: python3-perf-4.18.0-305.17.1.el8_4.aarch64 1631110505 cf390bc738f2dcbcd4a9174532190d543bbdfcf2fbee452c5e28fb8a2b0b4963 01:00:51,158 INFO anaconda:packaging: Verifying: python3-pip-wheel-9.0.3-19.el8.noarch 1610615033 65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7 01:00:51,160 INFO anaconda:packaging: Verifying: python3-ply-3.9-9.el8.noarch 1610439834 d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf 01:00:51,161 INFO anaconda:packaging: Verifying: python3-policycoreutils-2.9-14.el8.noarch 1616130866 c28e181d809d28e50acf6614855b449ccd3a98e1499c83ffd3114785f408638e 01:00:51,162 INFO anaconda:packaging: Verifying: python3-pycparser-2.14-14.el8.noarch 1557588721 8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7 01:00:51,164 INFO anaconda:packaging: Verifying: python3-pysocks-1.6.8-3.el8.noarch 1557588655 7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154 01:00:51,165 DEBUG anaconda:dnf: Installed: vim-minimal-2:8.0.1763-15.el8.aarch64 01:00:51,165 INFO anaconda:packaging: Verifying: python3-pyudev-0.21.0-7.el8.noarch 1557588691 aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45 01:00:51,166 DEBUG anaconda:dnf: Installed: virt-what-1.18-9.el8_4.aarch64 01:00:51,166 DEBUG anaconda:dnf: Installed: volume_key-libs-0.3.11-5.el8.aarch64 01:00:51,167 DEBUG anaconda:dnf: Installed: which-2.21-12.el8.aarch64 01:00:51,167 INFO anaconda:packaging: Verifying: python3-pyyaml-3.12-12.el8.aarch64 1557588779 125e3be7258821f7bc210b7eee8591289ea4ce97edea2832d8e6a89f1b6969e5 01:00:51,167 DEBUG anaconda:dnf: Installed: xfsprogs-5.0.0-8.el8.aarch64 01:00:51,168 DEBUG anaconda:dnf: Installed: xkeyboard-config-2.28-1.el8.noarch 01:00:51,168 INFO anaconda:packaging: Verifying: python3-requests-2.20.0-2.1.el8_1.noarch 1576103860 003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9 01:00:51,168 DEBUG anaconda:dnf: Installed: xz-5.2.4-3.el8.aarch64 01:00:51,169 DEBUG anaconda:dnf: Installed: xz-libs-5.2.4-3.el8.aarch64 01:00:51,169 INFO anaconda:packaging: Verifying: python3-rpm-4.14.3-14.el8_4.aarch64 1622657806 19ddc3902ffa6347448c4a5c43683d4425483e2218ef5ddacaf73bda56aaadb9 01:00:51,170 DEBUG anaconda:dnf: Installed: yum-4.4.2-11.el8.noarch 01:00:51,170 DEBUG anaconda:dnf: Installed: yum-utils-4.0.18-4.el8.noarch 01:00:51,171 DEBUG anaconda:dnf: Installed: zlib-1.2.11-17.el8.aarch64 01:00:51,171 INFO anaconda:packaging: Verifying: python3-schedutils-0.6-6.el8.aarch64 1573239506 7d11819e0646e34f1489fbe9f6673a6cd701657d8ae1fe0ca370f7421150163f 01:00:51,172 INFO anaconda:packaging: Verifying: python3-setools-4.3.0-2.el8.aarch64 1595367589 bd4efc248eee5517821027c94e937c69f92bac82243dc7798456fcef51521766 01:00:51,174 INFO anaconda:packaging: Verifying: python3-setuptools-wheel-39.2.0-6.el8.noarch 1587953140 b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8 01:00:51,175 INFO anaconda:packaging: Verifying: python3-six-1.11.0-8.el8.noarch 1557588702 a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b 01:00:51,177 INFO anaconda:packaging: Verifying: python3-slip-0.6.4-11.el8.noarch 1557588696 233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396 01:00:51,178 INFO anaconda:packaging: Verifying: python3-slip-dbus-0.6.4-11.el8.noarch 1557588696 563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639 01:00:51,180 INFO anaconda:packaging: Verifying: python3-syspurpose-1.28.13-3.el8_4.aarch64 1624987943 7f9da23e1d17a92e598b355281cb1494398df32ed2c6654ba1ebc10a4ef8e3b2 01:00:51,181 INFO anaconda:packaging: Verifying: python3-urllib3-1.24.2-5.el8.noarch 1605564342 aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0 01:00:51,183 INFO anaconda:packaging: Verifying: quota-1:4.04-12.el8.aarch64 1611111782 d64ea344f88f24fa4ba7f16d69657754111c8a1d7b3b008dc6244f10fdf58f3a 01:00:51,184 INFO anaconda:packaging: Verifying: quota-nls-1:4.04-12.el8.noarch 1611111782 ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2 01:00:51,185 INFO anaconda:packaging: Verifying: rdma-core-32.0-4.el8.aarch64 1612170306 0a7791c66884e6ce6ab93bc0ea3070035e7b3e8e65cbffc6f3cee103e2fd2fb2 01:00:51,187 INFO anaconda:packaging: Verifying: readline-7.0-10.el8.aarch64 1557535996 ef74f2c65ed0e38dd021177d6e59fcdf7fb8de8929b7544b7a6f0709eff6562c 01:00:51,188 INFO anaconda:packaging: Verifying: rng-tools-6.8-3.el8.aarch64 1587696616 fe63e34985dcfebf169957d2dbd5cca1af88591bfe02e0442811c03e021e4094 01:00:51,190 INFO anaconda:packaging: Verifying: rootfiles-8.1-22.el8.noarch 1557588938 d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39 01:00:51,191 INFO anaconda:packaging: Verifying: rpcbind-1.2.5-8.el8.aarch64 1606871753 19de7245f0ce7a0fed90263e2b63d98edb549ba1f40ce17916842ef3eb937c44 01:00:51,192 INFO anaconda:packaging: Verifying: rpm-4.14.3-14.el8_4.aarch64 1622657806 03b6691e1193781fbe1241968016203f8805fa0e8528f5e291b36495ebc9b2f0 01:00:51,194 INFO anaconda:packaging: Verifying: rpm-build-libs-4.14.3-14.el8_4.aarch64 1622657806 a9639b60bf7092f42b803296c0ccd86a3b0e854afd2459cece3b12a6baa3ea67 01:00:51,195 INFO anaconda:packaging: Verifying: rpm-libs-4.14.3-14.el8_4.aarch64 1622657806 14ab02f68ee40352970862f1782d2ce65404d0cf993c6c856e948b91b6583c6d 01:00:51,196 INFO anaconda:packaging: Verifying: rpm-plugin-selinux-4.14.3-14.el8_4.aarch64 1622657806 6d8622539ece77db21387ee85a70ae2884acdd5633a2aa4001137beb163328af 01:00:51,198 INFO anaconda:packaging: Verifying: rpm-plugin-systemd-inhibit-4.14.3-14.el8_4.aarch64 1622657806 1e343be31cc08d9385d4593d945ae3465b14713660f88e074948d04291f63209 01:00:51,199 INFO anaconda:packaging: Verifying: rsync-3.1.3-12.el8.aarch64 1608719042 94ffbde06999afef29ad7d85eb1d2e6fd7e8b168e0604d9b6ad4dca350264e5f 01:00:51,201 INFO anaconda:packaging: Verifying: sed-4.5-2.el8.aarch64 1592252158 f89de80c1d2c1c8ad2b1bb92055b1a4c7dca0ca0ffb6419b76e13617f1fe827e 01:00:51,202 INFO anaconda:packaging: Verifying: selinux-policy-3.14.3-67.el8_4.1.noarch 1628610155 89744b87b55becba254445b2396c397a40422b8e95dab3a7eac4decd5008d651 01:00:51,204 INFO anaconda:packaging: Verifying: selinux-policy-targeted-3.14.3-67.el8_4.1.noarch 1628610155 b7995e380c09dfb1859a219ed12fe77ce962fe4d1b578b597d461c04623bdebe 01:00:51,205 INFO anaconda:packaging: Verifying: setup-2.12.2-6.el8.noarch 1589520015 9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f 01:00:51,206 INFO anaconda:packaging: Verifying: sg3_utils-1.44-5.el8.aarch64 1587692970 de0cec19f3194af0aff5ee5f133f370dca5cb1d3d6826c24e30c001cec779c36 01:00:51,208 INFO anaconda:packaging: Verifying: sg3_utils-libs-1.44-5.el8.aarch64 1587692970 7b958cc0e9eb01f18ba771b1b5cb382dd7be5e066e42c7dcc1073e9534679e9b 01:00:51,209 INFO anaconda:packaging: Verifying: shadow-utils-2:4.6-12.el8.aarch64 1606872265 e02cf950ed3b32e0e4e122f11f136899f9eb5185bf5dd70ebc604e7d27485705 01:00:51,211 INFO anaconda:packaging: Verifying: shared-mime-info-1.9-3.el8.aarch64 1557589089 955e50447ee8ba78996529e1f9192eab92b25251d236b6e24a61be9787fb7552 01:00:51,212 INFO anaconda:packaging: Verifying: shim-aa64-15-15.el8_2.aarch64 1596248253 6404c2bf11a3f1b5b8215807cb4a5c95d6b283dccfe2e5798ec51918337afdcb 01:00:51,213 INFO anaconda:packaging: Verifying: slang-2.3.2-3.el8.aarch64 1557589195 121ddf8c1e31a9f6958659daa77254ca991da1d25609bc17eb7c261aa32d6176 01:00:51,215 INFO anaconda:packaging: Verifying: snappy-1.1.8-3.el8.aarch64 1598294912 4731985b22fc7b733ff89be6c1423396f27c94a78bb09fc89be5c2200bee893c 01:00:51,216 INFO anaconda:packaging: Verifying: sos-4.0-11.el8.noarch 1616085036 83bc9ea2fd57eb29a4390165af36b7246a7cf47face1c7cf29cd8422dde1f3e0 01:00:51,218 INFO anaconda:packaging: Verifying: sqlite-libs-3.26.0-13.el8.aarch64 1607019474 3052778c1f7282001f04bf8221dc387203e9d8bdfc51700b0c3a9e801618bbf8 01:00:51,219 INFO anaconda:packaging: Verifying: squashfs-tools-4.3-20.el8.aarch64 1615492303 086bed04556b2fdd44edc362de6c77c68302e7070d0bd52be1c77950de3992a0 01:00:51,221 INFO anaconda:packaging: Verifying: sssd-client-2.4.0-9.el8_4.2.aarch64 1629124289 25a6aec26d3ddc649a07e719b4f3a66841d8a170d3068f416d2a2486d00dea40 01:00:51,222 INFO anaconda:packaging: Verifying: sssd-common-2.4.0-9.el8_4.2.aarch64 1629124289 c48c87a446aa2298ea23d37252dfd4db44705d8635e71541e1fb484ea5dd9d10 01:00:51,223 INFO anaconda:packaging: Verifying: sssd-kcm-2.4.0-9.el8_4.2.aarch64 1629124289 7c483c2b3603849f9fc7f5710835fd1d23476be0a14e72aa421b1fc815e3ccb5 01:00:51,225 INFO anaconda:packaging: Verifying: sssd-nfs-idmap-2.4.0-9.el8_4.2.aarch64 1629124289 449f63d8153bf3ad6317a2f5efe25e232282220ac9b4831de26686aacb4873e5 01:00:51,226 INFO anaconda:packaging: Verifying: sudo-1.8.29-7.el8.aarch64 1612458867 633737dc830de1084efc2637d6f4246f4a5b93eba3106184e4541f698c4f99e9 01:00:51,227 INFO anaconda:packaging: Verifying: systemd-239-45.el8_4.3.aarch64 1628609468 df8d4939e5189336b866a21aaee848c6baa72417b6f57c8081947fae187b8c1d 01:00:51,229 INFO anaconda:packaging: Verifying: systemd-libs-239-45.el8_4.3.aarch64 1628609468 bbfad98737454d1293edf7672c421466095a05de66e84c6a324dba9bf539110a 01:00:51,230 INFO anaconda:packaging: Verifying: systemd-pam-239-45.el8_4.3.aarch64 1628609468 31b7f84a016062847a80a9a66912f680ae400fa876508ca57ff6310fe0d6e1e8 01:00:51,232 INFO anaconda:packaging: Verifying: systemd-udev-239-45.el8_4.3.aarch64 1628609468 bc23ec3ca8ad5e5e87395f41ccfbb5f63331ba292ea105a9851e68da28878309 01:00:51,233 INFO anaconda:packaging: Verifying: tar-2:1.30-5.el8.aarch64 1595282431 3d527d861793fe3a74b6254540068e8b846e6df20d75754df39904e67f1e569f 01:00:51,234 INFO anaconda:packaging: Verifying: teamd-1.31-2.el8.aarch64 1599579275 a2b5f3f92b2265a36c8a33b8315e56cd1399ac33d04ae2f34cb47ae56d89824f 01:00:51,236 INFO anaconda:packaging: Verifying: timedatex-0.5-3.el8.aarch64 1557589856 f6078b759fafad2208d3e572cec9fbfb473dea334bc7a90583811f451d493cef 01:00:51,237 INFO anaconda:packaging: Verifying: tpm2-tss-2.3.2-3.el8.aarch64 1606872642 c5f38ac5bbae4a978bb96cc5b89a3abc0bdcc7b66325845805d0766820d1746f 01:00:51,238 INFO anaconda:packaging: Verifying: trousers-0.3.15-1.el8.aarch64 1605564531 292c904845193c84dd61405c4cdcb40068e8e801b0f8c38075061d0c0a986b11 01:00:51,240 INFO anaconda:packaging: Verifying: trousers-lib-0.3.15-1.el8.aarch64 1605564531 f006928e944be95bb8d6cb757d759ad25d76d2c36d05e7eab1c4308ed6134c90 01:00:51,241 INFO anaconda:packaging: Verifying: tuned-2.15.0-2.el8_4.1.noarch 1622576866 3467092d88f831e8548c6c0ba1f2e955e31d12406d23814af06a9a1d533fa57b 01:00:51,242 INFO anaconda:packaging: Verifying: tzdata-2021a-1.el8.noarch 1611698248 44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839 01:00:51,244 INFO anaconda:packaging: Verifying: util-linux-2.32.1-27.el8.aarch64 1611212711 f4d705c5bc70034622eade992acf7a2484f0cb64442250f6f0c30bf025588357 01:00:51,245 INFO anaconda:packaging: Verifying: vim-minimal-2:8.0.1763-15.el8.aarch64 1592495458 2b743f157f47b27a0528d53fd9ae3e4eb0553f4b8357d01d362dd1b0e4e87c06 01:00:51,246 INFO anaconda:packaging: Verifying: virt-what-1.18-9.el8_4.aarch64 1628609265 402c99315251325e7f4fe19d88035371e8d70009030fb299beede37bae194f9f 01:00:51,248 INFO anaconda:packaging: Verifying: which-2.21-12.el8.aarch64 1586218225 1b18f97ab111e6de0b29e610094a16440c2b6e24a8c47460c4353efc02656bbb 01:00:51,249 INFO anaconda:packaging: Verifying: xfsprogs-5.0.0-8.el8.aarch64 1610439994 837415ea8b9b03d658b7381f40e545d17156b3cf77be24d0f52b1e668dba876b 01:00:51,251 INFO anaconda:packaging: Verifying: xz-5.2.4-3.el8.aarch64 1557536539 b9a899e715019e7002600005bcb2a9dd7b089eaef9c55c3764c326d745ad681f 01:00:51,252 INFO anaconda:packaging: Verifying: xz-libs-5.2.4-3.el8.aarch64 1557536539 8f141db26834b1ec60028790b130d00b14b7fda256db0df1e51b7ba8d3d40c7b 01:00:51,253 INFO anaconda:packaging: Verifying: yum-4.4.2-11.el8.noarch 1615491563 5e8839ed1ad834e8e6302c3e99d9b2cc42d6cbeb496f653acbb31d0418423ccc 01:00:51,255 INFO anaconda:packaging: Verifying: yum-utils-4.0.18-4.el8.noarch 1615491543 03029d138ec936e6b0b81cd7095f2a85d1c9688a9fb45ba49a4c956d9ea8162b 01:00:51,256 INFO anaconda:packaging: Verifying: zlib-1.2.11-17.el8.aarch64 1604007244 19223c1996366de6f38c38f5d0163368fbff9c29149bb925ffe8d2eba79b239c 01:00:51,258 INFO anaconda:packaging: Verifying: PackageKit-1.1.12-6.el8.aarch64 1592260767 8cb3ec4e989bd4683533ffd91ac7b7eae70465e175fc3cee5bb7aa8950c9c767 01:00:51,259 INFO anaconda:packaging: Verifying: PackageKit-glib-1.1.12-6.el8.aarch64 1592260767 f6b8397ec69323c3e0d12c1e4bfe55bc048060696412c9f17a82541683b5d98f 01:00:51,260 INFO anaconda:packaging: Verifying: abattis-cantarell-fonts-0.0.25-6.el8.noarch 1609181181 11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f 01:00:51,262 INFO anaconda:packaging: Verifying: authselect-compat-1.2.2-2.el8.aarch64 1616085339 c36d044a08801713014d597125bf4d40c6f11b3a22ac0d7cc882e90812b87234 01:00:51,263 INFO anaconda:packaging: Verifying: cairo-1.15.12-3.el8.aarch64 1557788538 3187b5a82f1e6906539903c42b3bbd0b9979f00ae41d73c52e69e239f1090bf7 01:00:51,264 INFO anaconda:packaging: Verifying: cairo-gobject-1.15.12-3.el8.aarch64 1557788538 c98e748866b96eab0e8ea4170fe312cb48fd46db98e23c6125b1262c4b8b495d 01:00:51,266 INFO anaconda:packaging: Verifying: cloud-init-20.3-10.el8_4.5.noarch 1628609723 1cfa312db77c6924cf07dfb3481d13ebb291cef2c7fdc2c5d78b0da339bef30e 01:00:51,267 INFO anaconda:packaging: Verifying: cloud-utils-growpart-0.31-1.el8.noarch 1595342687 7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71 01:00:51,268 INFO anaconda:packaging: Verifying: geolite2-city-20180605-1.el8.noarch 1557791307 cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44 01:00:51,270 INFO anaconda:packaging: Verifying: geolite2-country-20180605-1.el8.noarch 1557791307 67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0 01:00:51,271 INFO anaconda:packaging: Verifying: libX11-1.6.8-4.el8.aarch64 1604964252 0c55280aa609dc0d9ac4a61f28fac3621de0fe6b602f48ed356f605d746938e3 01:00:51,272 INFO anaconda:packaging: Verifying: libX11-common-1.6.8-4.el8.noarch 1604964252 5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2 01:00:51,274 INFO anaconda:packaging: Verifying: libXau-1.0.9-3.el8.aarch64 1592328437 8bf41dce8686f8e22965691a109aff955d664c53f8e18275e743b36bf3ff22bd 01:00:51,275 INFO anaconda:packaging: Verifying: libXext-1.3.4-1.el8.aarch64 1592336126 83b269e23f52dd57c474b47dd5575f17c8c5875b10619c12664b968d6186c039 01:00:51,277 INFO anaconda:packaging: Verifying: libXrender-0.9.10-7.el8.aarch64 1557799953 0a7cb86aeedf8d6665a37a3515238c04f8780caaab303d1a7263b66b9a6cb7ed 01:00:51,278 INFO anaconda:packaging: Verifying: libatasmart-0.19-14.el8.aarch64 1557796170 2cb6c88868446219d7cb277e3592f10aa233c9f8cecda16594a21ef35e212565 01:00:51,279 INFO anaconda:packaging: Verifying: libblockdev-2.24-5.el8.aarch64 1610550691 32139f25d31aa0a24af7f323dd0b2b3e61a223a0625647a202a4dd096177604b 01:00:51,281 INFO anaconda:packaging: Verifying: libblockdev-crypto-2.24-5.el8.aarch64 1610550691 cd64280a4ed9674ab653e1ac2310dd760aeed80d1375ac993e4f55667bba68ac 01:00:51,282 INFO anaconda:packaging: Verifying: libblockdev-fs-2.24-5.el8.aarch64 1610550691 c15152fc2384c0975239d56e66dc0230910bcc4b4ec910789b566d0bdd5a402a 01:00:51,283 INFO anaconda:packaging: Verifying: libblockdev-loop-2.24-5.el8.aarch64 1610550691 84a35e99f477325de799c003dda1f18fc4f55aa0568d2a8f76ceead48018be87 01:00:51,285 INFO anaconda:packaging: Verifying: libblockdev-mdraid-2.24-5.el8.aarch64 1610550691 d56c41cbf844250ed8de74d3c6e0d0ed4085cf3bace19b4f542350c411e731e7 01:00:51,286 INFO anaconda:packaging: Verifying: libblockdev-part-2.24-5.el8.aarch64 1610550691 2f84090ca73dda79376d3abd8a9e77c8cd2665b2979c0544da48ec1bf8b7a6be 01:00:51,288 INFO anaconda:packaging: Verifying: libblockdev-swap-2.24-5.el8.aarch64 1610550691 3888acd343f7f6763c69c68c96605987b07739279124ab3fdb74391c8545b775 01:00:51,289 INFO anaconda:packaging: Verifying: libblockdev-utils-2.24-5.el8.aarch64 1610550691 557936d469350ff19b938adec1e78c899d89b86f67f42c03d200369f66555858 01:00:51,290 INFO anaconda:packaging: Verifying: libbytesize-1.4-3.el8.aarch64 1586220614 a22ef4dc8fe6cb39b4d8d87eb2aa2378ae2868276c9dee632a3514788531c57b 01:00:51,292 INFO anaconda:packaging: Verifying: libestr-0.1.10-1.el8.aarch64 1557797102 d44031d4e8ad270fd07b56002667c5dcdca056dda326e69baf0326c76a3147e2 01:00:51,293 INFO anaconda:packaging: Verifying: libfastjson-0.99.8-2.el8.aarch64 1557797177 413890b3d1d8535c08a8aab6afc1437283867f88c0f945ff9d1e664c0855d700 01:00:51,295 INFO anaconda:packaging: Verifying: libmaxminddb-1.2.0-10.el8.aarch64 1595258164 52d8094d5d1cd98f757b32b9b5622f0a1e9bf6accc5a05f07e82f4dd19dccf74 01:00:51,296 INFO anaconda:packaging: Verifying: libudisks2-2.9.0-6.el8.aarch64 1611853804 788080bc6161a6e23db3718ede2b4615d499d929810c5d5b5ae62fb60b23eecc 01:00:51,297 INFO anaconda:packaging: Verifying: libxcb-1.13.1-1.el8.aarch64 1586218391 47861fc8dd36847f9b1c74cde10e62968a7a38210737d91cfba42a64b65c6112 01:00:51,299 INFO anaconda:packaging: Verifying: libxkbcommon-0.9.1-1.el8.aarch64 1586216602 3aca03c788af2ecf8ef39421f246769d7ef7f37260ee9421fc68c1d1cc913600 01:00:51,300 INFO anaconda:packaging: Verifying: nspr-4.25.0-2.el8_2.aarch64 1596749224 7e2dedab30c1a87a8e23ae1693245fe0ba742d63b7a750c23a0b9946b303856c 01:00:51,301 INFO anaconda:packaging: Verifying: nss-3.53.1-17.el8_3.aarch64 1608262942 97d225efd3895a04e38d49c7b23ebed1f88e129c27528cdb4ad04c7f89d5fd09 01:00:51,303 INFO anaconda:packaging: Verifying: nss-softokn-3.53.1-17.el8_3.aarch64 1608262942 aecd8758d772bc9f9ec257576ce2d55073e310f092912d6bf45d53257883cd3d 01:00:51,304 INFO anaconda:packaging: Verifying: nss-softokn-freebl-3.53.1-17.el8_3.aarch64 1608262942 4399b61a0bb80158bbdff9fa45e5bf47e7123a1eebebe355561a1a7abb1a7281 01:00:51,305 INFO anaconda:packaging: Verifying: nss-sysinit-3.53.1-17.el8_3.aarch64 1608262942 4bab308159d367165e2712cc7ba065406479b9fb821d9765c2637f83d63599b0 01:00:51,307 INFO anaconda:packaging: Verifying: nss-util-3.53.1-17.el8_3.aarch64 1608262942 8fa5669ab6d0711c49fc3e91646c53655e691a0e5862a1551ade34a655eacb50 01:00:51,308 INFO anaconda:packaging: Verifying: oddjob-0.34.7-1.el8.aarch64 1608178851 6f06a99c5365fe31fe74f3466629d1d9f670baf06e760b23cce0dc082fd645d5 01:00:51,310 INFO anaconda:packaging: Verifying: oddjob-mkhomedir-0.34.7-1.el8.aarch64 1608178851 56d7f758e6741340af8c85568a1b154ad4021ba283899a4d07da7f89ad54a5be 01:00:51,311 INFO anaconda:packaging: Verifying: pinentry-1.1.0-2.el8.aarch64 1557806682 cd55ba5d97f3de548d5fa7e14b9ff2924300f620dfc8013d55d8b2e031c36d36 01:00:51,312 INFO anaconda:packaging: Verifying: pixman-0.38.4-1.el8.aarch64 1586219315 9886953d4bc5b03f26b5c3164ce5b5fd86e9f80cf6358b91dd00f870f86052fe 01:00:51,314 INFO anaconda:packaging: Verifying: python3-babel-2.5.1-5.el8.noarch 1573230266 9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96 01:00:51,315 INFO anaconda:packaging: Verifying: python3-cairo-1.16.3-6.el8.aarch64 1557807206 84ee9acac31c9363ccca04a9fab7358b9ed979f41faa7742f96b45a37df56663 01:00:51,317 INFO anaconda:packaging: Verifying: python3-gobject-3.28.3-2.el8.aarch64 1595266368 1e59b06a691d101f9eab26c2950b2dbe8861ede192c2630423c5b558c21d5875 01:00:51,318 INFO anaconda:packaging: Verifying: python3-jinja2-2.10.1-2.el8_0.noarch 1561995907 5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70 01:00:51,319 INFO anaconda:packaging: Verifying: python3-jsonpatch-1.21-2.el8.noarch 1557876014 85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae 01:00:51,321 INFO anaconda:packaging: Verifying: python3-jsonpointer-1.10-11.el8.noarch 1557807561 60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2 01:00:51,322 INFO anaconda:packaging: Verifying: python3-jsonschema-2.6.0-4.el8.noarch 1557807600 0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7 01:00:51,323 INFO anaconda:packaging: Verifying: python3-markupsafe-0.23-19.el8.aarch64 1557807744 b0c806fe44182d354d8397045090bdc18c44dc1185895f7340d91406534cb186 01:00:51,325 INFO anaconda:packaging: Verifying: python3-pexpect-4.3.1-3.el8.noarch 1557875976 0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817 01:00:51,326 INFO anaconda:packaging: Verifying: python3-prettytable-0.7.2-14.el8.noarch 1557807872 1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3 01:00:51,328 INFO anaconda:packaging: Verifying: python3-ptyprocess-0.5.2-4.el8.noarch 1557807949 499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958 01:00:51,329 INFO anaconda:packaging: Verifying: python3-pydbus-0.6.0-5.el8.noarch 1557807976 bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549 01:00:51,330 INFO anaconda:packaging: Verifying: python3-pyserial-3.1.1-8.el8.noarch 1557807164 82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4 01:00:51,332 INFO anaconda:packaging: Verifying: python3-pytz-2017.2-9.el8.noarch 1557808381 0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52 01:00:51,333 INFO anaconda:packaging: Verifying: python3-systemd-234-8.el8.aarch64 1557875997 b44932e4383ed1a197cacb9af673eb527ad5903202db0c573aeac879f42d7a9a 01:00:51,334 INFO anaconda:packaging: Verifying: python3-unbound-1.7.3-15.el8.aarch64 1607569361 a67e1a1f75ea5320d8e8d07512f907caa0fb7198624a5b5e8b730223f2979f89 01:00:51,336 INFO anaconda:packaging: Verifying: qemu-guest-agent-15:4.2.0-48.module_el8.4.0+885+5e18b468.3.aarch64 1628628602 c56f4ceb7d9981dd14e657dc6c8b44600ae2d250ede633eb31c412021ebe864d 01:00:51,337 INFO anaconda:packaging: Verifying: rsyslog-8.1911.0-7.el8_4.2.aarch64 1622579675 98b8dc32885569202695c4cb9818d453fd5d5910ce37d0aa407a75d6a9d8e98b 01:00:51,338 INFO anaconda:packaging: Verifying: setroubleshoot-plugins-3.3.13-1.el8.noarch 1597701373 30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc 01:00:51,340 INFO anaconda:packaging: Verifying: setroubleshoot-server-3.3.24-3.el8.aarch64 1613120829 f1ae77b49730d555d9da6e18393cf8f9269539a798d7a8cb639fb7222bbd5cf0 01:00:51,341 INFO anaconda:packaging: Verifying: sscg-2.3.3-14.el8.aarch64 1587693565 b0ee4de357e56889a4f62eb2294ff18997150ca2cef4d208a6eca566114997b8 01:00:51,343 INFO anaconda:packaging: Verifying: udisks2-2.9.0-6.el8.aarch64 1611853804 50afb4276b205dcb04b9b689aa298beb8ebfc7b1c9a3fbf3be0f4e43417bfd06 01:00:51,344 INFO anaconda:packaging: Verifying: unbound-libs-1.7.3-15.el8.aarch64 1607569361 eee895f5f57ddeb26b84ec90d0719092cee4585f0a92a2be708a2a86db79e72f 01:00:51,345 INFO anaconda:packaging: Verifying: volume_key-libs-0.3.11-5.el8.aarch64 1573244013 3ec4f0a88c90f2021507016d369c7a77aac7c3d120ab35a30532235b4eb524f5 01:00:51,347 INFO anaconda:packaging: Verifying: xkeyboard-config-2.28-1.el8.noarch 1586216137 a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67 01:00:51,507 INFO anaconda:packaging: Cleaning up downloaded packages: /mnt/sysroot/dnf.package.cache 01:00:51,509 INFO anaconda:anaconda: progress: Install the payload 01:00:51,510 DEBUG anaconda:anaconda: installation: Task completed: Install the payload (11/41) (348.6 s) 01:00:51,511 INFO anaconda:anaconda: progress: Installing boot loader 01:00:51,512 INFO anaconda:anaconda: installation: Queue started: Bootloader installation (7/16) 01:00:51,513 INFO anaconda:anaconda: installation: Task started: Configure the bootloader (12/41) 01:00:51,838 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Storage/Task/9. 01:00:51,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureBootloaderTask-1 (281472995160544) 01:00:51,863 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.utils:Configuring the boot loader. 01:00:51,867 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.utils:Collecting the OS images for: 4.18.0-305.17.1.el8_4.aarch64, 0-rescue-b1d651093e614fc5bb7ebf05defc506d 01:00:51,870 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.base:new default image: 01:00:51,871 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.utils:Writing to /etc/sysconfig/kernel. 01:00:52,134 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureBootloaderTask-1 (281472995160544) 01:00:52,882 INFO anaconda:anaconda: progress: Configure the bootloader 01:00:52,883 DEBUG anaconda:anaconda: installation: Task completed: Configure the bootloader (12/41) (1.4 s) 01:00:52,883 INFO anaconda:anaconda: installation: Task started: Install the bootloader (13/41) 01:00:52,886 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-InstallBootloaderTask-1 (281472995160544) 01:00:52,887 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.utils:Installing the boot loader. 01:00:52,887 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.bootloader.utils:boot loader stage1 target device is vda1 01:00:52,888 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.bootloader.utils:boot loader stage2 target device is vda2 01:00:52,930 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... xfs_freeze -f / 01:00:53,086 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 01:00:53,086 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running... xfs_freeze -u / 01:00:53,108 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 01:00:53,109 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running in chroot '/mnt/sysroot'... efibootmgr 01:00:53,125 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Timeout: 3 seconds 01:00:53,125 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:BootOrder: 0000 01:00:53,125 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Boot0000* UiApp 01:00:53,126 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 01:00:53,127 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running in chroot '/mnt/sysroot'... efibootmgr -c -w -L CentOS Linux -d /dev/vda -p 1 -l \EFI\centos\shimaa64.efi 01:00:53,465 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Timeout: 3 seconds 01:00:53,465 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:BootOrder: 0001,0000 01:00:53,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Boot0000* UiApp 01:00:53,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Boot0001* CentOS Linux 01:00:53,466 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 01:00:53,469 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.modules.storage.bootloader.grub2:bootloader.py: used boot args: console=ttyS0,115200n8 no_timer_check net.ifnames=0 nvme_core.io_timeout=4294967295 nvme_core.max_retries=10 crashkernel=auto 01:00:53,471 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running in chroot '/mnt/sysroot'... grub2-set-default b1d651093e614fc5bb7ebf05defc506d-4.18.0-305.17.1.el8_4.aarch64 01:00:53,532 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 01:00:53,533 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Running in chroot '/mnt/sysroot'... grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg 01:00:59,175 NOTICE root:os-prober: debug: running /usr/libexec/os-probes/mounted/40lsb on mounted /dev/vda1 01:00:59,189 NOTICE root:os-prober: debug: running /usr/libexec/os-probes/mounted/90linux-distro on mounted /dev/vda1 01:00:59,360 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Generating grub configuration file ... 01:00:59,361 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:Adding boot menu entry for EFI firmware configuration 01:00:59,361 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:program:done 01:00:59,361 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:program:Return code: 0 01:00:59,361 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-InstallBootloaderTask-1 (281472995160544) 01:00:59,927 INFO anaconda:anaconda: progress: Install the bootloader 01:00:59,928 DEBUG anaconda:anaconda: installation: Task completed: Install the bootloader (13/41) (7.0 s) 01:00:59,929 INFO anaconda:anaconda: progress: Performing post-installation setup tasks 01:00:59,930 INFO anaconda:anaconda: installation: Queue started: Post-installation setup tasks (8/16) 01:00:59,931 INFO anaconda:anaconda: installation: Task started: Run post-installation setup tasks (14/41) 01:00:59,932 INFO anaconda:dnf: The downloaded packages were saved in cache until the next successful transaction. 01:00:59,933 INFO anaconda:dnf: You can remove cached packages by executing 'dnf clean packages'. 01:00:59,947 INFO anaconda:anaconda: payload.base: Installation requirements: [('package', 'langpacks-en', PayloadRequirement(id=langpacks-en, reasons=[PayloadRequirementReason(reason='langpacks', strong=False)])), ('package', 'authselect-compat', PayloadRequirement(id=authselect-compat, reasons=[PayloadRequirementReason(reason='Needed to support legacy authconfig kickstart command.', strong=True)])), ('package', 'firewalld', PayloadRequirement(id=firewalld, reasons=[PayloadRequirementReason(reason='Requested by the firewall kickstart command.', strong=True)])), ('package', 'chrony', PayloadRequirement(id=chrony, reasons=[PayloadRequirementReason(reason='Needed to run NTP service.', strong=True)])), ('package', 'dosfstools', PayloadRequirement(id=dosfstools, reasons=[PayloadRequirementReason(reason='Required to manage storage devices.', strong=True)])), ('package', 'xfsprogs', PayloadRequirement(id=xfsprogs, reasons=[PayloadRequirementReason(reason='Required to manage storage devices.', strong=True)])), ('package', 'e2fsprogs', PayloadRequirement(id=e2fsprogs, reasons=[PayloadRequirementReason(reason='Required to manage storage devices.', strong=True)])), ('package', 'grub2-efi-aa64', PayloadRequirement(id=grub2-efi-aa64, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)])), ('package', 'shim-aa64', PayloadRequirement(id=shim-aa64, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)])), ('package', 'efibootmgr', PayloadRequirement(id=efibootmgr, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)])), ('package', 'grub2-tools', PayloadRequirement(id=grub2-tools, reasons=[PayloadRequirementReason(reason='Necessary for the bootloader configuration.', strong=True)]))] 01:00:59,948 INFO anaconda:anaconda: progress: Run post-installation setup tasks 01:00:59,948 DEBUG anaconda:anaconda: installation: Task completed: Run post-installation setup tasks (14/41) (0.0 s) 01:00:59,949 INFO anaconda:anaconda: installation: Queue started: Configuration queue (9/16) 01:00:59,951 INFO anaconda:anaconda: progress: Configuring installed system 01:00:59,952 INFO anaconda:anaconda: installation: Queue started: Installed system configuration (10/16) 01:00:59,952 INFO anaconda:anaconda: installation: Task started: Configure SELinux (15/41) 01:00:59,955 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureSELinuxTask-1 (281473465381344) 01:00:59,963 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureSELinuxTask-1 (281473465381344) 01:01:00,970 INFO anaconda:anaconda: progress: Configure SELinux 01:01:00,971 DEBUG anaconda:anaconda: installation: Task completed: Configure SELinux (15/41) (1.0 s) 01:01:00,972 INFO anaconda:anaconda: installation: Task started: Configure fingerprint authentication (16/41) 01:01:00,974 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureFingerprintAuthTask-1 (281473465381344) 01:01:00,975 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureFingerprintAuthTask-1 (281473465381344) 01:01:00,981 INFO anaconda:anaconda: progress: Configure fingerprint authentication 01:01:00,982 DEBUG anaconda:anaconda: installation: Task completed: Configure fingerprint authentication (16/41) (0.0 s) 01:01:00,982 INFO anaconda:anaconda: installation: Task started: Authselect configuration (17/41) 01:01:00,985 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureAuthselectTask-1 (281473465381344) 01:01:00,985 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureAuthselectTask-1 (281473465381344) 01:01:00,991 INFO anaconda:anaconda: progress: Authselect configuration 01:01:00,992 DEBUG anaconda:anaconda: installation: Task completed: Authselect configuration (17/41) (0.0 s) 01:01:00,993 INFO anaconda:anaconda: installation: Task started: Authconfig configuration (18/41) 01:01:00,995 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureAuthconfigTask-1 (281473465381344) 01:01:00,997 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.installation:Configuring authentication: /usr/sbin/authconfig ['--update', '--nostart', '--enableshadow', '--passalgo=sha512'] 01:01:00,997 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:Running in chroot '/mnt/sysroot'... /usr/sbin/authconfig --update --nostart --enableshadow --passalgo=sha512 01:01:01,807 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:Running authconfig compatibility tool. 01:01:01,808 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:The purpose of this tool is to enable authentication against chosen services with authselect and minimum configuration. It does not provide all capabilities of authconfig. 01:01:01,808 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program: 01:01:01,808 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:IMPORTANT: authconfig is replaced by authselect, please update your scripts. 01:01:01,808 WARNING o Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11480/12000 rg.fedoraproject.Anaconda.Modules.Security:INFO:program:See man authselect-migration(7) to help you with migration to authselect 01:01:01,808 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:Warning: These options are not supported anymore and have no effect: 01:01:01,809 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:--enableshadow 01:01:01,809 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:--passalgo 01:01:01,809 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program: 01:01:01,809 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:Executing: /usr/bin/authselect check 01:01:01,809 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:program:Executing: /usr/bin/authselect select sssd --force 01:01:01,811 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:program:Return code: 0 01:01:01,811 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureAuthconfigTask-1 (281473465381344) 01:01:02,013 INFO anaconda:anaconda: progress: Authconfig configuration 01:01:02,014 DEBUG anaconda:anaconda: installation: Task completed: Authconfig configuration (18/41) (1.0 s) 01:01:02,015 INFO anaconda:anaconda: installation: Task started: Configure time zone (19/41) 01:01:02,018 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureTimezoneTask-1 (281472872673760) 01:01:02,120 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureTimezoneTask-1 (281472872673760) 01:01:03,031 INFO anaconda:anaconda: progress: Configure time zone 01:01:03,032 DEBUG anaconda:anaconda: installation: Task completed: Configure time zone (19/41) (1.0 s) 01:01:03,033 INFO anaconda:anaconda: installation: Task started: Configure NTP (20/41) 01:01:03,035 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureNTPTask-1 (281472872673760) 01:01:03,036 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:program:Running... systemctl list-unit-files chronyd.service --no-legend --root /mnt/sysroot 01:01:03,067 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:program:chronyd.service enabled 01:01:03,069 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:program:Return code: 0 01:01:03,069 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:program:Running... systemctl enable chronyd --root /mnt/sysroot 01:01:03,097 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:program:Return code: 0 01:01:03,097 WARNING org.fedoraproject.Anaconda.Modules.Timezone:DEBUG:anaconda.modules.timezone.installation:The NTP service is not enabled or configured. 01:01:03,098 WARNING org.fedoraproject.Anaconda.Modules.Timezone:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureNTPTask-1 (281472872673760) 01:01:04,054 INFO anaconda:anaconda: progress: Configure NTP 01:01:04,055 DEBUG anaconda:anaconda: installation: Task completed: Configure NTP (20/41) (1.0 s) 01:01:04,056 INFO anaconda:anaconda: installation: Task started: Configure Initial Setup (21/41) 01:01:04,058 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureInitialSetupTask-1 (281473402335712) 01:01:04,061 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureInitialSetupTask-1 (281473402335712) 01:01:04,066 INFO anaconda:anaconda: progress: Configure Initial Setup 01:01:04,066 DEBUG anaconda:anaconda: installation: Task completed: Configure Initial Setup (21/41) (0.0 s) 01:01:04,067 INFO anaconda:anaconda: installation: Task started: Configure post-installation tools (22/41) 01:01:04,069 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigurePostInstallationToolsTask-1 (281473402335712) 01:01:04,073 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.modules.services.installation:Writing out user interaction config at /mnt/sysroot/etc/sysconfig/anaconda 01:01:04,077 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigurePostInstallationToolsTask-1 (281473402335712) 01:01:05,084 INFO anaconda:anaconda: progress: Configure post-installation tools 01:01:05,085 DEBUG anaconda:anaconda: installation: Task completed: Configure post-installation tools (22/41) (1.0 s) 01:01:05,086 INFO anaconda:anaconda: installation: Task started: Configure services (23/41) 01:01:05,088 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureServicesTask-1 (281473402335712) 01:01:05,089 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Disabling service: kdump. 01:01:05,089 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl disable kdump --root /mnt/sysroot 01:01:05,121 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Removed /mnt/sysroot/etc/systemd/system/multi-user.target.wants/kdump.service. 01:01:05,122 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,122 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: NetworkManager. 01:01:05,123 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable NetworkManager --root /mnt/sysroot 01:01:05,153 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,153 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: sshd. 01:01:05,153 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable sshd --root /mnt/sysroot 01:01:05,180 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,180 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: rsyslog. 01:01:05,181 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable rsyslog --root /mnt/sysroot 01:01:05,207 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,207 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: chronyd. 01:01:05,207 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable chronyd --root /mnt/sysroot 01:01:05,233 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,234 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: cloud-init. 01:01:05,234 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable cloud-init --root /mnt/sysroot 01:01:05,261 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,261 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: cloud-init-local. 01:01:05,261 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable cloud-init-local --root /mnt/sysroot 01:01:05,288 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,289 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: cloud-config. 01:01:05,289 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable cloud-config --root /mnt/sysroot 01:01:05,317 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,317 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: cloud-final. 01:01:05,317 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable cloud-final --root /mnt/sysroot 01:01:05,345 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,345 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Enabling service: rngd. 01:01:05,345 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:program:Running... systemctl enable rngd --root /mnt/sysroot 01:01:05,372 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:program:Return code: 0 01:01:05,373 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureServicesTask-1 (281473402335712) 01:01:06,106 INFO anaconda:anaconda: progress: Configure services 01:01:06,107 DEBUG anaconda:anaconda: installation: Task completed: Configure services (23/41) (1.0 s) 01:01:06,108 INFO anaconda:anaconda: installation: Task started: Configure systemd default target (24/41) 01:01:06,110 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureSystemdDefaultTargetTask-1 (281473402335712) 01:01:06,111 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Setting systemd default target to: multi-user.target 01:01:06,111 WARNING org.fedoraproject.Anaconda.Modules.Services:DEBUG:anaconda.modules.services.installation:Linking /usr/lib/systemd/system/multi-user.target as systemd default target. 01:01:06,112 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureSystemdDefaultTargetTask-1 (281473402335712) 01:01:06,118 INFO anaconda:anaconda: progress: Configure systemd default target 01:01:06,119 DEBUG anaconda:anaconda: installation: Task completed: Configure systemd default target (24/41) (0.0 s) 01:01:06,120 INFO anaconda:anaconda: installation: Task started: Configure default desktop (25/41) 01:01:06,122 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureDefaultDesktopTask-1 (281473402335712) 01:01:06,123 WARNING org.fedoraproject.Anaconda.Modules.Services:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureDefaultDesktopTask-1 (281473402335712) 01:01:06,129 INFO anaconda:anaconda: progress: Configure default desktop 01:01:06,130 DEBUG anaconda:anaconda: installation: Task completed: Configure default desktop (25/41) (0.0 s) 01:01:06,130 INFO anaconda:anaconda: installation: Task started: Configure language (26/41) 01:01:06,134 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.threading:Running Thread: AnaTaskThread-LanguageInstallationTask-1 (281473135669728) 01:01:06,135 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.threading:Thread Done: AnaTaskThread-LanguageInstallationTask-1 (281473135669728) 01:01:06,141 INFO anaconda:anaconda: progress: Configure language 01:01:06,142 DEBUG anaconda:anaconda: installation: Task completed: Configure language (26/41) (0.0 s) 01:01:06,143 INFO anaconda:anaconda: installation: Task started: Configure keyboard (27/41) 01:01:06,145 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.threading:Running Thread: AnaTaskThread-KeyboardInstallationTask-1 (281473135669728) 01:01:06,147 INFO dbus-daemon:[system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.18' (uid=0 pid=1749 comm="/usr/libexec/platform-python -m pyanaconda.modules" label="system_u:system_r:kernel_t:s0") 01:01:06,159 INFO systemd:Starting Locale Service... 01:01:06,624 INFO dbus-daemon:[system] Successfully activated service 'org.freedesktop.locale1' 01:01:06,624 INFO systemd:Started Locale Service. 01:01:06,634 WARNING kernel:kauditd_printk_skb: 462 callbacks suppressed 01:01:06,634 NOTICE kernel:audit: type=1130 audit(1631667666.615:561): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' 01:01:06,636 WARNING org.fedoraproject.Anaconda.Modules.Localization:INFO:anaconda.threading:Thread Done: AnaTaskThread-KeyboardInstallationTask-1 (281473135669728) 01:01:07,157 INFO anaconda:anaconda: progress: Configure keyboard 01:01:07,157 DEBUG anaconda:anaconda: installation: Task completed: Configure keyboard (27/41) (1.0 s) 01:01:07,158 INFO anaconda:anaconda: installation: Task started: Configure firewall (28/41) 01:01:07,161 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureFirewallTask-1 (281473320284640) 01:01:07,162 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:program:Running in chroot '/mnt/sysroot'... /usr/bin/firewall-offline-cmd --enabled --service=ssh 01:01:08,486 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:program:Adding service 'ssh' to default zone. 01:01:08,488 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:program:ALREADY_ENABLED: ssh 01:01:08,488 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:program:success 01:01:08,488 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:program:Return code: 0 01:01:08,489 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureFirewallTask-1 (281473320284640) 01:01:09,184 INFO anaconda:anaconda: progress: Configure firewall 01:01:09,185 DEBUG anaconda:anaconda: installation: Task completed: Configure firewall (28/41) (2.0 s) 01:01:09,186 INFO anaconda:anaconda: installation: Task started: Create groups (29/41) 01:01:09,189 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Running Thread: AnaTaskThread-CreateGroupsTask-1 (281472874181088) 01:01:09,190 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Thread Done: AnaTaskThread-CreateGroupsTask-1 (281472874181088) 01:01:09,196 INFO anaconda:anaconda: progress: Create groups 01:01:09,197 DEBUG anaconda:anaconda: installation: Task completed: Create groups (29/41) (0.0 s) 01:01:09,197 INFO anaconda:anaconda: installation: Task started: Create users (30/41) 01:01:09,199 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Running Thread: AnaTaskThread-CreateUsersTask-1 (281472874181088) 01:01:09,200 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Thread Done: AnaTaskThread-CreateUsersTask-1 (281472874181088) 01:01:09,206 INFO anaconda:anaconda: progress: Create users 01:01:09,207 DEBUG anaconda:anaconda: installation: Task completed: Create users (30/41) (0.0 s) 01:01:09,208 INFO anaconda:anaconda: installation: Task started: Configure root password (31/41) 01:01:09,210 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Running Thread: AnaTaskThread-SetRootPasswordTask-1 (281472874181088) 01:01:09,210 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:program:Running... chpasswd -R /mnt/sysroot -e 01:01:09,234 NOTICE kernel:audit: type=1108 audit(1631667669.215:562): pid=21130 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=updating-password id=0 exe="/usr/sbin/chpasswd" hostname=? addr=? terminal=? res=success' 01:01:09,354 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:program:Running... chage -R /mnt/sysroot -d root 01:01:09,384 NOTICE kernel:audit: type=1102 audit(1631667669.365:563): pid=21136 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=change-last-change-date id=0 exe="/usr/bin/chage" hostname=? addr=? terminal=? res=success' 01:01:09,449 INFO chage:changed password expiry for root 01:01:09,451 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:program:Return code: 0 01:01:09,452 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Thread Done: AnaTaskThread-SetRootPasswordTask-1 (281472874181088) 01:01:10,228 INFO anaconda:anaconda: progress: Configure root password 01:01:10,229 DEBUG anaconda:anaconda: installation: Task completed: Configure root password (31/41) (1.0 s) 01:01:10,230 INFO anaconda:anaconda: installation: Task started: Set SSH keys (32/41) 01:01:10,232 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Running Thread: AnaTaskThread-SetSshKeysTask-1 (281472874181088) 01:01:10,233 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Thread Done: AnaTaskThread-SetSshKeysTask-1 (281472874181088) 01:01:10,239 INFO anaconda:anaconda: progress: Set SSH keys 01:01:10,239 DEBUG anaconda:anaconda: installation: Task completed: Set SSH keys (32/41) (0.0 s) 01:01:10,240 INFO anaconda:anaconda: installation: Task started: Configure optional root password SSH login (33/41) 01:01:10,242 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureRootPasswordSSHLoginTask-1 (281472874181088) 01:01:10,243 WARNING org.fedoraproject.Anaconda.Modules.Users:DEBUG:anaconda.modules.users.installation:Adding an override allowing root login with password via SSH. 01:01:10,245 WARNING org.fedoraproject.Anaconda.Modules.Users:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureRootPasswordSSHLoginTask-1 (281472874181088) 01:01:10,250 INFO anaconda:anaconda: progress: Configure optional root password SSH login 01:01:10,250 DEBUG anaconda:anaconda: installation: Task completed: Configure optional root password SSH login (33/41) (0.0 s) 01:01:10,252 INFO anaconda:anaconda: progress: Writing network configuration 01:01:10,253 INFO anaconda:anaconda: installation: Queue started: Network configuration (11/16) 01:01:10,253 INFO anaconda:anaconda: installation: Task started: Network configuration (34/41) 01:01:10,283 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Configure ONBOOT: set to yes for [] (reqested) [] (policy) 01:01:10,284 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/6. 01:01:10,292 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-ConfigureActivationOnBootTask-1 (281473320284640) 01:01:10,292 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-ConfigureActivationOnBootTask-1 (281473320284640) 01:01:10,295 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Dumping configuration state - Configure automatic activation on boot. 01:01:10,296 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/etc/sysconfig/network-scripts/ifcfg-enp1s0: 01:01:10,296 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 01:01:10,296 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 01:01:10,297 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 01:01:10,297 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 01:01:10,297 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 01:01:10,297 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 01:01:10,297 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 01:01:10,297 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 01:01:10,298 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 01:01:10,298 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 01:01:10,298 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 01:01:10,298 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=abd15c20-86d1-42db-a7d7-7b2d19fd8708 01:01:10,298 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 01:01:10,298 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 01:01:10,299 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/etc/sysconfig/network-scripts/ifcfg-enp1s0-1: 01:01:10,299 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 01:01:10,299 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 01:01:10,299 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 01:01:10,299 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 01:01:10,299 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=4379aba0-6b8b-420b-b650-2795f5b95107 01:01:10,300 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 01:01:10,301 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 01:01:10,328 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'autoconnect-retries': <1>, 'id': <'Wired Connection'>, 'multi-connect': <3>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'a7b6f21e-0f48-49b0-b77e-155e6110a87d'>, 'wait-device-timeout': <60000>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dhcp-vendor-class-identifier': <'anaconda-Linux'>, 'dns': <@au []>, 'dns-search': <@as []>, 'may-fail': , 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 01:01:10,328 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 01:01:10,328 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'4379aba0-6b8b-420b-b650-2795f5b95107'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 01:01:10,335 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/7. 01:01:10,343 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-NetworkInstallationTask-1 (281473320284640) 01:01:10,349 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-NetworkInstallationTask-1 (281473320284640) 01:01:10,350 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:Dumping configuration state - Configure network 01:01:10,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/mnt/sysroot/etc/sysconfig/network-scripts/ifcfg-enp1s0: 01:01:10,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 01:01:10,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 01:01:10,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 01:01:10,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 01:01:10,351 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 01:01:10,352 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 01:01:10,352 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 01:01:10,352 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 01:01:10,352 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 01:01:10,352 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 01:01:10,352 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 01:01:10,353 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=abd15c20-86d1-42db-a7d7-7b2d19fd8708 01:01:10,353 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 01:01:10,353 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 01:01:10,353 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:/mnt/sysroot/etc/sysconfig/network-scripts/ifcfg-enp1s0-1: 01:01:10,353 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:TYPE=Ethernet 01:01:10,353 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:PROXY_METHOD=none 01:01:10,354 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BROWSER_ONLY=no 01:01:10,354 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:BOOTPROTO=dhcp 01:01:10,354 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEFROUTE=yes 01:01:10,354 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV4_FAILURE_FATAL=no 01:01:10,354 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6INIT=yes 01:01:10,354 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_AUTOCONF=yes 01:01:10,355 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_DEFROUTE=yes 01:01:10,355 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:IPV6_FAILURE_FATAL=no 01:01:10,355 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:NAME=enp1s0 01:01:10,355 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:UUID=4379aba0-6b8b-420b-b650-2795f5b95107 01:01:10,355 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:DEVICE=enp1s0 01:01:10,355 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:ONBOOT=yes 01:01:10,358 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'autoconnect-retries': <1>, 'id': <'Wired Connection'>, 'multi-connect': <3>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'a7b6f21e-0f48-49b0-b77e-155e6110a87d'>, 'wait-device-timeout': <60000>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dhcp-vendor-class-identifier': <'anaconda-Linux'>, 'dns': <@au []>, 'dns-search': <@as []>, 'may-fail': , 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dhcp-timeout': <90>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 01:01:10,358 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'timestamp': , 'type': <'802-3-ethernet'>, 'uuid': <'abd15c20-86d1-42db-a7d7-7b2d19fd8708'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 01:01:10,358 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:anaconda.modules.network.network:{'connection': {'id': <'enp1s0'>, 'interface-name': <'enp1s0'>, 'permissions': <@as []>, 'type': <'802-3-ethernet'>, 'uuid': <'4379aba0-6b8b-420b-b650-2795f5b95107'>}, '802-3-ethernet': {'auto-negotiate': , 'mac-address-blacklist': <@as []>, 's390-options': <@a{ss} {}>}, 'ipv4': {'address-data': <@aa{sv} []>, 'dns': <@au []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'ipv6': {'addr-gen-mode': <0>, 'address-data': <@aa{sv} []>, 'dns': <@aay []>, 'dns-search': <@as []>, 'method': <'auto'>, 'route-data': <@aa{sv} []>}, 'proxy': {}} 01:01:11,358 WARNING org.fedoraproject.Anaconda.Modules.Network:DEBUG:dasbus.connection:Publishing an object at /org/fedoraproject/Anaconda/Modules/Network/Task/8. 01:01:11,365 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Running Thread: AnaTaskThread-HostnameConfigurationTask-1 (281473320284640) 01:01:11,369 WARNING org.fedoraproject.Anaconda.Modules.Network:INFO:anaconda.threading:Thread Done: AnaTaskThread-HostnameConfigurationTask-1 (281473320284640) Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11470/12000 01:01:12,381 INFO anaconda:anaconda: progress: Network configuration 01:01:12,382 DEBUG anaconda:anaconda: installation: Task completed: Network configuration (34/41) (2.1 s) 01:01:12,383 WARNING anaconda:anaconda: installation_tasks: Attempting to start an empty task queue (User creation). 01:01:12,384 INFO anaconda:anaconda: progress: Creating users 01:01:12,385 INFO anaconda:anaconda: installation: Queue started: User creation (12/16) 01:01:12,385 WARNING anaconda:anaconda: installation_tasks: The task group User creation is empty. 01:01:12,387 INFO anaconda:anaconda: progress: Configuring addons 01:01:12,388 INFO anaconda:anaconda: installation: Queue started: Anaconda addon configuration (13/16) 01:01:12,388 INFO anaconda:anaconda: installation: Task started: Configure Anaconda addons (35/41) 01:01:12,390 INFO anaconda:anaconda: progress: Executing com_redhat_kdump addon 01:01:12,390 INFO anaconda:program: Running in chroot '/mnt/sysroot'... systemctl enable kdump.service 01:01:12,423 INFO anaconda:program: Created symlink /etc/systemd/system/multi-user.target.wants/kdump.service -> /usr/lib/systemd/system/kdump.service. 01:01:12,424 DEBUG anaconda:program: Return code: 0 01:01:12,426 INFO anaconda:anaconda: progress: Executing org_fedora_oscap addon 01:01:12,426 INFO anaconda:anaconda: progress: Configure Anaconda addons 01:01:12,427 DEBUG anaconda:anaconda: installation: Task completed: Configure Anaconda addons (35/41) (0.0 s) 01:01:12,428 INFO anaconda:anaconda: installation: Task started: Install the system (36/41) 01:01:12,431 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.common.task.meta:'Install the system' has started. 01:01:12,432 WARNING org.fedoraproject.Anaconda.Boss:INFO:anaconda.modules.common.task.meta:'Install the system' is complete. 01:01:12,438 INFO anaconda:anaconda: progress: Install the system 01:01:12,439 DEBUG anaconda:anaconda: installation: Task completed: Install the system (36/41) (0.0 s) 01:01:12,441 INFO anaconda:anaconda: progress: Generating initramfs 01:01:12,441 INFO anaconda:anaconda: installation: Queue started: Initramfs generation (14/16) 01:01:12,442 INFO anaconda:anaconda: installation: Task started: Generate initramfs (37/41) 01:01:12,443 DEBUG anaconda:anaconda: payload.base: new-kernel-pkg does not exist, using dracut instead. 01:01:12,768 INFO anaconda:anaconda: payload.base: recreating initrd for 4.18.0-305.17.1.el8_4.aarch64 01:01:12,769 INFO anaconda:program: Running in chroot '/mnt/sysroot'... depmod -a 4.18.0-305.17.1.el8_4.aarch64 01:01:19,042 DEBUG anaconda:program: Return code: 0 01:01:19,043 INFO anaconda:program: Running in chroot '/mnt/sysroot'... dracut -f /boot/initramfs-4.18.0-305.17.1.el8_4.aarch64.img 4.18.0-305.17.1.el8_4.aarch64 01:01:19,304 NOTICE kernel:audit: type=1400 audit(1631667679.285:564): avc: denied { write } for pid=21221 comm="systemd" path="/var/tmp/dracut.Y23mgt/systemd-cat" dev="vda2" ino=9211951 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=fifo_file permissive=1 01:01:19,304 NOTICE kernel:audit: type=1300 audit(1631667679.285:564): arch=c00000b7 syscall=221 success=yes exit=0 a0=aaab0972e4d0 a1=aaab09729ce0 a2=aaab09737310 a3=ffff938af650 items=0 ppid=21220 pid=21221 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts0 ses=4294967295 comm="systemd" exe="/usr/lib/systemd/systemd" subj=system_u:system_r:init_t:s0 key=(null) 01:01:19,305 NOTICE kernel:audit: type=1309 audit(1631667679.285:564): argc=2 a0="/usr/lib/systemd/systemd" a1="--version" 01:01:19,305 NOTICE kernel:audit: type=1327 audit(1631667679.285:564): proctitle=2F7573722F6C69622F73797374656D642F73797374656D64002D2D76657273696F6E Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11459/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11449/12000 01:01:36,696 INFO systemd:systemd-localed.service: Succeeded. 01:01:36,704 NOTICE kernel:audit: type=1131 audit(1631667696.685:565): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11439/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11429/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11419/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11409/12000 01:02:20,305 INFO anaconda:program: dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 01:02:20,307 DEBUG anaconda:program: Return code: 0 01:02:20,307 INFO anaconda:anaconda: progress: Generate initramfs 01:02:20,308 DEBUG anaconda:anaconda: installation: Task completed: Generate initramfs (37/41) (67.9 s) 01:02:20,309 INFO anaconda:anaconda: installation: Task started: Rerun zipl (38/41) 01:02:20,312 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Running Thread: AnaTaskThread-FixZIPLBootloaderTask-1 (281472995160544) 01:02:20,313 WARNING org.fedoraproject.Anaconda.Modules.Storage:DEBUG:anaconda.modules.storage.bootloader.installation:ZIPL can be run only on s390x. 01:02:20,314 WARNING org.fedoraproject.Anaconda.Modules.Storage:INFO:anaconda.threading:Thread Done: AnaTaskThread-FixZIPLBootloaderTask-1 (281472995160544) 01:02:20,319 INFO anaconda:anaconda: progress: Rerun zipl 01:02:20,320 DEBUG anaconda:anaconda: installation: Task completed: Rerun zipl (38/41) (0.0 s) 01:02:20,321 INFO anaconda:anaconda: installation: Task started: Join a realm (39/41) 01:02:20,323 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Running Thread: AnaTaskThread-RealmJoinTask-1 (281473465381344) 01:02:20,324 WARNING org.fedoraproject.Anaconda.Modules.Security:DEBUG:anaconda.modules.security.installation:No realm has been discovered, so not joining any realm. 01:02:20,325 WARNING org.fedoraproject.Anaconda.Modules.Security:INFO:anaconda.threading:Thread Done: AnaTaskThread-RealmJoinTask-1 (281473465381344) 01:02:20,330 INFO anaconda:anaconda: progress: Join a realm 01:02:20,331 DEBUG anaconda:anaconda: installation: Task completed: Join a realm (39/41) (0.0 s) 01:02:20,332 INFO anaconda:anaconda: progress: Running post-installation scripts 01:02:20,333 INFO anaconda:anaconda: installation: Queue started: Post installation scripts (15/16) 01:02:20,334 INFO anaconda:anaconda: installation: Task started: Run post installation scripts (40/41) 01:02:20,335 INFO anaconda:anaconda: kickstart.script: Running kickstart %%post script(s) 01:02:20,337 INFO anaconda:program: Running in chroot '/mnt/sysroot'... /bin/sh /tmp/ks-script-r_gooo8p 01:02:20,424 NOTICE kernel:audit: type=1108 audit(1631667740.405:566): pid=29914 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=deleted-password id=0 exe="/usr/bin/passwd" hostname=? addr=? terminal=? res=success' 01:02:20,454 NOTICE kernel:audit: type=1135 audit(1631667740.435:567): pid=29915 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=locked-password id=0 exe="/usr/bin/passwd" hostname=? addr=? terminal=? res=success' Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11399/12000 01:02:23,454 NOTICE kernel:audit: type=1138 audit(1631667743.435:568): pid=29926 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="linux-firmware-20201218-102.git05789708.el8.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,496 INFO systemd:Started /usr/bin/systemctl start man-db-cache-update. 01:02:27,504 NOTICE kernel:audit: type=1130 audit(1631667747.485:569): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=run-r7aa64962c94b41a88ec6209bdb7afadd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' 01:02:27,514 NOTICE kernel:audit: type=1138 audit(1631667747.495:570): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="firewalld-0.8.2-7.el8_4.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,514 NOTICE kernel:audit: type=1138 audit(1631667747.495:571): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="iptables-ebtables-1.8.4-17.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,514 NOTICE kernel:audit: type=1138 audit(1631667747.495:572): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="python3-firewall-0.8.2-7.el8_4.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,515 NOTICE kernel:audit: type=1138 audit(1631667747.495:573): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="iptables-1.8.4-17.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,515 NOTICE kernel:audit: type=1138 audit(1631667747.495:574): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="ipset-7.1-1.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,515 NOTICE kernel:audit: type=1138 audit(1631667747.495:575): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="python3-nftables-1:0.9.3-18.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,515 NOTICE kernel:audit: type=1138 audit(1631667747.495:576): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="firewalld-filesystem-0.8.2-7.el8_4.noarch" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,515 NOTICE kernel:audit: type=1138 audit(1631667747.495:577): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="nftables-1:0.9.3-18.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,515 NOTICE kernel:audit: type=1138 audit(1631667747.505:578): pid=29930 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=remove sw="libnetfilter_conntrack-1.0.6-5.el8.aarch64" sw_type=rpm key_enforce=0 gpg_res=0 root_dir="/" comm="dnf" exe="/usr/libexec/platform-python3.6" hostname=? addr=? terminal=? res=success' 01:02:27,520 INFO systemctl:Failed to start man-db-cache-update.service: Unit man-db-cache-update.service not found. 01:02:27,522 NOTICE systemd:run-r7aa64962c94b41a88ec6209bdb7afadd.service: Main process exited, code=exited, status=5/NOTINSTALLED 01:02:27,523 WARNING systemd:run-r7aa64962c94b41a88ec6209bdb7afadd.service: Failed with result 'exit-code'. Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11389/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11379/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11369/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11359/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11349/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11339/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11329/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11319/12000 01:03:48,435 DEBUG NetworkManager: [1631667828.4353] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 595.908 seconds Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11309/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11299/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11289/12000 01:04:18,884 WARNING kernel:kauditd_printk_skb: 4 callbacks suppressed 01:04:18,884 NOTICE kernel:audit: type=1400 audit(1631667858.865:583): avc: denied { associate } for pid=30197 comm="restorecon" name="tracing" dev="sysfs" ino=117 scontext=system_u:object_r:tracefs_t:s0 tcontext=system_u:object_r:sysfs_t:s0 tclass=filesystem permissive=1 01:04:18,885 NOTICE kernel:audit: type=1300 audit(1631667858.865:583): arch=c00000b7 syscall=6 success=yes exit=0 a0=aaab001f3e10 a1=ffffa016e470 a2=aaab003391b0 a3=1f items=0 ppid=29986 pid=30197 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts0 ses=4294967295 comm="restorecon" exe="/usr/sbin/setfiles" subj=system_u:system_r:kernel_t:s0 key=(null) 01:04:18,885 NOTICE kernel:audit: type=1327 audit(1631667858.865:583): proctitle=2F7362696E2F726573746F7265636F6E002D69002D52002D66002D Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11279/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11269/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11259/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11249/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11239/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11229/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11219/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11209/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11199/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11189/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11179/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11169/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11159/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11149/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11139/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11129/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11119/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11109/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11099/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11089/12000 01:07:40,134 INFO systemd:Starting Cleanup of Temporary Directories... 01:07:40,195 INFO systemd:systemd-tmpfiles-clean.service: Succeeded. 01:07:40,197 INFO systemd:Started Cleanup of Temporary Directories. 01:07:40,204 NOTICE kernel:audit: type=1130 audit(1631668060.185:584): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' 01:07:40,204 NOTICE kernel:audit: type=1131 audit(1631668060.185:585): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11079/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11069/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11059/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11049/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11039/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11029/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11019/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 11009/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10999/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10989/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10979/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10969/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10959/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10949/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10939/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10929/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10919/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10909/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10899/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10889/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10879/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10869/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10859/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10849/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10839/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10828/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10818/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10808/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10798/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10788/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10778/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10768/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10758/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10748/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10738/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10728/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10718/12000 01:13:44,344 DEBUG NetworkManager: [1631668424.3448] ndisc[0xaaab0311ebb0,"enp1s0"]: solicit: schedule sending next solicitation in 1229.397 seconds Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10708/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10698/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10688/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10678/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10668/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10658/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10648/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10638/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10628/12000 01:15:19,294 NOTICE kernel:audit: type=2309 audit(1631668519.275:586): pid=30197 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:kernel_t:s0 msg='op=mass relabel exe="/usr/sbin/setfiles" hostname=? addr=? terminal=? res=failed' 01:15:19,724 NOTICE kernel:audit: type=1400 audit(1631668519.705:587): avc: denied { write } for pid=30331 comm="systemd" path="/var/tmp/dracut.M5MVxz/systemd-cat" dev="vda2" ino=12583705 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:tmp_t:s0 tclass=fifo_file permissive=1 01:15:19,724 NOTICE kernel:audit: type=1300 audit(1631668519.705:587): arch=c00000b7 syscall=221 success=yes exit=0 a0=aaaaeb54e4f0 a1=aaaaeb549d00 a2=aaaaeb5570d0 a3=ffffbc21f650 items=0 ppid=30330 pid=30331 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts0 ses=4294967295 comm="systemd" exe="/usr/lib/systemd/systemd" subj=system_u:system_r:init_t:s0 key=(null) 01:15:19,725 NOTICE kernel:audit: type=1309 audit(1631668519.705:587): argc=2 a0="/usr/lib/systemd/systemd" a1="--version" 01:15:19,725 NOTICE kernel:audit: type=1327 audit(1631668519.705:587): proctitle=2F7573722F6C69622F73797374656D642F73797374656D64002D2D76657273696F6E Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10618/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10608/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10598/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10588/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10578/12000 01:16:11,899 INFO anaconda:program: Removing password for user root. 01:16:11,900 INFO anaconda:program: passwd: Success 01:16:11,900 INFO anaconda:program: Locking password for user root. 01:16:11,900 INFO anaconda:program: passwd: Success 01:16:11,901 INFO anaconda:program: Creating grub.conf for pvgrub 01:16:11,901 INFO anaconda:program: . 01:16:11,902 INFO anaconda:program: Dependencies resolved. 01:16:11,902 INFO anaconda:program: ================================================================================ 01:16:11,903 INFO anaconda:program: Package Arch Version Repository Size 01:16:11,903 INFO anaconda:program: ================================================================================ 01:16:11,904 INFO anaconda:program: Removing: 01:16:11,905 INFO anaconda:program: linux-firmware noarch 20201218-102.git05789708.el8 @anaconda 448 M 01:16:11,905 INFO anaconda:program: 01:16:11,906 INFO anaconda:program: Transaction Summary 01:16:11,906 INFO anaconda:program: ================================================================================ 01:16:11,907 INFO anaconda:program: Remove 1 Package 01:16:11,907 INFO anaconda:program: 01:16:11,908 INFO anaconda:program: Freed space: 448 M 01:16:11,908 INFO anaconda:program: Running transaction check 01:16:11,909 INFO anaconda:program: Transaction check succeeded. 01:16:11,909 INFO anaconda:program: Running transaction test 01:16:11,910 INFO anaconda:program: Transaction test succeeded. 01:16:11,910 INFO anaconda:program: Running transaction 01:16:11,911 INFO anaconda:program: Preparing : 1/1 01:16:11,911 INFO anaconda:program: Erasing : linux-firmware-20201218-102.git05789708.el8.noarch 1/1 01:16:11,912 INFO anaconda:program: Running scriptlet: linux-firmware-20201218-102.git05789708.el8.noarch 1/1 01:16:11,912 INFO anaconda:program: Verifying : linux-firmware-20201218-102.git05789708.el8.noarch 1/1 01:16:11,913 INFO anaconda:program: 01:16:11,914 INFO anaconda:program: Removed: 01:16:11,914 INFO anaconda:program: linux-firmware-20201218-102.git05789708.el8.noarch 01:16:11,915 INFO anaconda:program: 01:16:11,915 INFO anaconda:program: Complete! 01:16:11,916 INFO anaconda:program: Dependencies resolved. 01:16:11,916 INFO anaconda:program: ================================================================================ 01:16:11,917 INFO anaconda:program: Package Arch Version Repository Size 01:16:11,917 INFO anaconda:program: ================================================================================ 01:16:11,918 INFO anaconda:program: Removing: 01:16:11,918 INFO anaconda:program: firewalld noarch 0.8.2-7.el8_4 @anaconda 1.9 M 01:16:11,919 INFO anaconda:program: Removing unused dependencies: 01:16:11,919 INFO anaconda:program: firewalld-filesystem noarch 0.8.2-7.el8_4 @anaconda 239 01:16:11,920 INFO anaconda:program: ipset aarch64 7.1-1.el8 @anaconda 124 k 01:16:11,920 INFO anaconda:program: ipset-libs aarch64 7.1-1.el8 @anaconda 331 k 01:16:11,921 INFO anaconda:program: iptables aarch64 1.8.4-17.el8 @anaconda 8.6 M 01:16:11,921 INFO anaconda:program: iptables-ebtables aarch64 1.8.4-17.el8 @anaconda 14 k 01:16:11,922 INFO anaconda:program: libnetfilter_conntrack aarch64 1.0.6-5.el8 @anaconda 164 k 01:16:11,922 INFO anaconda:program: libnfnetlink aarch64 1.0.1-13.el8 @anaconda 87 k 01:16:11,923 INFO anaconda:program: libnftnl aarch64 1.1.5-4.el8 @anaconda 221 k 01:16:11,924 INFO anaconda:program: nftables aarch64 1:0.9.3-18.el8 @anaconda 829 k 01:16:11,924 INFO anaconda:program: python3-firewall noarch 0.8.2-7.el8_4 @anaconda 1.8 M 01:16:11,925 INFO anaconda:program: python3-nftables aarch64 1:0.9.3-18.el8 @anaconda 28 k 01:16:11,925 INFO anaconda:program: 01:16:11,926 INFO anaconda:program: Transaction Summary 01:16:11,926 INFO anaconda:program: ================================================================================ 01:16:11,927 INFO anaconda:program: Remove 12 Packages 01:16:11,927 INFO anaconda:program: 01:16:11,928 INFO anaconda:program: Freed space: 14 M 01:16:11,928 INFO anaconda:program: Running transaction check 01:16:11,929 INFO anaconda:program: Transaction check succeeded. 01:16:11,929 INFO anaconda:program: Running transaction test 01:16:11,930 INFO anaconda:program: Transaction test succeeded. 01:16:11,930 INFO anaconda:program: Running transaction 01:16:11,931 INFO anaconda:program: Preparing : 1/1 01:16:11,931 INFO anaconda:program: Running scriptlet: firewalld-0.8.2-7.el8_4.noarch 1/1 01:16:11,932 INFO anaconda:program: Running scriptlet: firewalld-0.8.2-7.el8_4.noarch 1/12 01:16:11,932 INFO anaconda:program: Erasing : firewalld-0.8.2-7.el8_4.noarch 1/12 01:16:11,933 INFO anaconda:program: Running scriptlet: firewalld-0.8.2-7.el8_4.noarch 1/12 01:16:11,933 INFO anaconda:program: Running in chroot, ignoring request: daemon-reload 01:16:11,934 INFO anaconda:program: 01:16:11,935 INFO anaconda:program: Running scriptlet: iptables-ebtables-1.8.4-17.el8.aarch64 2/12 01:16:11,935 INFO anaconda:program: Erasing : iptables-ebtables-1.8.4-17.el8.aarch64 2/12 01:16:11,936 INFO anaconda:program: Running scriptlet: iptables-ebtables-1.8.4-17.el8.aarch64 2/12 01:16:11,936 INFO anaconda:program: Erasing : python3-firewall-0.8.2-7.el8_4.noarch 3/12 01:16:11,937 INFO anaconda:program: Erasing : iptables-1.8.4-17.el8.aarch64 4/12 01:16:11,937 INFO anaconda:program: Running scriptlet: iptables-1.8.4-17.el8.aarch64 4/12 01:16:11,938 INFO anaconda:program: Running scriptlet: ipset-7.1-1.el8.aarch64 5/12 01:16:11,938 INFO anaconda:program: Erasing : ipset-7.1-1.el8.aarch64 5/12 01:16:11,939 INFO anaconda:program: Erasing : python3-nftables-1:0.9.3-18.el8.aarch64 6/12 01:16:11,939 INFO anaconda:program: Erasing : firewalld-filesystem-0.8.2-7.el8_4.noarch 7/12 01:16:11,940 INFO anaconda:program: Running scriptlet: nftables-1:0.9.3-18.el8.aarch64 8/12 01:16:11,940 INFO anaconda:program: Erasing : nftables-1:0.9.3-18.el8.aarch64 8/12 01:16:11,941 INFO anaconda:program: Running scriptlet: nftables-1:0.9.3-18.el8.aarch64 8/12 01:16:11,941 INFO anaconda:program: Erasing : libnetfilter_conntrack-1.0.6-5.el8.aarch64 9/12 01:16:11,942 INFO anaconda:program: Running scriptlet: libnetfilter_conntrack-1.0.6-5.el8.aarch64 9/12 01:16:11,943 INFO anaconda:program: Erasing : libnfnetlink-1.0.1-13.el8.aarch64 10/12 01:16:11,943 INFO anaconda:program: Running scriptlet: libnfnetlink-1.0.1-13.el8.aarch64 10/12 01:16:11,944 INFO anaconda:program: Erasing : libnftnl-1.1.5-4.el8.aarch64 11/12 01:16:11,944 INFO anaconda:program: Running scriptlet: libnftnl-1.1.5-4.el8.aarch64 11/12 01:16:11,945 INFO anaconda:program: Erasing : ipset-libs-7.1-1.el8.aarch64 12/12 01:16:11,945 INFO anaconda:program: Running scriptlet: ipset-libs-7.1-1.el8.aarch64 12/12 01:16:11,946 INFO anaconda:program: Verifying : firewalld-0.8.2-7.el8_4.noarch 1/12 01:16:11,946 INFO anaconda:program: Verifying : firewalld-filesystem-0.8.2-7.el8_4.noarch 2/12 01:16:11,947 INFO anaconda:program: Verifying : ipset-7.1-1.el8.aarch64 3/12 01:16:11,947 INFO anaconda:program: Verifying : ipset-libs-7.1-1.el8.aarch64 4/12 01:16:11,948 INFO anaconda:program: Verifying : iptables-1.8.4-17.el8.aarch64 5/12 01:16:11,948 INFO anaconda:program: Verifying : iptables-ebtables-1.8.4-17.el8.aarch64 6/12 01:16:11,949 INFO anaconda:program: Verifying : libnetfilter_conntrack-1.0.6-5.el8.aarch64 7/12 01:16:11,949 INFO anaconda:program: Verifying : libnfnetlink-1.0.1-13.el8.aarch64 8/12 01:16:11,950 INFO anaconda:program: Verifying : libnftnl-1.1.5-4.el8.aarch64 9/12 01:16:11,950 INFO anaconda:program: Verifying : nftables-1:0.9.3-18.el8.aarch64 10/12 01:16:11,951 INFO anaconda:program: Verifying : python3-firewall-0.8.2-7.el8_4.noarch 11/12 01:16:11,951 INFO anaconda:program: Verifying : python3-nftables-1:0.9.3-18.el8.aarch64 12/12 01:16:11,952 INFO anaconda:program: 01:16:11,953 INFO anaconda:program: Removed: 01:16:11,953 INFO anaconda:program: firewalld-0.8.2-7.el8_4.noarch 01:16:11,954 INFO anaconda:program: firewalld-filesystem-0.8.2-7.el8_4.noarch 01:16:11,954 INFO anaconda:program: ipset-7.1-1.el8.aarch64 01:16:11,955 INFO anaconda:program: ipset-libs-7.1-1.el8.aarch64 01:16:11,955 INFO anaconda:program: iptables-1.8.4-17.el8.aarch64 01:16:11,956 INFO anaconda:program: iptables-ebtables-1.8.4-17.el8.aarch64 01:16:11,956 INFO anaconda:program: libnetfilter_conntrack-1.0.6-5.el8.aarch64 01:16:11,957 INFO anaconda:program: libnfnetlink-1.0.1-13.el8.aarch64 01:16:11,957 INFO anaconda:program: libnftnl-1.1.5-4.el8.aarch64 01:16:11,958 INFO anaconda:program: nftables-1:0.9.3-18.el8.aarch64 01:16:11,958 INFO anaconda:program: python3-firewall-0.8.2-7.el8_4.noarch 01:16:11,959 INFO anaconda:program: python3-nftables-1:0.9.3-18.el8.aarch64 01:16:11,959 INFO anaconda:program: 01:16:11,960 INFO anaconda:program: Complete! 01:16:11,960 INFO anaconda:program: No match for argument: avahi* 01:16:11,961 INFO anaconda:program: No packages marked for removal. 01:16:11,962 INFO anaconda:program: Dependencies resolved. 01:16:11,962 INFO anaconda:program: Nothing to do. 01:16:11,963 INFO anaconda:program: Complete! 01:16:11,963 INFO anaconda:program: . 01:16:11,964 INFO anaconda:program: Created symlink /etc/systemd/system/tmp.mount -> /dev/null. 01:16:11,964 INFO anaconda:program: 0 files removed 01:16:11,965 INFO anaconda:program: Fixing SELinux contexts. 01:16:11,965 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man0p restorecon: No such file or directory. 01:16:11,966 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man1 restorecon: No such file or directory. 01:16:11,966 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man1p restorecon: No such file or directory. 01:16:11,967 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man1x restorecon: No such file or directory. 01:16:11,967 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man2 restorecon: No such file or directory. 01:16:11,968 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man2x restorecon: No such file or directory. 01:16:11,968 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man3 restorecon: No such file or directory. 01:16:11,969 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man3p restorecon: No such file or directory. 01:16:11,969 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man3x restorecon: No such file or directory. 01:16:11,970 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man4 restorecon: No such file or directory. 01:16:11,970 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man4x restorecon: No such file or directory. 01:16:11,971 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man5 restorecon: No such file or directory. 01:16:11,971 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man5x restorecon: No such file or directory. 01:16:11,972 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man6 restorecon: No such file or directory. 01:16:11,973 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man6x restorecon: No such file or directory. 01:16:11,973 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man7 restorecon: No such file or directory. 01:16:11,974 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man7x restorecon: No such file or directory. 01:16:11,974 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man8 restorecon: No such file or directory. 01:16:11,975 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man8x restorecon: No such file or directory. 01:16:11,975 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man9 restorecon: No such file or directory. 01:16:11,976 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/man9x restorecon: No such file or directory. 01:16:11,976 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aa/mann restorecon: No such file or directory. 01:16:11,977 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man0p restorecon: No such file or directory. 01:16:11,977 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man1 restorecon: No such file or directory. 01:16:11,978 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man1p restorecon: No such file or directory. 01:16:11,978 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man1x restorecon: No such file or directory. 01:16:11,979 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man2 restorecon: No such file or directory. 01:16:11,979 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man2x restorecon: No such file or directory. 01:16:11,980 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man3 restorecon: No such file or directory. 01:16:11,980 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man3p restorecon: No such file or directory. 01:16:11,981 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man3x restorecon: No such file or directory. 01:16:11,982 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man4 restorecon: No such file or directory. 01:16:11,982 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man4x restorecon: No such file or directory. 01:16:11,983 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man5 restorecon: No such file or directory. 01:16:11,983 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man5x restorecon: No such file or directory. 01:16:11,984 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man6 restorecon: No such file or directory. 01:16:11,984 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man6x restorecon: No such file or directory. 01:16:11,985 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man7 restorecon: No such file or directory. 01:16:11,985 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man7x restorecon: No such file or directory. 01:16:11,986 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man8 restorecon: No such file or directory. 01:16:11,986 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man8x restorecon: No such file or directory. 01:16:11,987 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man9 restorecon: No such file or directory. 01:16:11,987 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/man9x restorecon: No such file or directory. 01:16:11,988 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ab/mann restorecon: No such file or directory. 01:16:11,988 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man0p restorecon: No such file or directory. 01:16:11,989 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man1 restorecon: No such file or directory. 01:16:11,989 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man1p restorecon: No such file or directory. 01:16:11,990 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man1x restorecon: No such file or directory. 01:16:11,990 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man2 restorecon: No such file or directory. 01:16:11,991 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man2x restorecon: No such file or directory. 01:16:11,991 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man3 restorecon: No such file or directory. 01:16:11,992 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man3p restorecon: No such file or directory. 01:16:11,993 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man3x restorecon: No such file or directory. 01:16:11,993 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man4 restorecon: No such file or directory. 01:16:11,994 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man4x restorecon: No such file or directory. 01:16:11,994 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man5 restorecon: No such file or directory. 01:16:11,995 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man5x restorecon: No such file or directory. 01:16:11,995 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man6 restorecon: No such file or directory. 01:16:11,996 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man6x restorecon: No such file or directory. 01:16:11,996 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man7 restorecon: No such file or directory. 01:16:11,997 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man7x restorecon: No such file or directory. 01:16:11,997 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man8 restorecon: No such file or directory. 01:16:11,998 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man8x restorecon: No such file or directory. 01:16:11,998 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man9 restorecon: No such file or directory. 01:16:11,999 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/man9x restorecon: No such file or directory. 01:16:11,999 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ace/mann restorecon: No such file or directory. 01:16:12,000 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man0p restorecon: No such file or directory. 01:16:12,000 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man1 restorecon: No such file or directory. 01:16:12,001 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man1p restorecon: No such file or directory. 01:16:12,001 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man1x restorecon: No such file or directory. 01:16:12,002 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man2 restorecon: No such file or directory. 01:16:12,003 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man2x restorecon: No such file or directory. 01:16:12,003 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man3 restorecon: No such file or directory. 01:16:12,004 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man3p restorecon: No such file or directory. 01:16:12,004 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man3x restorecon: No such file or directory. 01:16:12,005 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man4 restorecon: No such file or directory. 01:16:12,005 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man4x restorecon: No such file or directory. 01:16:12,006 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man5 restorecon: No such file or directory. 01:16:12,006 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man5x restorecon: No such file or directory. 01:16:12,007 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man6 restorecon: No such file or directory. 01:16:12,007 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man6x restorecon: No such file or directory. 01:16:12,008 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man7 restorecon: No such file or directory. 01:16:12,008 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man7x restorecon: No such file or directory. 01:16:12,009 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man8 restorecon: No such file or directory. 01:16:12,009 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man8x restorecon: No such file or directory. 01:16:12,010 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man9 restorecon: No such file or directory. 01:16:12,010 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/man9x restorecon: No such file or directory. 01:16:12,011 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ach/mann restorecon: No such file or directory. 01:16:12,011 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man0p restorecon: No such file or directory. 01:16:12,012 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man1 restorecon: No such file or directory. 01:16:12,013 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man1p restorecon: No such file or directory. 01:16:12,013 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man1x restorecon: No such file or directory. 01:16:12,014 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man2 restorecon: No such file or directory. 01:16:12,014 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man2x restorecon: No such file or directory. 01:16:12,015 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man3 restorecon: No such file or directory. 01:16:12,015 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man3p restorecon: No such file or directory. 01:16:12,016 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man3x restorecon: No such file or directory. 01:16:12,016 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man4 restorecon: No such file or directory. 01:16:12,017 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man4x restorecon: No such file or directory. 01:16:12,017 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man5 restorecon: No such file or directory. 01:16:12,018 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man5x restorecon: No such file or directory. 01:16:12,018 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man6 restorecon: No such file or directory. 01:16:12,019 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man6x restorecon: No such file or directory. 01:16:12,019 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man7 restorecon: No such file or directory. 01:16:12,020 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man7x restorecon: No such file or directory. 01:16:12,020 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man8 restorecon: No such file or directory. 01:16:12,021 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man8x restorecon: No such file or directory. 01:16:12,021 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man9 restorecon: No such file or directory. 01:16:12,022 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/man9x restorecon: No such file or directory. 01:16:12,023 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ada/mann restorecon: No such file or directory. 01:16:12,023 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man0p restorecon: No such file or directory. 01:16:12,024 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man1 restorecon: No such file or directory. 01:16:12,024 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man1p restorecon: No such file or directory. 01:16:12,025 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man1x restorecon: No such file or directory. 01:16:12,025 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man2 restorecon: No such file or directory. 01:16:12,026 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man2x restorecon: No such file or directory. 01:16:12,026 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man3 restorecon: No such file or directory. 01:16:12,027 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man3p restorecon: No such file or directory. 01:16:12,027 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man3x restorecon: No such file or directory. 01:16:12,028 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man4 restorecon: No such file or directory. 01:16:12,028 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man4x restorecon: No such file or directory. 01:16:12,029 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man5 restorecon: No such file or directory. 01:16:12,029 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man5x restorecon: No such file or directory. 01:16:12,030 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man6 restorecon: No such file or directory. 01:16:12,030 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man6x restorecon: No such file or directory. 01:16:12,031 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man7 restorecon: No such file or directory. 01:16:12,031 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man7x restorecon: No such file or directory. 01:16:12,032 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man8 restorecon: No such file or directory. 01:16:12,032 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man8x restorecon: No such file or directory. 01:16:12,033 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man9 restorecon: No such file or directory. 01:16:12,034 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/man9x restorecon: No such file or directory. 01:16:12,034 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ady/mann restorecon: No such file or directory. 01:16:12,035 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man0p restorecon: No such file or directory. 01:16:12,035 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man1 restorecon: No such file or directory. 01:16:12,036 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man1p restorecon: No such file or directory. 01:16:12,036 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man1x restorecon: No such file or directory. 01:16:12,037 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man2 restorecon: No such file or directory. 01:16:12,037 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man2x restorecon: No such file or directory. 01:16:12,038 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man3 restorecon: No such file or directory. 01:16:12,038 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man3p restorecon: No such file or directory. 01:16:12,039 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man3x restorecon: No such file or directory. 01:16:12,039 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man4 restorecon: No such file or directory. 01:16:12,040 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man4x restorecon: No such file or directory. 01:16:12,040 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man5 restorecon: No such file or directory. 01:16:12,041 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man5x restorecon: No such file or directory. 01:16:12,041 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man6 restorecon: No such file or directory. 01:16:12,042 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man6x restorecon: No such file or directory. 01:16:12,042 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man7 restorecon: No such file or directory. 01:16:12,043 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man7x restorecon: No such file or directory. 01:16:12,044 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man8 restorecon: No such file or directory. 01:16:12,044 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man8x restorecon: No such file or directory. 01:16:12,045 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man9 restorecon: No such file or directory. 01:16:12,045 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/man9x restorecon: No such file or directory. 01:16:12,046 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ae/mann restorecon: No such file or directory. 01:16:12,046 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man0p restorecon: No such file or directory. 01:16:12,047 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man1 restorecon: No such file or directory. 01:16:12,047 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man1p restorecon: No such file or directory. 01:16:12,048 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man1x restorecon: No such file or directory. 01:16:12,048 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man2 restorecon: No such file or directory. 01:16:12,049 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man2x restorecon: No such file or directory. 01:16:12,049 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man3 restorecon: No such file or directory. 01:16:12,050 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man3p restorecon: No such file or directory. 01:16:12,050 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man3x restorecon: No such file or directory. 01:16:12,051 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man4 restorecon: No such file or directory. 01:16:12,051 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man4x restorecon: No such file or directory. 01:16:12,052 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man5 restorecon: No such file or directory. 01:16:12,052 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man5x restorecon: No such file or directory. 01:16:12,053 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man6 restorecon: No such file or directory. 01:16:12,054 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man6x restorecon: No such file or directory. 01:16:12,054 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man7 restorecon: No such file or directory. 01:16:12,055 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man7x restorecon: No such file or directory. 01:16:12,055 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man8 restorecon: No such file or directory. 01:16:12,056 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man8x restorecon: No such file or directory. 01:16:12,056 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man9 restorecon: No such file or directory. 01:16:12,057 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/man9x restorecon: No such file or directory. 01:16:12,057 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af/mann restorecon: No such file or directory. 01:16:12,058 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man0p restorecon: No such file or directory. 01:16:12,058 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man1 restorecon: No such file or directory. 01:16:12,059 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man1p restorecon: No such file or directory. 01:16:12,059 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man1x restorecon: No such file or directory. 01:16:12,060 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man2 restorecon: No such file or directory. 01:16:12,060 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man2x restorecon: No such file or directory. 01:16:12,061 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man3 restorecon: No such file or directory. 01:16:12,061 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man3p restorecon: No such file or directory. 01:16:12,062 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man3x restorecon: No such file or directory. 01:16:12,062 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man4 restorecon: No such file or directory. 01:16:12,063 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man4x restorecon: No such file or directory. 01:16:12,064 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man5 restorecon: No such file or directory. 01:16:12,064 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man5x restorecon: No such file or directory. 01:16:12,065 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man6 restorecon: No such file or directory. 01:16:12,065 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man6x restorecon: No such file or directory. 01:16:12,066 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man7 restorecon: No such file or directory. 01:16:12,066 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man7x restorecon: No such file or directory. 01:16:12,067 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man8 restorecon: No such file or directory. 01:16:12,067 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man8x restorecon: No such file or directory. 01:16:12,068 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man9 restorecon: No such file or directory. 01:16:12,068 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/man9x restorecon: No such file or directory. 01:16:12,069 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/af_ZA/mann restorecon: No such file or directory. 01:16:12,069 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man0p restorecon: No such file or directory. 01:16:12,070 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man1 restorecon: No such file or directory. 01:16:12,070 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man1p restorecon: No such file or directory. 01:16:12,071 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man1x restorecon: No such file or directory. 01:16:12,071 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man2 restorecon: No such file or directory. 01:16:12,072 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man2x restorecon: No such file or directory. 01:16:12,073 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man3 restorecon: No such file or directory. 01:16:12,073 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man3p restorecon: No such file or directory. 01:16:12,074 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man3x restorecon: No such file or directory. 01:16:12,074 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man4 restorecon: No such file or directory. 01:16:12,075 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man4x restorecon: No such file or directory. 01:16:12,075 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man5 restorecon: No such file or directory. 01:16:12,076 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man5x restorecon: No such file or directory. 01:16:12,076 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man6 restorecon: No such file or directory. 01:16:12,077 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man6x restorecon: No such file or directory. 01:16:12,077 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man7 restorecon: No such file or directory. 01:16:12,078 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man7x restorecon: No such file or directory. 01:16:12,078 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man8 restorecon: No such file or directory. 01:16:12,079 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man8x restorecon: No such file or directory. 01:16:12,079 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man9 restorecon: No such file or directory. 01:16:12,080 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/man9x restorecon: No such file or directory. 01:16:12,080 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afa/mann restorecon: No such file or directory. 01:16:12,081 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man0p restorecon: No such file or directory. 01:16:12,081 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man1 restorecon: No such file or directory. 01:16:12,082 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man1p restorecon: No such file or directory. 01:16:12,083 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man1x restorecon: No such file or directory. 01:16:12,083 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man2 restorecon: No such file or directory. 01:16:12,084 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man2x restorecon: No such file or directory. 01:16:12,084 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man3 restorecon: No such file or directory. 01:16:12,085 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man3p restorecon: No such file or directory. 01:16:12,085 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man3x restorecon: No such file or directory. 01:16:12,086 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man4 restorecon: No such file or directory. 01:16:12,086 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man4x restorecon: No such file or directory. 01:16:12,087 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man5 restorecon: No such file or directory. 01:16:12,087 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man5x restorecon: No such file or directory. 01:16:12,088 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man6 restorecon: No such file or directory. 01:16:12,088 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man6x restorecon: No such file or directory. 01:16:12,089 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man7 restorecon: No such file or directory. 01:16:12,089 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man7x restorecon: No such file or directory. 01:16:12,090 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man8 restorecon: No such file or directory. 01:16:12,090 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man8x restorecon: No such file or directory. 01:16:12,091 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man9 restorecon: No such file or directory. 01:16:12,091 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/man9x restorecon: No such file or directory. 01:16:12,092 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/afh/mann restorecon: No such file or directory. 01:16:12,093 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man0p restorecon: No such file or directory. 01:16:12,093 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man1 restorecon: No such file or directory. 01:16:12,094 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man1p restorecon: No such file or directory. 01:16:12,094 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man1x restorecon: No such file or directory. 01:16:12,095 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man2 restorecon: No such file or directory. 01:16:12,095 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man2x restorecon: No such file or directory. 01:16:12,096 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man3 restorecon: No such file or directory. 01:16:12,096 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man3p restorecon: No such file or directory. 01:16:12,097 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man3x restorecon: No such file or directory. 01:16:12,097 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man4 restorecon: No such file or directory. 01:16:12,098 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man4x restorecon: No such file or directory. 01:16:12,098 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man5 restorecon: No such file or directory. 01:16:12,099 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man5x restorecon: No such file or directory. 01:16:12,099 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man6 restorecon: No such file or directory. 01:16:12,100 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man6x restorecon: No such file or directory. 01:16:12,100 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man7 restorecon: No such file or directory. 01:16:12,101 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man7x restorecon: No such file or directory. 01:16:12,101 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man8 restorecon: No such file or directory. 01:16:12,102 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man8x restorecon: No such file or directory. 01:16:12,102 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man9 restorecon: No such file or directory. 01:16:12,103 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/man9x restorecon: No such file or directory. 01:16:12,104 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/agr/mann restorecon: No such file or directory. 01:16:12,104 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man0p restorecon: No such file or directory. 01:16:12,105 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man1 restorecon: No such file or directory. 01:16:12,105 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man1p restorecon: No such file or directory. 01:16:12,106 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man1x restorecon: No such file or directory. 01:16:12,106 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man2 restorecon: No such file or directory. 01:16:12,107 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man2x restorecon: No such file or directory. 01:16:12,107 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man3 restorecon: No such file or directory. 01:16:12,108 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man3p restorecon: No such file or directory. 01:16:12,108 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man3x restorecon: No such file or directory. 01:16:12,109 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man4 restorecon: No such file or directory. 01:16:12,109 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man4x restorecon: No such file or directory. 01:16:12,110 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man5 restorecon: No such file or directory. 01:16:12,110 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man5x restorecon: No such file or directory. 01:16:12,111 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man6 restorecon: No such file or directory. 01:16:12,111 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man6x restorecon: No such file or directory. 01:16:12,112 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man7 restorecon: No such file or directory. 01:16:12,112 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man7x restorecon: No such file or directory. 01:16:12,113 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man8 restorecon: No such file or directory. 01:16:12,114 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man8x restorecon: No such file or directory. 01:16:12,114 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man9 restorecon: No such file or directory. 01:16:12,115 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/man9x restorecon: No such file or directory. 01:16:12,115 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ain/mann restorecon: No such file or directory. 01:16:12,116 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man0p restorecon: No such file or directory. 01:16:12,116 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man1 restorecon: No such file or directory. 01:16:12,117 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man1p restorecon: No such file or directory. 01:16:12,117 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man1x restorecon: No such file or directory. 01:16:12,118 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man2 restorecon: No such file or directory. 01:16:12,118 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man2x restorecon: No such file or directory. 01:16:12,119 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man3 restorecon: No such file or directory. 01:16:12,119 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man3p restorecon: No such file or directory. 01:16:12,120 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man3x restorecon: No such file or directory. 01:16:12,120 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man4 restorecon: No such file or directory. 01:16:12,121 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man4x restorecon: No such file or directory. 01:16:12,121 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man5 restorecon: No such file or directory. 01:16:12,122 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man5x restorecon: No such file or directory. 01:16:12,122 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man6 restorecon: No such file or directory. 01:16:12,123 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man6x restorecon: No such file or directory. 01:16:12,124 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man7 restorecon: No such file or directory. 01:16:12,124 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man7x restorecon: No such file or directory. 01:16:12,125 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man8 restorecon: No such file or directory. 01:16:12,125 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man8x restorecon: No such file or directory. 01:16:12,126 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man9 restorecon: No such file or directory. 01:16:12,126 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/man9x restorecon: No such file or directory. 01:16:12,127 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ak/mann restorecon: No such file or directory. 01:16:12,127 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man0p restorecon: No such file or directory. 01:16:12,128 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man1 restorecon: No such file or directory. 01:16:12,128 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man1p restorecon: No such file or directory. 01:16:12,129 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man1x restorecon: No such file or directory. 01:16:12,129 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man2 restorecon: No such file or directory. 01:16:12,130 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man2x restorecon: No such file or directory. 01:16:12,130 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man3 restorecon: No such file or directory. 01:16:12,131 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man3p restorecon: No such file or directory. 01:16:12,131 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man3x restorecon: No such file or directory. 01:16:12,132 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man4 restorecon: No such file or directory. 01:16:12,133 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man4x restorecon: No such file or directory. 01:16:12,133 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man5 restorecon: No such file or directory. 01:16:12,134 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man5x restorecon: No such file or directory. 01:16:12,134 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man6 restorecon: No such file or directory. 01:16:12,135 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man6x restorecon: No such file or directory. 01:16:12,135 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man7 restorecon: No such file or directory. 01:16:12,136 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man7x restorecon: No such file or directory. 01:16:12,136 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man8 restorecon: No such file or directory. 01:16:12,137 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man8x restorecon: No such file or directory. 01:16:12,137 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man9 restorecon: No such file or directory. 01:16:12,138 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/man9x restorecon: No such file or directory. 01:16:12,138 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/akk/mann restorecon: No such file or directory. 01:16:12,139 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man0p restorecon: No such file or directory. 01:16:12,139 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man1 restorecon: No such file or directory. 01:16:12,140 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man1p restorecon: No such file or directory. 01:16:12,140 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man1x restorecon: No such file or directory. 01:16:12,141 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man2 restorecon: No such file or directory. 01:16:12,141 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man2x restorecon: No such file or directory. 01:16:12,142 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man3 restorecon: No such file or directory. 01:16:12,143 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man3p restorecon: No such file or directory. 01:16:12,143 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man3x restorecon: No such file or directory. 01:16:12,144 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man4 restorecon: No such file or directory. 01:16:12,144 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man4x restorecon: No such file or directory. 01:16:12,145 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man5 restorecon: No such file or directory. 01:16:12,145 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man5x restorecon: No such file or directory. 01:16:12,146 INFO anaconda: Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10568/12000 program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man6 restorecon: No such file or directory. 01:16:12,146 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man6x restorecon: No such file or directory. 01:16:12,147 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man7 restorecon: No such file or directory. 01:16:12,147 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man7x restorecon: No such file or directory. 01:16:12,148 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man8 restorecon: No such file or directory. 01:16:12,148 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man8x restorecon: No such file or directory. 01:16:12,149 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man9 restorecon: No such file or directory. 01:16:12,149 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/man9x restorecon: No such file or directory. 01:16:12,150 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ale/mann restorecon: No such file or directory. 01:16:12,151 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man0p restorecon: No such file or directory. 01:16:12,151 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man1 restorecon: No such file or directory. 01:16:12,152 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man1p restorecon: No such file or directory. 01:16:12,152 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man1x restorecon: No such file or directory. 01:16:12,153 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man2 restorecon: No such file or directory. 01:16:12,153 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man2x restorecon: No such file or directory. 01:16:12,154 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man3 restorecon: No such file or directory. 01:16:12,154 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man3p restorecon: No such file or directory. 01:16:12,155 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man3x restorecon: No such file or directory. 01:16:12,155 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man4 restorecon: No such file or directory. 01:16:12,156 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man4x restorecon: No such file or directory. 01:16:12,157 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man5 restorecon: No such file or directory. 01:16:12,157 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man5x restorecon: No such file or directory. 01:16:12,158 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man6 restorecon: No such file or directory. 01:16:12,158 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man6x restorecon: No such file or directory. 01:16:12,159 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man7 restorecon: No such file or directory. 01:16:12,159 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man7x restorecon: No such file or directory. 01:16:12,160 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man8 restorecon: No such file or directory. 01:16:12,160 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man8x restorecon: No such file or directory. 01:16:12,161 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man9 restorecon: No such file or directory. 01:16:12,161 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/man9x restorecon: No such file or directory. 01:16:12,162 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alg/mann restorecon: No such file or directory. 01:16:12,163 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man0p restorecon: No such file or directory. 01:16:12,163 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man1 restorecon: No such file or directory. 01:16:12,164 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man1p restorecon: No such file or directory. 01:16:12,164 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man1x restorecon: No such file or directory. 01:16:12,165 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man2 restorecon: No such file or directory. 01:16:12,165 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man2x restorecon: No such file or directory. 01:16:12,166 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man3 restorecon: No such file or directory. 01:16:12,166 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man3p restorecon: No such file or directory. 01:16:12,167 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man3x restorecon: No such file or directory. 01:16:12,167 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man4 restorecon: No such file or directory. 01:16:12,168 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man4x restorecon: No such file or directory. 01:16:12,168 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man5 restorecon: No such file or directory. 01:16:12,169 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man5x restorecon: No such file or directory. 01:16:12,170 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man6 restorecon: No such file or directory. 01:16:12,170 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man6x restorecon: No such file or directory. 01:16:12,171 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man7 restorecon: No such file or directory. 01:16:12,171 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man7x restorecon: No such file or directory. 01:16:12,172 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man8 restorecon: No such file or directory. 01:16:12,172 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man8x restorecon: No such file or directory. 01:16:12,173 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man9 restorecon: No such file or directory. 01:16:12,173 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/man9x restorecon: No such file or directory. 01:16:12,174 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aln/mann restorecon: No such file or directory. 01:16:12,174 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man0p restorecon: No such file or directory. 01:16:12,175 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man1 restorecon: No such file or directory. 01:16:12,176 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man1p restorecon: No such file or directory. 01:16:12,176 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man1x restorecon: No such file or directory. 01:16:12,177 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man2 restorecon: No such file or directory. 01:16:12,177 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man2x restorecon: No such file or directory. 01:16:12,178 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man3 restorecon: No such file or directory. 01:16:12,178 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man3p restorecon: No such file or directory. 01:16:12,179 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man3x restorecon: No such file or directory. 01:16:12,179 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man4 restorecon: No such file or directory. 01:16:12,180 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man4x restorecon: No such file or directory. 01:16:12,180 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man5 restorecon: No such file or directory. 01:16:12,181 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man5x restorecon: No such file or directory. 01:16:12,182 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man6 restorecon: No such file or directory. 01:16:12,182 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man6x restorecon: No such file or directory. 01:16:12,183 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man7 restorecon: No such file or directory. 01:16:12,183 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man7x restorecon: No such file or directory. 01:16:12,184 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man8 restorecon: No such file or directory. 01:16:12,184 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man8x restorecon: No such file or directory. 01:16:12,185 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man9 restorecon: No such file or directory. 01:16:12,185 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/man9x restorecon: No such file or directory. 01:16:12,186 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/alt/mann restorecon: No such file or directory. 01:16:12,186 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man0p restorecon: No such file or directory. 01:16:12,187 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man1 restorecon: No such file or directory. 01:16:12,188 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man1p restorecon: No such file or directory. 01:16:12,188 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man1x restorecon: No such file or directory. 01:16:12,189 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man2 restorecon: No such file or directory. 01:16:12,189 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man2x restorecon: No such file or directory. 01:16:12,190 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man3 restorecon: No such file or directory. 01:16:12,190 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man3p restorecon: No such file or directory. 01:16:12,191 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man3x restorecon: No such file or directory. 01:16:12,191 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man4 restorecon: No such file or directory. 01:16:12,192 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man4x restorecon: No such file or directory. 01:16:12,192 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man5 restorecon: No such file or directory. 01:16:12,193 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man5x restorecon: No such file or directory. 01:16:12,194 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man6 restorecon: No such file or directory. 01:16:12,194 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man6x restorecon: No such file or directory. 01:16:12,195 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man7 restorecon: No such file or directory. 01:16:12,195 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man7x restorecon: No such file or directory. 01:16:12,196 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man8 restorecon: No such file or directory. 01:16:12,196 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man8x restorecon: No such file or directory. 01:16:12,197 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man9 restorecon: No such file or directory. 01:16:12,197 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/man9x restorecon: No such file or directory. 01:16:12,198 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/am/mann restorecon: No such file or directory. 01:16:12,198 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man0p restorecon: No such file or directory. 01:16:12,199 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man1 restorecon: No such file or directory. 01:16:12,200 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man1p restorecon: No such file or directory. 01:16:12,200 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man1x restorecon: No such file or directory. 01:16:12,201 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man2 restorecon: No such file or directory. 01:16:12,201 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man2x restorecon: No such file or directory. 01:16:12,202 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man3 restorecon: No such file or directory. 01:16:12,202 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man3p restorecon: No such file or directory. 01:16:12,203 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man3x restorecon: No such file or directory. 01:16:12,203 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man4 restorecon: No such file or directory. 01:16:12,204 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man4x restorecon: No such file or directory. 01:16:12,204 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man5 restorecon: No such file or directory. 01:16:12,205 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man5x restorecon: No such file or directory. 01:16:12,206 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man6 restorecon: No such file or directory. 01:16:12,206 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man6x restorecon: No such file or directory. 01:16:12,207 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man7 restorecon: No such file or directory. 01:16:12,207 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man7x restorecon: No such file or directory. 01:16:12,208 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man8 restorecon: No such file or directory. 01:16:12,208 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man8x restorecon: No such file or directory. 01:16:12,209 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man9 restorecon: No such file or directory. 01:16:12,209 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/man9x restorecon: No such file or directory. 01:16:12,210 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/an/mann restorecon: No such file or directory. 01:16:12,210 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man0p restorecon: No such file or directory. 01:16:12,211 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man1 restorecon: No such file or directory. 01:16:12,212 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man1p restorecon: No such file or directory. 01:16:12,212 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man1x restorecon: No such file or directory. 01:16:12,213 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man2 restorecon: No such file or directory. 01:16:12,213 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man2x restorecon: No such file or directory. 01:16:12,214 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man3 restorecon: No such file or directory. 01:16:12,214 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man3p restorecon: No such file or directory. 01:16:12,215 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man3x restorecon: No such file or directory. 01:16:12,215 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man4 restorecon: No such file or directory. 01:16:12,216 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man4x restorecon: No such file or directory. 01:16:12,217 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man5 restorecon: No such file or directory. 01:16:12,217 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man5x restorecon: No such file or directory. 01:16:12,218 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man6 restorecon: No such file or directory. 01:16:12,218 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man6x restorecon: No such file or directory. 01:16:12,219 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man7 restorecon: No such file or directory. 01:16:12,219 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man7x restorecon: No such file or directory. 01:16:12,220 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man8 restorecon: No such file or directory. 01:16:12,220 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man8x restorecon: No such file or directory. 01:16:12,221 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man9 restorecon: No such file or directory. 01:16:12,221 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/man9x restorecon: No such file or directory. 01:16:12,222 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ang/mann restorecon: No such file or directory. 01:16:12,223 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man0p restorecon: No such file or directory. 01:16:12,223 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man1 restorecon: No such file or directory. 01:16:12,224 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man1p restorecon: No such file or directory. 01:16:12,224 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man1x restorecon: No such file or directory. 01:16:12,225 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man2 restorecon: No such file or directory. 01:16:12,225 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man2x restorecon: No such file or directory. 01:16:12,226 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man3 restorecon: No such file or directory. 01:16:12,226 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man3p restorecon: No such file or directory. 01:16:12,227 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man3x restorecon: No such file or directory. 01:16:12,227 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man4 restorecon: No such file or directory. 01:16:12,228 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man4x restorecon: No such file or directory. 01:16:12,229 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man5 restorecon: No such file or directory. 01:16:12,229 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man5x restorecon: No such file or directory. 01:16:12,230 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man6 restorecon: No such file or directory. 01:16:12,230 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man6x restorecon: No such file or directory. 01:16:12,231 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man7 restorecon: No such file or directory. 01:16:12,231 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man7x restorecon: No such file or directory. 01:16:12,232 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man8 restorecon: No such file or directory. 01:16:12,232 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man8x restorecon: No such file or directory. 01:16:12,233 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man9 restorecon: No such file or directory. 01:16:12,233 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/man9x restorecon: No such file or directory. 01:16:12,234 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/anp/mann restorecon: No such file or directory. 01:16:12,235 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man0p restorecon: No such file or directory. 01:16:12,235 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man1 restorecon: No such file or directory. 01:16:12,236 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man1p restorecon: No such file or directory. 01:16:12,236 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man1x restorecon: No such file or directory. 01:16:12,237 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man2 restorecon: No such file or directory. 01:16:12,237 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man2x restorecon: No such file or directory. 01:16:12,238 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man3 restorecon: No such file or directory. 01:16:12,238 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man3p restorecon: No such file or directory. 01:16:12,239 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man3x restorecon: No such file or directory. 01:16:12,239 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man4 restorecon: No such file or directory. 01:16:12,240 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man4x restorecon: No such file or directory. 01:16:12,241 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man5 restorecon: No such file or directory. 01:16:12,241 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man5x restorecon: No such file or directory. 01:16:12,242 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man6 restorecon: No such file or directory. 01:16:12,242 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man6x restorecon: No such file or directory. 01:16:12,243 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man7 restorecon: No such file or directory. 01:16:12,243 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man7x restorecon: No such file or directory. 01:16:12,244 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man8 restorecon: No such file or directory. 01:16:12,244 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man8x restorecon: No such file or directory. 01:16:12,245 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man9 restorecon: No such file or directory. 01:16:12,246 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/man9x restorecon: No such file or directory. 01:16:12,246 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/apa/mann restorecon: No such file or directory. 01:16:12,247 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man0p restorecon: No such file or directory. 01:16:12,247 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man1 restorecon: No such file or directory. 01:16:12,248 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man1p restorecon: No such file or directory. 01:16:12,248 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man1x restorecon: No such file or directory. 01:16:12,249 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man2 restorecon: No such file or directory. 01:16:12,249 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man2x restorecon: No such file or directory. 01:16:12,250 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man3 restorecon: No such file or directory. 01:16:12,250 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man3p restorecon: No such file or directory. 01:16:12,251 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man3x restorecon: No such file or directory. 01:16:12,251 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man4 restorecon: No such file or directory. 01:16:12,252 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man4x restorecon: No such file or directory. 01:16:12,253 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man5 restorecon: No such file or directory. 01:16:12,253 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man5x restorecon: No such file or directory. 01:16:12,254 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man6 restorecon: No such file or directory. 01:16:12,254 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man6x restorecon: No such file or directory. 01:16:12,255 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man7 restorecon: No such file or directory. 01:16:12,255 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man7x restorecon: No such file or directory. 01:16:12,256 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man8 restorecon: No such file or directory. 01:16:12,256 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man8x restorecon: No such file or directory. 01:16:12,257 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man9 restorecon: No such file or directory. 01:16:12,258 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/man9x restorecon: No such file or directory. 01:16:12,258 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar/mann restorecon: No such file or directory. 01:16:12,259 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man0p restorecon: No such file or directory. 01:16:12,259 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man1 restorecon: No such file or directory. 01:16:12,260 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man1p restorecon: No such file or directory. 01:16:12,260 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man1x restorecon: No such file or directory. 01:16:12,261 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man2 restorecon: No such file or directory. 01:16:12,261 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man2x restorecon: No such file or directory. 01:16:12,262 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man3 restorecon: No such file or directory. 01:16:12,262 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man3p restorecon: No such file or directory. 01:16:12,263 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man3x restorecon: No such file or directory. 01:16:12,263 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man4 restorecon: No such file or directory. 01:16:12,264 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man4x restorecon: No such file or directory. 01:16:12,265 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man5 restorecon: No such file or directory. 01:16:12,265 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man5x restorecon: No such file or directory. 01:16:12,266 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man6 restorecon: No such file or directory. 01:16:12,266 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man6x restorecon: No such file or directory. 01:16:12,267 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man7 restorecon: No such file or directory. 01:16:12,267 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man7x restorecon: No such file or directory. 01:16:12,268 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man8 restorecon: No such file or directory. 01:16:12,268 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man8x restorecon: No such file or directory. 01:16:12,269 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man9 restorecon: No such file or directory. 01:16:12,269 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/man9x restorecon: No such file or directory. 01:16:12,270 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_DZ/mann restorecon: No such file or directory. 01:16:12,271 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man0p restorecon: No such file or directory. 01:16:12,271 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man1 restorecon: No such file or directory. 01:16:12,272 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man1p restorecon: No such file or directory. 01:16:12,272 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man1x restorecon: No such file or directory. 01:16:12,273 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man2 restorecon: No such file or directory. 01:16:12,273 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man2x restorecon: No such file or directory. 01:16:12,274 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man3 restorecon: No such file or directory. 01:16:12,274 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man3p restorecon: No such file or directory. 01:16:12,275 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man3x restorecon: No such file or directory. 01:16:12,276 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man4 restorecon: No such file or directory. 01:16:12,276 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man4x restorecon: No such file or directory. 01:16:12,277 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man5 restorecon: No such file or directory. 01:16:12,277 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man5x restorecon: No such file or directory. 01:16:12,278 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man6 restorecon: No such file or directory. 01:16:12,278 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man6x restorecon: No such file or directory. 01:16:12,279 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man7 restorecon: No such file or directory. 01:16:12,279 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man7x restorecon: No such file or directory. 01:16:12,280 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man8 restorecon: No such file or directory. 01:16:12,280 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man8x restorecon: No such file or directory. 01:16:12,281 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man9 restorecon: No such file or directory. 01:16:12,281 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/man9x restorecon: No such file or directory. 01:16:12,282 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ar_SY/mann restorecon: No such file or directory. 01:16:12,283 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man0p restorecon: No such file or directory. 01:16:12,283 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man1 restorecon: No such file or directory. 01:16:12,284 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man1p restorecon: No such file or directory. 01:16:12,284 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man1x restorecon: No such file or directory. 01:16:12,285 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man2 restorecon: No such file or directory. 01:16:12,285 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man2x restorecon: No such file or directory. 01:16:12,286 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man3 restorecon: No such file or directory. 01:16:12,286 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man3p restorecon: No such file or directory. 01:16:12,287 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man3x restorecon: No such file or directory. 01:16:12,288 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man4 restorecon: No such file or directory. 01:16:12,288 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man4x restorecon: No such file or directory. 01:16:12,289 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man5 restorecon: No such file or directory. 01:16:12,289 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man5x restorecon: No such file or directory. 01:16:12,290 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man6 restorecon: No such file or directory. 01:16:12,290 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man6x restorecon: No such file or directory. 01:16:12,291 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man7 restorecon: No such file or directory. 01:16:12,291 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man7x restorecon: No such file or directory. 01:16:12,292 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man8 restorecon: No such file or directory. 01:16:12,292 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man8x restorecon: No such file or directory. 01:16:12,293 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man9 restorecon: No such file or directory. 01:16:12,294 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/man9x restorecon: No such file or directory. 01:16:12,294 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arc/mann restorecon: No such file or directory. 01:16:12,295 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man0p restorecon: No such file or directory. 01:16:12,295 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man1 restorecon: No such file or directory. 01:16:12,296 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man1p restorecon: No such file or directory. 01:16:12,296 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man1x restorecon: No such file or directory. 01:16:12,297 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man2 restorecon: No such file or directory. 01:16:12,297 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man2x restorecon: No such file or directory. 01:16:12,298 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man3 restorecon: No such file or directory. 01:16:12,298 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man3p restorecon: No such file or directory. 01:16:12,299 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man3x restorecon: No such file or directory. 01:16:12,300 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man4 restorecon: No such file or directory. 01:16:12,300 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man4x restorecon: No such file or directory. 01:16:12,301 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man5 restorecon: No such file or directory. 01:16:12,301 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man5x restorecon: No such file or directory. 01:16:12,302 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man6 restorecon: No such file or directory. 01:16:12,302 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man6x restorecon: No such file or directory. 01:16:12,303 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man7 restorecon: No such file or directory. 01:16:12,303 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man7x restorecon: No such file or directory. 01:16:12,304 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man8 restorecon: No such file or directory. 01:16:12,304 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man8x restorecon: No such file or directory. 01:16:12,305 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man9 restorecon: No such file or directory. 01:16:12,306 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/man9x restorecon: No such file or directory. 01:16:12,306 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arn/mann restorecon: No such file or directory. 01:16:12,307 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man0p restorecon: No such file or directory. 01:16:12,307 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man1 restorecon: No such file or directory. 01:16:12,308 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man1p restorecon: No such file or directory. 01:16:12,308 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man1x restorecon: No such file or directory. 01:16:12,309 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man2 restorecon: No such file or directory. 01:16:12,309 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man2x restorecon: No such file or directory. 01:16:12,310 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man3 restorecon: No such file or directory. 01:16:12,310 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man3p restorecon: No such file or directory. 01:16:12,311 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man3x restorecon: No such file or directory. 01:16:12,311 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man4 restorecon: No such file or directory. 01:16:12,312 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man4x restorecon: No such file or directory. 01:16:12,313 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man5 restorecon: No such file or directory. 01:16:12,313 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man5x restorecon: No such file or directory. 01:16:12,314 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man6 restorecon: No such file or directory. 01:16:12,314 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man6x restorecon: No such file or directory. 01:16:12,315 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man7 restorecon: No such file or directory. 01:16:12,315 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man7x restorecon: No such file or directory. 01:16:12,316 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man8 restorecon: No such file or directory. 01:16:12,316 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man8x restorecon: No such file or directory. 01:16:12,317 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man9 restorecon: No such file or directory. 01:16:12,317 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/man9x restorecon: No such file or directory. 01:16:12,318 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arp/mann restorecon: No such file or directory. 01:16:12,319 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man0p restorecon: No such file or directory. 01:16:12,319 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man1 restorecon: No such file or directory. 01:16:12,320 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man1p restorecon: No such file or directory. 01:16:12,320 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man1x restorecon: No such file or directory. 01:16:12,321 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man2 restorecon: No such file or directory. 01:16:12,321 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man2x restorecon: No such file or directory. 01:16:12,322 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man3 restorecon: No such file or directory. 01:16:12,322 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man3p restorecon: No such file or directory. 01:16:12,323 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man3x restorecon: No such file or directory. 01:16:12,323 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man4 restorecon: No such file or directory. 01:16:12,324 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man4x restorecon: No such file or directory. 01:16:12,325 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man5 restorecon: No such file or directory. 01:16:12,325 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man5x restorecon: No such file or directory. 01:16:12,326 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man6 restorecon: No such file or directory. 01:16:12,326 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man6x restorecon: No such file or directory. 01:16:12,327 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man7 restorecon: No such file or directory. 01:16:12,327 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man7x restorecon: No such file or directory. 01:16:12,328 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man8 restorecon: No such file or directory. 01:16:12,328 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man8x restorecon: No such file or directory. 01:16:12,329 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man9 restorecon: No such file or directory. 01:16:12,329 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/man9x restorecon: No such file or directory. 01:16:12,330 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/art/mann restorecon: No such file or directory. 01:16:12,331 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man0p restorecon: No such file or directory. 01:16:12,331 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man1 restorecon: No such file or directory. 01:16:12,332 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man1p restorecon: No such file or directory. 01:16:12,332 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man1x restorecon: No such file or directory. 01:16:12,333 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man2 restorecon: No such file or directory. 01:16:12,333 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man2x restorecon: No such file or directory. 01:16:12,334 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man3 restorecon: No such file or directory. 01:16:12,334 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man3p restorecon: No such file or directory. 01:16:12,335 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man3x restorecon: No such file or directory. 01:16:12,335 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man4 restorecon: No such file or directory. 01:16:12,336 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man4x restorecon: No such file or directory. 01:16:12,337 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man5 restorecon: No such file or directory. 01:16:12,337 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man5x restorecon: No such file or directory. 01:16:12,338 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man6 restorecon: No such file or directory. 01:16:12,338 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man6x restorecon: No such file or directory. 01:16:12,339 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man7 restorecon: No such file or directory. 01:16:12,339 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man7x restorecon: No such file or directory. 01:16:12,340 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man8 restorecon: No such file or directory. 01:16:12,340 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man8x restorecon: No such file or directory. 01:16:12,341 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man9 restorecon: No such file or directory. 01:16:12,341 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/man9x restorecon: No such file or directory. 01:16:12,342 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/arw/mann restorecon: No such file or directory. 01:16:12,343 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man0p restorecon: No such file or directory. 01:16:12,343 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man1 restorecon: No such file or directory. 01:16:12,344 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man1p restorecon: No such file or directory. 01:16:12,344 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man1x restorecon: No such file or directory. 01:16:12,345 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man2 restorecon: No such file or directory. 01:16:12,345 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man2x restorecon: No such file or directory. 01:16:12,346 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man3 restorecon: No such file or directory. 01:16:12,346 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man3p restorecon: No such file or directory. 01:16:12,347 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man3x restorecon: No such file or directory. 01:16:12,347 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man4 restorecon: No such file or directory. 01:16:12,348 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man4x restorecon: No such file or directory. 01:16:12,349 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man5 restorecon: No such file or directory. 01:16:12,349 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man5x restorecon: No such file or directory. 01:16:12,350 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man6 restorecon: No such file or directory. 01:16:12,350 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man6x restorecon: No such file or directory. 01:16:12,351 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man7 restorecon: No such file or directory. 01:16:12,351 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man7x restorecon: No such file or directory. 01:16:12,352 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man8 restorecon: No such file or directory. 01:16:12,352 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man8x restorecon: No such file or directory. 01:16:12,353 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man9 restorecon: No such file or directory. 01:16:12,353 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/man9x restorecon: No such file or directory. 01:16:12,354 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/as/mann restorecon: No such file or directory. 01:16:12,354 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man0p restorecon: No such file or directory. 01:16:12,355 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man1 restorecon: No such file or directory. 01:16:12,356 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man1p restorecon: No such file or directory. 01:16:12,356 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man1x restorecon: No such file or directory. 01:16:12,357 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man2 restorecon: No such file or directory. 01:16:12,357 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man2x restorecon: No such file or directory. 01:16:12,358 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man3 restorecon: No such file or directory. 01:16:12,358 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man3p restorecon: No such file or directory. 01:16:12,359 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man3x restorecon: No such file or directory. 01:16:12,359 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man4 restorecon: No such file or directory. 01:16:12,360 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man4x restorecon: No such file or directory. 01:16:12,360 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man5 restorecon: No such file or directory. 01:16:12,361 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man5x restorecon: No such file or directory. 01:16:12,361 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man6 restorecon: No such file or directory. 01:16:12,362 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man6x restorecon: No such file or directory. 01:16:12,362 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man7 restorecon: No such file or directory. 01:16:12,363 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man7x restorecon: No such file or directory. 01:16:12,363 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man8 restorecon: No such file or directory. 01:16:12,364 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man8x restorecon: No such file or directory. 01:16:12,364 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man9 restorecon: No such file or directory. 01:16:12,365 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/man9x restorecon: No such file or directory. 01:16:12,366 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ast/mann restorecon: No such file or directory. 01:16:12,366 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man0p restorecon: No such file or directory. 01:16:12,367 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man1 restorecon: No such file or directory. 01:16:12,367 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man1p restorecon: No such file or directory. 01:16:12,368 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man1x restorecon: No such file or directory. 01:16:12,368 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man2 restorecon: No such file or directory. 01:16:12,369 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man2x restorecon: No such file or d Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10558/12000 irectory. 01:16:12,369 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man3 restorecon: No such file or directory. 01:16:12,370 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man3p restorecon: No such file or directory. 01:16:12,370 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man3x restorecon: No such file or directory. 01:16:12,371 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man4 restorecon: No such file or directory. 01:16:12,371 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man4x restorecon: No such file or directory. 01:16:12,372 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man5 restorecon: No such file or directory. 01:16:12,372 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man5x restorecon: No such file or directory. 01:16:12,373 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man6 restorecon: No such file or directory. 01:16:12,373 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man6x restorecon: No such file or directory. 01:16:12,374 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man7 restorecon: No such file or directory. 01:16:12,374 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man7x restorecon: No such file or directory. 01:16:12,375 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man8 restorecon: No such file or directory. 01:16:12,375 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man8x restorecon: No such file or directory. 01:16:12,376 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man9 restorecon: No such file or directory. 01:16:12,377 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/man9x restorecon: No such file or directory. 01:16:12,377 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ath/mann restorecon: No such file or directory. 01:16:12,378 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man0p restorecon: No such file or directory. 01:16:12,378 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man1 restorecon: No such file or directory. 01:16:12,379 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man1p restorecon: No such file or directory. 01:16:12,379 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man1x restorecon: No such file or directory. 01:16:12,380 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man2 restorecon: No such file or directory. 01:16:12,380 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man2x restorecon: No such file or directory. 01:16:12,381 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man3 restorecon: No such file or directory. 01:16:12,381 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man3p restorecon: No such file or directory. 01:16:12,382 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man3x restorecon: No such file or directory. 01:16:12,382 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man4 restorecon: No such file or directory. 01:16:12,383 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man4x restorecon: No such file or directory. 01:16:12,383 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man5 restorecon: No such file or directory. 01:16:12,384 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man5x restorecon: No such file or directory. 01:16:12,384 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man6 restorecon: No such file or directory. 01:16:12,385 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man6x restorecon: No such file or directory. 01:16:12,385 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man7 restorecon: No such file or directory. 01:16:12,386 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man7x restorecon: No such file or directory. 01:16:12,387 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man8 restorecon: No such file or directory. 01:16:12,387 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man8x restorecon: No such file or directory. 01:16:12,388 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man9 restorecon: No such file or directory. 01:16:12,388 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/man9x restorecon: No such file or directory. 01:16:12,389 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aus/mann restorecon: No such file or directory. 01:16:12,389 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man0p restorecon: No such file or directory. 01:16:12,390 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man1 restorecon: No such file or directory. 01:16:12,390 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man1p restorecon: No such file or directory. 01:16:12,391 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man1x restorecon: No such file or directory. 01:16:12,391 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man2 restorecon: No such file or directory. 01:16:12,392 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man2x restorecon: No such file or directory. 01:16:12,392 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man3 restorecon: No such file or directory. 01:16:12,393 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man3p restorecon: No such file or directory. 01:16:12,393 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man3x restorecon: No such file or directory. 01:16:12,394 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man4 restorecon: No such file or directory. 01:16:12,394 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man4x restorecon: No such file or directory. 01:16:12,395 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man5 restorecon: No such file or directory. 01:16:12,395 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man5x restorecon: No such file or directory. 01:16:12,396 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man6 restorecon: No such file or directory. 01:16:12,397 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man6x restorecon: No such file or directory. 01:16:12,397 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man7 restorecon: No such file or directory. 01:16:12,398 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man7x restorecon: No such file or directory. 01:16:12,398 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man8 restorecon: No such file or directory. 01:16:12,399 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man8x restorecon: No such file or directory. 01:16:12,399 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man9 restorecon: No such file or directory. 01:16:12,400 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/man9x restorecon: No such file or directory. 01:16:12,400 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/av/mann restorecon: No such file or directory. 01:16:12,401 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man0p restorecon: No such file or directory. 01:16:12,401 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man1 restorecon: No such file or directory. 01:16:12,402 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man1p restorecon: No such file or directory. 01:16:12,402 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man1x restorecon: No such file or directory. 01:16:12,403 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man2 restorecon: No such file or directory. 01:16:12,403 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man2x restorecon: No such file or directory. 01:16:12,404 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man3 restorecon: No such file or directory. 01:16:12,405 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man3p restorecon: No such file or directory. 01:16:12,405 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man3x restorecon: No such file or directory. 01:16:12,406 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man4 restorecon: No such file or directory. 01:16:12,406 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man4x restorecon: No such file or directory. 01:16:12,407 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man5 restorecon: No such file or directory. 01:16:12,407 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man5x restorecon: No such file or directory. 01:16:12,408 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man6 restorecon: No such file or directory. 01:16:12,408 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man6x restorecon: No such file or directory. 01:16:12,409 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man7 restorecon: No such file or directory. 01:16:12,410 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man7x restorecon: No such file or directory. 01:16:12,410 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man8 restorecon: No such file or directory. 01:16:12,411 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man8x restorecon: No such file or directory. 01:16:12,411 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man9 restorecon: No such file or directory. 01:16:12,412 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/man9x restorecon: No such file or directory. 01:16:12,412 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/awa/mann restorecon: No such file or directory. 01:16:12,413 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man0p restorecon: No such file or directory. 01:16:12,413 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man1 restorecon: No such file or directory. 01:16:12,414 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man1p restorecon: No such file or directory. 01:16:12,414 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man1x restorecon: No such file or directory. 01:16:12,415 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man2 restorecon: No such file or directory. 01:16:12,416 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man2x restorecon: No such file or directory. 01:16:12,416 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man3 restorecon: No such file or directory. 01:16:12,417 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man3p restorecon: No such file or directory. 01:16:12,417 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man3x restorecon: No such file or directory. 01:16:12,418 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man4 restorecon: No such file or directory. 01:16:12,418 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man4x restorecon: No such file or directory. 01:16:12,419 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man5 restorecon: No such file or directory. 01:16:12,419 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man5x restorecon: No such file or directory. 01:16:12,420 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man6 restorecon: No such file or directory. 01:16:12,420 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man6x restorecon: No such file or directory. 01:16:12,421 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man7 restorecon: No such file or directory. 01:16:12,422 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man7x restorecon: No such file or directory. 01:16:12,422 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man8 restorecon: No such file or directory. 01:16:12,423 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man8x restorecon: No such file or directory. 01:16:12,423 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man9 restorecon: No such file or directory. 01:16:12,424 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/man9x restorecon: No such file or directory. 01:16:12,424 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ay/mann restorecon: No such file or directory. 01:16:12,425 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man0p restorecon: No such file or directory. 01:16:12,425 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man1 restorecon: No such file or directory. 01:16:12,426 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man1p restorecon: No such file or directory. 01:16:12,427 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man1x restorecon: No such file or directory. 01:16:12,427 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man2 restorecon: No such file or directory. 01:16:12,428 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man2x restorecon: No such file or directory. 01:16:12,428 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man3 restorecon: No such file or directory. 01:16:12,429 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man3p restorecon: No such file or directory. 01:16:12,429 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man3x restorecon: No such file or directory. 01:16:12,430 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man4 restorecon: No such file or directory. 01:16:12,430 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man4x restorecon: No such file or directory. 01:16:12,431 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man5 restorecon: No such file or directory. 01:16:12,431 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man5x restorecon: No such file or directory. 01:16:12,432 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man6 restorecon: No such file or directory. 01:16:12,432 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man6x restorecon: No such file or directory. 01:16:12,433 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man7 restorecon: No such file or directory. 01:16:12,434 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man7x restorecon: No such file or directory. 01:16:12,434 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man8 restorecon: No such file or directory. 01:16:12,435 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man8x restorecon: No such file or directory. 01:16:12,435 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man9 restorecon: No such file or directory. 01:16:12,436 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/man9x restorecon: No such file or directory. 01:16:12,436 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ayc/mann restorecon: No such file or directory. 01:16:12,437 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man0p restorecon: No such file or directory. 01:16:12,437 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man1 restorecon: No such file or directory. 01:16:12,438 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man1p restorecon: No such file or directory. 01:16:12,438 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man1x restorecon: No such file or directory. 01:16:12,439 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man2 restorecon: No such file or directory. 01:16:12,440 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man2x restorecon: No such file or directory. 01:16:12,440 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man3 restorecon: No such file or directory. 01:16:12,441 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man3p restorecon: No such file or directory. 01:16:12,441 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man3x restorecon: No such file or directory. 01:16:12,442 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man4 restorecon: No such file or directory. 01:16:12,442 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man4x restorecon: No such file or directory. 01:16:12,443 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man5 restorecon: No such file or directory. 01:16:12,443 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man5x restorecon: No such file or directory. 01:16:12,444 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man6 restorecon: No such file or directory. 01:16:12,444 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man6x restorecon: No such file or directory. 01:16:12,445 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man7 restorecon: No such file or directory. 01:16:12,445 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man7x restorecon: No such file or directory. 01:16:12,446 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man8 restorecon: No such file or directory. 01:16:12,446 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man8x restorecon: No such file or directory. 01:16:12,447 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man9 restorecon: No such file or directory. 01:16:12,447 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/man9x restorecon: No such file or directory. 01:16:12,448 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/aym/mann restorecon: No such file or directory. 01:16:12,449 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man0p restorecon: No such file or directory. 01:16:12,449 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man1 restorecon: No such file or directory. 01:16:12,450 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man1p restorecon: No such file or directory. 01:16:12,450 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man1x restorecon: No such file or directory. 01:16:12,451 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man2 restorecon: No such file or directory. 01:16:12,452 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man2x restorecon: No such file or directory. 01:16:12,452 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man3 restorecon: No such file or directory. 01:16:12,452 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man3p restorecon: No such file or directory. 01:16:12,453 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man3x restorecon: No such file or directory. 01:16:12,454 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man4 restorecon: No such file or directory. 01:16:12,454 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man4x restorecon: No such file or directory. 01:16:12,455 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man5 restorecon: No such file or directory. 01:16:12,455 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man5x restorecon: No such file or directory. 01:16:12,456 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man6 restorecon: No such file or directory. 01:16:12,456 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man6x restorecon: No such file or directory. 01:16:12,457 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man7 restorecon: No such file or directory. 01:16:12,457 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man7x restorecon: No such file or directory. 01:16:12,458 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man8 restorecon: No such file or directory. 01:16:12,458 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man8x restorecon: No such file or directory. 01:16:12,459 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man9 restorecon: No such file or directory. 01:16:12,459 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/man9x restorecon: No such file or directory. 01:16:12,460 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az/mann restorecon: No such file or directory. 01:16:12,460 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man0p restorecon: No such file or directory. 01:16:12,461 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man1 restorecon: No such file or directory. 01:16:12,462 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man1p restorecon: No such file or directory. 01:16:12,462 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man1x restorecon: No such file or directory. 01:16:12,463 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man2 restorecon: No such file or directory. 01:16:12,463 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man2x restorecon: No such file or directory. 01:16:12,464 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man3 restorecon: No such file or directory. 01:16:12,464 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man3p restorecon: No such file or directory. 01:16:12,465 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man3x restorecon: No such file or directory. 01:16:12,465 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man4 restorecon: No such file or directory. 01:16:12,466 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man4x restorecon: No such file or directory. 01:16:12,467 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man5 restorecon: No such file or directory. 01:16:12,467 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man5x restorecon: No such file or directory. 01:16:12,467 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man6 restorecon: No such file or directory. 01:16:12,468 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man6x restorecon: No such file or directory. 01:16:12,468 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man7 restorecon: No such file or directory. 01:16:12,469 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man7x restorecon: No such file or directory. 01:16:12,470 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man8 restorecon: No such file or directory. 01:16:12,470 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man8x restorecon: No such file or directory. 01:16:12,470 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man9 restorecon: No such file or directory. 01:16:12,471 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/man9x restorecon: No such file or directory. 01:16:12,472 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_AZ/mann restorecon: No such file or directory. 01:16:12,472 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man0p restorecon: No such file or directory. 01:16:12,473 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man1 restorecon: No such file or directory. 01:16:12,474 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man1p restorecon: No such file or directory. 01:16:12,474 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man1x restorecon: No such file or directory. 01:16:12,474 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man2 restorecon: No such file or directory. 01:16:12,475 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man2x restorecon: No such file or directory. 01:16:12,475 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man3 restorecon: No such file or directory. 01:16:12,476 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man3p restorecon: No such file or directory. 01:16:12,476 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man3x restorecon: No such file or directory. 01:16:12,477 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man4 restorecon: No such file or directory. 01:16:12,477 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man4x restorecon: No such file or directory. 01:16:12,478 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man5 restorecon: No such file or directory. 01:16:12,479 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man5x restorecon: No such file or directory. 01:16:12,479 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man6 restorecon: No such file or directory. 01:16:12,479 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man6x restorecon: No such file or directory. 01:16:12,480 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man7 restorecon: No such file or directory. 01:16:12,481 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man7x restorecon: No such file or directory. 01:16:12,481 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man8 restorecon: No such file or directory. 01:16:12,482 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man8x restorecon: No such file or directory. 01:16:12,482 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man9 restorecon: No such file or directory. 01:16:12,483 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/man9x restorecon: No such file or directory. 01:16:12,483 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/az_IR/mann restorecon: No such file or directory. 01:16:12,484 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man0p restorecon: No such file or directory. 01:16:12,484 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man1 restorecon: No such file or directory. 01:16:12,485 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man1p restorecon: No such file or directory. 01:16:12,485 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man1x restorecon: No such file or directory. 01:16:12,486 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man2 restorecon: No such file or directory. 01:16:12,486 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man2x restorecon: No such file or directory. 01:16:12,487 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man3 restorecon: No such file or directory. 01:16:12,487 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man3p restorecon: No such file or directory. 01:16:12,488 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man3x restorecon: No such file or directory. 01:16:12,488 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man4 restorecon: No such file or directory. 01:16:12,489 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man4x restorecon: No such file or directory. 01:16:12,490 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man5 restorecon: No such file or directory. 01:16:12,490 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man5x restorecon: No such file or directory. 01:16:12,491 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man6 restorecon: No such file or directory. 01:16:12,491 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man6x restorecon: No such file or directory. 01:16:12,492 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man7 restorecon: No such file or directory. 01:16:12,492 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man7x restorecon: No such file or directory. 01:16:12,493 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man8 restorecon: No such file or directory. 01:16:12,493 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man8x restorecon: No such file or directory. 01:16:12,494 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man9 restorecon: No such file or directory. 01:16:12,494 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/man9x restorecon: No such file or directory. 01:16:12,495 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ba/mann restorecon: No such file or directory. 01:16:12,495 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man0p restorecon: No such file or directory. 01:16:12,496 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man1 restorecon: No such file or directory. 01:16:12,496 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man1p restorecon: No such file or directory. 01:16:12,497 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man1x restorecon: No such file or directory. 01:16:12,497 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man2 restorecon: No such file or directory. 01:16:12,498 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man2x restorecon: No such file or directory. 01:16:12,499 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man3 restorecon: No such file or directory. 01:16:12,499 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man3p restorecon: No such file or directory. 01:16:12,500 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man3x restorecon: No such file or directory. 01:16:12,500 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man4 restorecon: No such file or directory. 01:16:12,501 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man4x restorecon: No such file or directory. 01:16:12,501 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man5 restorecon: No such file or directory. 01:16:12,502 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man5x restorecon: No such file or directory. 01:16:12,502 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man6 restorecon: No such file or directory. 01:16:12,503 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man6x restorecon: No such file or directory. 01:16:12,503 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man7 restorecon: No such file or directory. 01:16:12,504 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man7x restorecon: No such file or directory. 01:16:12,504 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man8 restorecon: No such file or directory. 01:16:12,505 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man8x restorecon: No such file or directory. 01:16:12,505 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man9 restorecon: No such file or directory. 01:16:12,506 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/man9x restorecon: No such file or directory. 01:16:12,506 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bad/mann restorecon: No such file or directory. 01:16:12,507 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man0p restorecon: No such file or directory. 01:16:12,508 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man1 restorecon: No such file or directory. 01:16:12,508 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man1p restorecon: No such file or directory. 01:16:12,509 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man1x restorecon: No such file or directory. 01:16:12,509 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man2 restorecon: No such file or directory. 01:16:12,510 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man2x restorecon: No such file or directory. 01:16:12,510 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man3 restorecon: No such file or directory. 01:16:12,511 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man3p restorecon: No such file or directory. 01:16:12,511 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man3x restorecon: No such file or directory. 01:16:12,512 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man4 restorecon: No such file or directory. 01:16:12,512 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man4x restorecon: No such file or directory. 01:16:12,513 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man5 restorecon: No such file or directory. 01:16:12,513 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man5x restorecon: No such file or directory. 01:16:12,514 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man6 restorecon: No such file or directory. 01:16:12,514 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man6x restorecon: No such file or directory. 01:16:12,515 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man7 restorecon: No such file or directory. 01:16:12,515 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man7x restorecon: No such file or directory. 01:16:12,516 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man8 restorecon: No such file or directory. 01:16:12,517 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man8x restorecon: No such file or directory. 01:16:12,517 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man9 restorecon: No such file or directory. 01:16:12,518 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/man9x restorecon: No such file or directory. 01:16:12,518 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bai/mann restorecon: No such file or directory. 01:16:12,519 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man0p restorecon: No such file or directory. 01:16:12,519 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man1 restorecon: No such file or directory. 01:16:12,520 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man1p restorecon: No such file or directory. 01:16:12,520 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man1x restorecon: No such file or directory. 01:16:12,521 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man2 restorecon: No such file or directory. 01:16:12,521 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man2x restorecon: No such file or directory. 01:16:12,522 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man3 restorecon: No such file or directory. 01:16:12,522 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man3p restorecon: No such file or directory. 01:16:12,523 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man3x restorecon: No such file or directory. 01:16:12,523 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man4 restorecon: No such file or directory. 01:16:12,524 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man4x restorecon: No such file or directory. 01:16:12,524 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man5 restorecon: No such file or directory. 01:16:12,525 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man5x restorecon: No such file or directory. 01:16:12,526 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man6 restorecon: No such file or directory. 01:16:12,526 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man6x restorecon: No such file or directory. 01:16:12,527 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man7 restorecon: No such file or directory. 01:16:12,527 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man7x restorecon: No such file or directory. 01:16:12,528 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man8 restorecon: No such file or directory. 01:16:12,528 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man8x restorecon: No such file or directory. 01:16:12,529 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man9 restorecon: No such file or directory. 01:16:12,529 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/man9x restorecon: No such file or directory. 01:16:12,530 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bal/mann restorecon: No such file or directory. 01:16:12,530 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man0p restorecon: No such file or directory. 01:16:12,531 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man1 restorecon: No such file or directory. 01:16:12,531 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man1p restorecon: No such file or directory. 01:16:12,532 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man1x restorecon: No such file or directory. 01:16:12,532 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man2 restorecon: No such file or directory. 01:16:12,533 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man2x restorecon: No such file or directory. 01:16:12,533 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man3 restorecon: No such file or directory. 01:16:12,534 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man3p restorecon: No such file or directory. 01:16:12,534 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man3x restorecon: No such file or directory. 01:16:12,535 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man4 restorecon: No such file or directory. 01:16:12,536 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man4x restorecon: No such file or directory. 01:16:12,536 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man5 restorecon: No such file or directory. 01:16:12,537 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man5x restorecon: No such file or directory. 01:16:12,537 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man6 restorecon: No such file or directory. 01:16:12,538 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man6x restorecon: No such file or directory. 01:16:12,538 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man7 restorecon: No such file or directory. 01:16:12,539 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man7x restorecon: No such file or directory. 01:16:12,539 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man8 restorecon: No such file or directory. 01:16:12,540 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man8x restorecon: No such file or directory. 01:16:12,540 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man9 restorecon: No such file or directory. 01:16:12,541 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/man9x restorecon: No such file or directory. 01:16:12,541 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/ban/mann restorecon: No such file or directory. 01:16:12,542 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man0p restorecon: No such file or directory. 01:16:12,542 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man1 restorecon: No such file or directory. 01:16:12,543 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man1p restorecon: No such file or directory. 01:16:12,543 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man1x restorecon: No such file or directory. 01:16:12,544 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man2 restorecon: No such file or directory. 01:16:12,545 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man2x restorecon: No such file or directory. 01:16:12,545 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man3 restorecon: No such file or directory. 01:16:12,546 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man3p restorecon: No such file or directory. 01:16:12,546 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man3x restorecon: No such file or directory. 01:16:12,547 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man4 restorecon: No such file or directory. 01:16:12,547 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man4x restorecon: No such file or directory. 01:16:12,548 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man5 restorecon: No such file or directory. 01:16:12,548 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man5x restorecon: No such file or directory. 01:16:12,549 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man6 restorecon: No such file or directory. 01:16:12,549 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man6x restorecon: No such file or directory. 01:16:12,550 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man7 restorecon: No such file or directory. 01:16:12,550 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man7x restorecon: No such file or directory. 01:16:12,551 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man8 restorecon: No such file or directory. 01:16:12,551 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man8x restorecon: No such file or directory. 01:16:12,552 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man9 restorecon: No such file or directory. 01:16:12,552 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/man9x restorecon: No such file or directory. 01:16:12,553 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bas/mann restorecon: No such file or directory. 01:16:12,553 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man0p restorecon: No such file or directory. 01:16:12,554 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man1 restorecon: No such file or directory. 01:16:12,555 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man1p restorecon: No such file or directory. 01:16:12,555 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man1x restorecon: No such file or directory. 01:16:12,556 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man2 restorecon: No such file or directory. 01:16:12,556 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man2x restorecon: No such file or directory. 01:16:12,557 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man3 restorecon: No such file or directory. 01:16:12,557 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man3p restorecon: No such file or directory. 01:16:12,558 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man3x restorecon: No such file or directory. 01:16:12,558 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man4 restorecon: No such file or directory. 01:16:12,559 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man4x restorecon: No such file or directory. 01:16:12,559 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man5 restorecon: No such file or directory. 01:16:12,560 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man5x restorecon: No such file or directory. 01:16:12,560 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man6 restorecon: No such file or directory. 01:16:12,561 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man6x restorecon: No such file or directory. 01:16:12,561 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man7 restorecon: No such file or directory. 01:16:12,562 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man7x restorecon: No such file or directory. 01:16:12,563 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man8 restorecon: No such file or directory. 01:16:12,563 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man8x restorecon: No such file or directory. 01:16:12,564 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man9 restorecon: No such file or directory. 01:16:12,564 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/man9x restorecon: No such file or directory. 01:16:12,565 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/bat/mann restorecon: No such file or directory. 01:16:12,565 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man0p restorecon: No such file or directory. 01:16:12,566 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man1 restorecon: No such file or directory. 01:16:12,566 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man1p restorecon: No such file or directory. 01:16:12,567 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man1x restorecon: No such file or directory. 01:16:12,567 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man2 restorecon: No such file or directory. 01:16:12,568 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man2x restorecon: No such file or directory. 01:16:12,568 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man3 restorecon: No such file or directory. 01:16:12,569 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man3p restorecon: No such file or directory. 01:16:12,569 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man3x restorecon: No such file or directory. 01:16:12,570 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man4 restorecon: No such file or directory. 01:16:12,570 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man4x restorecon: No such file or directory. 01:16:12,571 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man5 restorecon: No such file or directory. 01:16:12,572 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man5x restorecon: No such file or directory. 01:16:12,572 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man6 restorecon: No such file or directory. 01:16:12,573 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man6x restorecon: No such file or directory. 01:16:12,573 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man7 restorecon: No such file or directory. 01:16:12,574 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man7x restorecon: No such file or directory. 01:16:12,574 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man8 restorecon: No such file or directory. 01:16:12,575 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man8x restorecon: No such file or directory. 01:16:12,575 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man9 restorecon: No such file or directory. 01:16:12,576 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/man9x restorecon: No such file or directory. 01:16:12,576 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be/mann restorecon: No such file or directory. 01:16:12,577 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man0p restorecon: No such file or directory. 01:16:12,577 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man1 restorecon: No such file or directory. 01:16:12,578 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man1p restorecon: No such file or directory. 01:16:12,578 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man1x restorecon: No such file or directory. 01:16:12,579 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man2 restorecon: No such file or directory. 01:16:12,579 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man2x restorecon: No such file or directory. 01:16:12,580 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man3 restorecon: No such file or directory. 01:16:12,581 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man3p restorecon: No such file or directory. 01:16:12,581 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man3x restorecon: No such file or directory. 01:16:12,582 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man4 restorecon: No such file or directory. 01:16:12,582 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man4x restorecon: No such file or directory. 01:16:12,583 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man5 restorecon: No such file or directory. 01:16:12,583 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man5x restorecon: No such file or directory. 01:16:12,584 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man6 restorecon: No such file or directory. 01:16:12,584 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man6x restorecon: No such file or directory. 01:16:12,585 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man7 restorecon: No such file or directory. 01:16:12,585 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man7x restorecon: No such file or directory. 01:16:12,586 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man8 restorecon: No such file or directory. 01:16:12,586 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man8x restorecon: No such file or directory. 01:16:12,587 INFO anaconda:program: /sbin/restorecon: SELinux: Could not get canonical path for /usr/share/man/be@latin/man9 restorecon: No such file or directory. 01:16:12,587 INFO anaconda:program: Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish installing, 10548/12000 Waiting for factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 to finish shutdown, 90/90 Install of factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 succeeded Generate XML for guest factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 with bootdev hd Generated XML: factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9 4194304 4194304 b1d65109-3e61-4fc5-bb7e-bf05defc506d 4 host hvm /usr/share/AAVMF/AAVMF_CODE.fd destroy destroy destroy Base install complete - Doing customization and ICICLE generation Customizing image No additional packages, files, or commands to install, and icicle generation not requested, skipping customization Customization and ICICLE generation complete Cleaning up install artifacts Cleaning up after install Generated disk image (/tmp/koji/tasks/2210/292210/output_image/7785d1d7-de80-46c8-af34-d72e49a0a9a9.body) Getting metadata in class () my metadata is (()) Executing metadata in class () my metadata is (('identifier', 'data', 'template', 'icicle', 'status_detail', 'status', 'percent_complete', 'parameters', 'properties')) Saved metadata for image (7785d1d7-de80-46c8-af34-d72e49a0a9a9): {'status': 'COMPLETE', 'identifier': '7785d1d7-de80-46c8-af34-d72e49a0a9a9', 'parameters': {'libvirt_xml': '\n factory-build-7785d1d7-de80-46c8-af34-d72e49a0a9a9\n 4194304\n 4194304\n b1d65109-3e61-4fc5-bb7e-bf05defc506d\n \n 4\n \n \n \n \n \n \n host\n \n \n hvm\n \n /usr/share/AAVMF/AAVMF_CODE.fd\n \n \n destroy\n destroy\n destroy\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n', 'install_script': '#version=DEVEL\n# Keyboard layouts\nkeyboard \'us\'\n# Root password\nrootpw --iscrypted thereisnopasswordanditslocked\n# Use network installation\nurl --url="http://qa.centos.org/centos/8/BaseOS/aarch64/os/"\n# System language\nlang en_US.UTF-8\n# Firewall configuration\nfirewall --enabled --service=ssh\nrepo --name="koji-override-0" --baseurl=http://qa.centos.org/centos/8/BaseOS/aarch64/os/\nrepo --name="koji-override-1" --baseurl=http://qa.centos.org/centos/8/AppStream/aarch64/os/\n# Shutdown after installation\nshutdown\n# Network information\nnetwork --bootproto=dhcp --device=link --activate\nnetwork --bootproto=dhcp --hostname=localhost.localdomain\n# System timezone\ntimezone UTC --isUtc\n# Use text mode install\ntext\n# System authorization information\nauth --enableshadow --passalgo=sha512\nfirstboot --disable\n# SELinux configuration\nselinux --enforcing\n\n# System services\nservices --disabled="kdump" --enabled="NetworkManager,sshd,rsyslog,chronyd,cloud-init,cloud-init-local,cloud-config,cloud-final,rngd"\n# System bootloader configuration\nbootloader --append="console=ttyS0,115200n8 no_timer_check crashkernel=auto net.ifnames=0 nvme_core.io_timeout=4294967295 nvme_core.max_retries=10" --location=mbr --timeout=1 --boot-drive=vda\nreqpart\n# Clear the Master Boot Record\nzerombr\n# Partition clearing information\nclearpart --all --initlabel\n# Disk partitioning information\npart / --fstype="xfs" --ondisk=vda --size=7950\n\n%pre --erroronfail\n/usr/sbin/parted -s /dev/vda mklabel gpt\n%end\n\n%post --erroronfail\npasswd -d root\npasswd -l root\n\n# pvgrub support\necho -n "Creating grub.conf for pvgrub"\nrootuuid=$( awk \'$2=="/" { print $1 };\' /etc/fstab )\nmkdir /boot/grub\necho -e \'default=0\\ntimeout=0\\n\\n\' > /boot/grub/grub.conf\nfor kv in $( ls -1v /boot/vmlinuz* |grep -v rescue |sed s/.*vmlinuz-// ); do\n echo "title CentOS Linux 8 ($kv)" >> /boot/grub/grub.conf\n echo -e "\\troot (hd0)" >> /boot/grub/grub.conf\n echo -e "\\tkernel /boot/vmlinuz-$kv ro root=$rootuuid console=hvc0 LANG=en_US.UTF-8" >> /boot/grub/grub.conf\n echo -e "\\tinitrd /boot/initramfs-$kv.img" >> /boot/grub/grub.conf\n echo\ndone\nln -sf grub.conf /boot/grub/menu.lst\nln -sf /boot/grub/grub.conf /etc/grub.conf\n\n# setup systemd to boot to the right runlevel\nrm -f /etc/systemd/system/default.target\nln -s /lib/systemd/system/multi-user.target /etc/systemd/system/default.target\necho .\n\ndnf -C -y remove linux-firmware\n\n# Remove firewalld; it is required to be present for install/image building.\n# but we dont ship it in cloud\ndnf -C -y remove firewalld --setopt="clean_requirements_on_remove=1"\ndnf -C -y remove avahi\\* \nsed -i \'/^#NAutoVTs=.*/ a\\\nNAutoVTs=0\' /etc/systemd/logind.conf\n\ncat > /etc/sysconfig/network << EOF\nNETWORKING=yes\nNOZEROCONF=yes\nEOF\n\n# For cloud images, \'eth0\' _is_ the predictable device name, since\n# we don\'t want to be tied to specific virtual (!) hardware\nrm -f /etc/udev/rules.d/70*\nln -s /dev/null /etc/udev/rules.d/80-net-name-slot.rules\n\n# simple eth0 config, again not hard-coded to the build hardware\ncat > /etc/sysconfig/network-scripts/ifcfg-eth0 << EOF\nDEVICE="eth0"\nBOOTPROTO="dhcp"\nONBOOT="yes"\nTYPE="Ethernet"\nUSERCTL="yes"\nPEERDNS="yes"\nIPV6INIT="no"\nPERSISTENT_DHCLIENT="1"\nEOF\n\necho "virtual-guest" > /etc/tuned/active_profile\n\n# generic localhost names\ncat > /etc/hosts << EOF\n127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4\n::1 localhost localhost.localdomain localhost6 localhost6.localdomain6\n\nEOF\necho .\n\nsystemctl mask tmp.mount\n\ncat < /etc/sysconfig/kernel\n# UPDATEDEFAULT specifies if new-kernel-pkg should make\n# new kernels the default\nUPDATEDEFAULT=yes\n\n# DEFAULTKERNEL specifies the default kernel package type\nDEFAULTKERNEL=kernel\nEOL\n\n# make sure firstboot doesn\'t start\necho "RUN_FIRSTBOOT=NO" > /etc/sysconfig/firstboot\n\n# centos cloud user\necho -e \'centos\\tALL=(ALL)\\tNOPASSWD: ALL\' >> /etc/sudoers\nsed -i \'s/name: cloud-user/name: centos/g\' /etc/cloud/cloud.cfg\n\ndnf clean all\n\n# XXX instance type markers - MUST match CentOS Infra expectation\necho \'ec2\' > /etc/yum/vars/infra\n\n# change dhcp client retry/timeouts to resolve #6866\ncat >> /etc/dhcp/dhclient.conf << EOF\n\ntimeout 300;\nretry 60;\nEOF\n\n\nrm -rf /var/log/yum.log\nrm -rf /var/lib/yum/*\nrm -rf /root/install.log\nrm -rf /root/install.log.syslog\nrm -rf /root/anaconda-ks.cfg\nrm -rf /var/log/anaconda*\n\nrm -f /var/lib/systemd/random-seed\n\ncat /dev/null > /etc/machine-id\n\necho "Fixing SELinux contexts."\ntouch /var/log/cron\ntouch /var/log/boot.log\nmkdir -p /var/cache/yum\n/usr/sbin/fixfiles -R -a restore\n\n# remove these for ec2 debugging\nsed -i -e \'s/ rhgb quiet//\' /boot/grub/grub.conf\n\ncat > /etc/modprobe.d/blacklist-nouveau.conf << EOL\nblacklist nouveau\nEOL\n\n# enable resizing on copied AMIs\necho \'install_items+=" sgdisk "\' > /etc/dracut.conf.d/sgdisk.conf\n\necho \'add_drivers+="xen-netfront xen-blkfront "\' > /etc/dracut.conf.d/xen.conf\n# Rerun dracut for the installed kernel (not the running kernel):\nKERNEL_VERSION=$(rpm -q kernel --qf \'%{V}-%{R}.%{arch}\\n\')\ndracut -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION\n\n\n# reorder console entries\nsed -i \'s/console=tty0/console=tty0 console=ttyS0,115200n8/\' /boot/grub2/grub.cfg\n\ntrue\n\n%end\n\n%packages\n@core\nNetworkManager\ncentos-release\nchrony\ncloud-init\ncloud-utils-growpart\ncockpit-system\ncockpit-ws\ndhcp-client\ndnf\ndnf-utils\ndracut-config-generic\ndracut-norescue\nfirewalld\ngdisk\ngrub2\nkernel\nnfs-utils\npython3-jsonschema\nqemu-guest-agent\nrng-tools\nrsync\ntar\nyum\nyum-utils\n-aic94xx-firmware\n-alsa-firmware\n-alsa-lib\n-alsa-tools-firmware\n-biosdevname\n-iprutils\n-ivtv-firmware\n-iwl100-firmware\n-iwl1000-firmware\n-iwl105-firmware\n-iwl135-firmware\n-iwl2000-firmware\n-iwl2030-firmware\n-iwl3160-firmware\n-iwl3945-firmware\n-iwl4965-firmware\n-iwl5000-firmware\n-iwl5150-firmware\n-iwl6000-firmware\n-iwl6000g2a-firmware\n-iwl6000g2b-firmware\n-iwl6050-firmware\n-iwl7260-firmware\n-langpacks-*\n-langpacks-en\n-libertas-sd8686-firmware\n-libertas-sd8787-firmware\n-libertas-usb8388-firmware\n-plymouth\n\n%end\n', 'generate_icicle': 'False', 'offline_icicle': True}, 'icicle': '', 'data': '/tmp/koji/tasks/2210/292210/output_image/7785d1d7-de80-46c8-af34-d72e49a0a9a9.body', 'status_detail': {'error': None, 'activity': 'Base Image build complete'}, 'template': "\n", 'percent_complete': 0, 'type': 'BaseImage', 'properties': {}} dispatching qcow2 image builder Resetting dropped connection: koji.mbox.centos.org "POST /kojihub?session-id=3123097&filepath=tasks%2F2210%2F292210&fileverify=adler32&callnum=9&filename=qemu-img-qcow2-aarch64.log&session-key=25-hJVSd1wG9vEGBChvOgr&offset=0&overwrite=1 HTTP/1.1" 200 427