2024-04-15T00:26:00.304 INFO:root:teuthology version: 0.0.1.dev267+g6c63784 2024-04-15T00:26:00.305 DEBUG:teuthology.run:Teuthology command: teuthology --description rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_host_drain} --archive /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155 --name teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi --owner scheduled_teuthology@teuthology --verbose -- /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/orig.config.yaml 2024-04-15T00:26:00.337 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T00:26:00.422 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155 branch: squid description: rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7656155' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: squid sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 owner: scheduled_teuthology@teuthology priority: 101 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 5975 sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 sleep_before_teardown: 0 subset: 25083/100000 suite: rados suite_branch: squid suite_path: /home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 targets: smithi097.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBopQnklFU6rsCuDqR3oH88Pr6KVlGNTcJJZ9qkP09uOOTh/uebkTFwy1Qk5yTXovEz3DjkV7B3tq8DD9cPl+3s= smithi100.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHo9AKK7/BLNXR/wPK3XZ5iED6Chw8qLAbI/K4BglFT58A/+luBhx7+iSltAB7SPt7WTtjgGh0YKcHGpPu3fOeY= smithi105.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMS/P5KYnLbG5x9ZMXxoqqIN9diTe54lholns6aJoIHuzuu3OzgIzMhpcoYyUPgLIFxyLDAQoeZ0g3lEe0TpEpg= tasks: - pexec: all: - sudo dnf install runc -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 6c637841c215537a4502385240412f1966e0faab timestamp: 2024-04-14_21:00:09 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-15T00:26:00.423 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa; will attempt to use it 2024-04-15T00:26:00.425 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks 2024-04-15T00:26:00.426 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-15T00:26:00.427 INFO:teuthology.task.internal:Checking packages... 2024-04-15T00:26:00.451 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'a9a752df26c63acad72e1b3569fd79a515ca0765' 2024-04-15T00:26:00.451 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-15T00:26:00.451 INFO:teuthology.packaging:ref: None 2024-04-15T00:26:00.451 INFO:teuthology.packaging:tag: None 2024-04-15T00:26:00.451 INFO:teuthology.packaging:branch: squid 2024-04-15T00:26:00.451 INFO:teuthology.packaging:sha1: a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:26:00.451 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2024-04-15T00:26:00.734 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2114.ga9a752df 2024-04-15T00:26:00.736 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-15T00:26:00.742 INFO:teuthology.task.internal:no buildpackages task found 2024-04-15T00:26:00.743 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-15T00:26:00.776 INFO:teuthology.task.internal:Saving configuration 2024-04-15T00:26:00.790 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-15T00:26:00.796 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T00:26:00.818 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi097.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 00:20:50.280947', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBopQnklFU6rsCuDqR3oH88Pr6KVlGNTcJJZ9qkP09uOOTh/uebkTFwy1Qk5yTXovEz3DjkV7B3tq8DD9cPl+3s='} 2024-04-15T00:26:00.840 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 00:20:50.281989', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHo9AKK7/BLNXR/wPK3XZ5iED6Chw8qLAbI/K4BglFT58A/+luBhx7+iSltAB7SPt7WTtjgGh0YKcHGpPu3fOeY='} 2024-04-15T00:26:00.859 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi105.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 00:20:50.279375', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMS/P5KYnLbG5x9ZMXxoqqIN9diTe54lholns6aJoIHuzuu3OzgIzMhpcoYyUPgLIFxyLDAQoeZ0g3lEe0TpEpg='} 2024-04-15T00:26:00.859 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-15T00:26:00.866 INFO:teuthology.task.internal:roles: ubuntu@smithi097.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-15T00:26:00.866 INFO:teuthology.task.internal:roles: ubuntu@smithi100.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-15T00:26:00.866 INFO:teuthology.task.internal:roles: ubuntu@smithi105.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-15T00:26:00.866 INFO:teuthology.run_tasks:Running task console_log... 2024-04-15T00:26:00.964 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f98bf76bf70>, signals=[15]) 2024-04-15T00:26:00.964 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-15T00:26:00.970 INFO:teuthology.task.internal:Opening connections... 2024-04-15T00:26:00.970 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi097.front.sepia.ceph.com 2024-04-15T00:26:00.972 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:26:01.061 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi100.front.sepia.ceph.com 2024-04-15T00:26:01.062 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:26:01.151 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi105.front.sepia.ceph.com 2024-04-15T00:26:01.152 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:26:01.239 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-15T00:26:01.245 DEBUG:teuthology.orchestra.run.smithi097:> uname -m 2024-04-15T00:26:01.263 INFO:teuthology.orchestra.run.smithi097.stdout:x86_64 2024-04-15T00:26:01.263 DEBUG:teuthology.orchestra.run.smithi097:> cat /etc/os-release 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:NAME="CentOS Stream" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:VERSION="9" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:ID="centos" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:ID_LIKE="rhel fedora" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:VERSION_ID="9" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:PLATFORM_ID="platform:el9" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:ANSI_COLOR="0;31" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:LOGO="fedora-logo-icon" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:HOME_URL="https://centos.org/" 2024-04-15T00:26:01.320 INFO:teuthology.orchestra.run.smithi097.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T00:26:01.321 INFO:teuthology.orchestra.run.smithi097.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T00:26:01.321 INFO:teuthology.orchestra.run.smithi097.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T00:26:01.321 INFO:teuthology.lock.ops:Updating smithi097.front.sepia.ceph.com on lock server 2024-04-15T00:26:01.350 DEBUG:teuthology.orchestra.run.smithi100:> uname -m 2024-04-15T00:26:01.367 INFO:teuthology.orchestra.run.smithi100.stdout:x86_64 2024-04-15T00:26:01.368 DEBUG:teuthology.orchestra.run.smithi100:> cat /etc/os-release 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:NAME="CentOS Stream" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION="9" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:ID="centos" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:ID_LIKE="rhel fedora" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:VERSION_ID="9" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:PLATFORM_ID="platform:el9" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:ANSI_COLOR="0;31" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:LOGO="fedora-logo-icon" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T00:26:01.425 INFO:teuthology.orchestra.run.smithi100.stdout:HOME_URL="https://centos.org/" 2024-04-15T00:26:01.426 INFO:teuthology.orchestra.run.smithi100.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T00:26:01.426 INFO:teuthology.orchestra.run.smithi100.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T00:26:01.426 INFO:teuthology.orchestra.run.smithi100.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T00:26:01.426 INFO:teuthology.lock.ops:Updating smithi100.front.sepia.ceph.com on lock server 2024-04-15T00:26:01.441 DEBUG:teuthology.orchestra.run.smithi105:> uname -m 2024-04-15T00:26:01.459 INFO:teuthology.orchestra.run.smithi105.stdout:x86_64 2024-04-15T00:26:01.459 DEBUG:teuthology.orchestra.run.smithi105:> cat /etc/os-release 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:NAME="CentOS Stream" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION="9" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:ID="centos" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:ID_LIKE="rhel fedora" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:VERSION_ID="9" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:PLATFORM_ID="platform:el9" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:ANSI_COLOR="0;31" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:LOGO="fedora-logo-icon" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-15T00:26:01.516 INFO:teuthology.orchestra.run.smithi105.stdout:HOME_URL="https://centos.org/" 2024-04-15T00:26:01.517 INFO:teuthology.orchestra.run.smithi105.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-15T00:26:01.517 INFO:teuthology.orchestra.run.smithi105.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-15T00:26:01.517 INFO:teuthology.orchestra.run.smithi105.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-15T00:26:01.517 INFO:teuthology.lock.ops:Updating smithi105.front.sepia.ceph.com on lock server 2024-04-15T00:26:01.541 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-15T00:26:01.550 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-15T00:26:01.554 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-15T00:26:01.554 DEBUG:teuthology.orchestra.run.smithi097:> test '!' -e /home/ubuntu/cephtest 2024-04-15T00:26:01.557 DEBUG:teuthology.orchestra.run.smithi100:> test '!' -e /home/ubuntu/cephtest 2024-04-15T00:26:01.559 DEBUG:teuthology.orchestra.run.smithi105:> test '!' -e /home/ubuntu/cephtest 2024-04-15T00:26:01.575 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-15T00:26:01.581 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-15T00:26:01.581 DEBUG:teuthology.orchestra.run.smithi097:> test -z $(ls -A /var/lib/ceph) 2024-04-15T00:26:01.613 DEBUG:teuthology.orchestra.run.smithi100:> test -z $(ls -A /var/lib/ceph) 2024-04-15T00:26:01.616 DEBUG:teuthology.orchestra.run.smithi105:> test -z $(ls -A /var/lib/ceph) 2024-04-15T00:26:01.720 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-15T00:26:01.804 INFO:teuthology.run_tasks:Running task kernel... 2024-04-15T00:26:01.820 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-04-15T00:26:01.820 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-04-15T00:26:01.821 DEBUG:teuthology.orchestra.run.smithi097:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T00:26:01.821 DEBUG:teuthology.orchestra.run.smithi100:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T00:26:01.821 DEBUG:teuthology.orchestra.run.smithi105:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-15T00:26:01.838 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:26:01.838 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-04-15T00:26:01.839 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:26:01.840 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:26:01.840 DEBUG:teuthology.orchestra.run.smithi105:> uname -r 2024-04-15T00:26:01.840 DEBUG:teuthology.orchestra.run.smithi097:> uname -r 2024-04-15T00:26:01.895 INFO:teuthology.orchestra.run.smithi100.stdout:5.14.0-361.el9.x86_64 2024-04-15T00:26:01.896 INFO:teuthology.task.kernel:Running kernel on smithi100: 5.14.0-361.el9.x86_64 2024-04-15T00:26:01.896 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum install -y kernel 2024-04-15T00:26:01.899 INFO:teuthology.orchestra.run.smithi105.stdout:5.14.0-361.el9.x86_64 2024-04-15T00:26:01.899 INFO:teuthology.task.kernel:Running kernel on smithi105: 5.14.0-361.el9.x86_64 2024-04-15T00:26:01.899 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum install -y kernel 2024-04-15T00:26:01.900 INFO:teuthology.orchestra.run.smithi097.stdout:5.14.0-361.el9.x86_64 2024-04-15T00:26:01.900 INFO:teuthology.task.kernel:Running kernel on smithi097: 5.14.0-361.el9.x86_64 2024-04-15T00:26:01.900 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum install -y kernel 2024-04-15T00:26:04.044 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS-9 - AppStream 17 MB/s | 8.1 MB 00:00 2024-04-15T00:26:04.212 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS-9 - AppStream 12 MB/s | 8.1 MB 00:00 2024-04-15T00:26:04.224 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS-9 - AppStream 12 MB/s | 8.1 MB 00:00 2024-04-15T00:26:05.661 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS-9 - BaseOS 8.2 MB/s | 2.5 MB 00:00 2024-04-15T00:26:05.895 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS-9 - BaseOS 6.9 MB/s | 2.5 MB 00:00 2024-04-15T00:26:06.066 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS-9 - BaseOS 4.7 MB/s | 2.5 MB 00:00 2024-04-15T00:26:07.152 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - BaseOS 10 MB/s | 8.0 MB 00:00 2024-04-15T00:26:07.423 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - BaseOS 8.8 MB/s | 8.0 MB 00:00 2024-04-15T00:26:09.395 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - AppStream 17 MB/s | 19 MB 00:01 2024-04-15T00:26:09.401 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - AppStream 21 MB/s | 19 MB 00:00 2024-04-15T00:26:13.812 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - CRB 7.4 MB/s | 6.2 MB 00:00 2024-04-15T00:26:14.191 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - CRB 5.0 MB/s | 6.2 MB 00:01 2024-04-15T00:26:15.001 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - BaseOS 929 kB/s | 8.0 MB 00:08 2024-04-15T00:26:15.313 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - Extras packages 52 kB/s | 16 kB 00:00 2024-04-15T00:26:16.200 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - Extras packages 21 kB/s | 16 kB 00:00 2024-04-15T00:26:17.317 INFO:teuthology.orchestra.run.smithi097.stdout:Extra Packages for Enterprise Linux 11 MB/s | 21 MB 00:01 2024-04-15T00:26:17.437 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - AppStream 14 MB/s | 19 MB 00:01 2024-04-15T00:26:22.440 INFO:teuthology.orchestra.run.smithi097.stdout:lab-extras 12 kB/s | 1.7 kB 00:00 2024-04-15T00:26:24.244 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - CRB 1.9 MB/s | 6.2 MB 00:03 2024-04-15T00:26:24.680 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:26:24.680 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:26:24.680 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:26:24.680 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:26:24.681 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:26:24.682 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.683 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:26:24.684 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.685 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:26:24.686 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:26:24.687 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:26:24.688 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:26:25.113 INFO:teuthology.orchestra.run.smithi097.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T00:26:25.114 INFO:teuthology.orchestra.run.smithi097.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T00:26:25.223 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:26:25.234 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:26:25.234 INFO:teuthology.orchestra.run.smithi097.stdout: Package Architecture Version Repository Size 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout: kernel x86_64 5.14.0-435.el9 baseos 214 k 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-core x86_64 5.14.0-435.el9 baseos 15 M 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules x86_64 5.14.0-435.el9 baseos 34 M 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules-core x86_64 5.14.0-435.el9 baseos 28 M 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:Install 4 Packages 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:26:25.235 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 77 M 2024-04-15T00:26:25.236 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 123 M 2024-04-15T00:26:25.236 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:26:25.533 INFO:teuthology.orchestra.run.smithi097.stdout:(1/4): kernel-5.14.0-435.el9.x86_64.rpm 907 kB/s | 214 kB 00:00 2024-04-15T00:26:26.111 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - Extras packages 24 kB/s | 16 kB 00:00 2024-04-15T00:26:26.624 INFO:teuthology.orchestra.run.smithi097.stdout:(2/4): kernel-core-5.14.0-435.el9.x86_64.rpm 11 MB/s | 15 MB 00:01 2024-04-15T00:26:27.433 INFO:teuthology.orchestra.run.smithi097.stdout:(3/4): kernel-modules-core-5.14.0-435.el9.x86_6 15 MB/s | 28 MB 00:01 2024-04-15T00:26:27.741 INFO:teuthology.orchestra.run.smithi097.stdout:(4/4): kernel-modules-5.14.0-435.el9.x86_64.rpm 14 MB/s | 34 MB 00:02 2024-04-15T00:26:27.742 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:26:27.742 INFO:teuthology.orchestra.run.smithi097.stdout:Total 31 MB/s | 77 MB 00:02 2024-04-15T00:26:28.414 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:26:28.771 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:26:28.771 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:26:29.796 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:26:29.796 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:26:30.462 INFO:teuthology.orchestra.run.smithi105.stdout:Extra Packages for Enterprise Linux 5.0 MB/s | 21 MB 00:04 2024-04-15T00:26:32.278 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:26:32.985 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-modules-core-5.14.0-435.el9.x86_64 1/4 2024-04-15T00:26:33.075 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:26:35.588 INFO:teuthology.orchestra.run.smithi105.stdout:lab-extras 18 kB/s | 1.7 kB 00:00 2024-04-15T00:26:35.594 INFO:teuthology.orchestra.run.smithi100.stdout:Extra Packages for Enterprise Linux 1.1 MB/s | 21 MB 00:19 2024-04-15T00:26:35.824 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:26:35.970 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:26:37.850 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:26:37.850 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:26:37.850 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:26:37.850 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.850 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:26:37.850 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.853 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:26:37.854 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.855 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:26:37.856 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:26:37.857 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.858 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.859 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:26:37.860 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:26:38.320 INFO:teuthology.orchestra.run.smithi105.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T00:26:38.320 INFO:teuthology.orchestra.run.smithi105.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T00:26:38.424 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout: kernel x86_64 5.14.0-435.el9 baseos 214 k 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-core x86_64 5.14.0-435.el9 baseos 15 M 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules x86_64 5.14.0-435.el9 baseos 34 M 2024-04-15T00:26:38.435 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules-core x86_64 5.14.0-435.el9 baseos 28 M 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout:Install 4 Packages 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 77 M 2024-04-15T00:26:38.436 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 123 M 2024-04-15T00:26:38.437 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:26:38.689 INFO:teuthology.orchestra.run.smithi105.stdout:(1/4): kernel-5.14.0-435.el9.x86_64.rpm 1.5 MB/s | 214 kB 00:00 2024-04-15T00:26:40.689 INFO:teuthology.orchestra.run.smithi105.stdout:(2/4): kernel-core-5.14.0-435.el9.x86_64.rpm 7.1 MB/s | 15 MB 00:02 2024-04-15T00:26:40.714 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:26:40.724 INFO:teuthology.orchestra.run.smithi100.stdout:lab-extras 15 kB/s | 1.7 kB 00:00 2024-04-15T00:26:40.762 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : kernel-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:26:42.589 INFO:teuthology.orchestra.run.smithi105.stdout:(3/4): kernel-modules-core-5.14.0-435.el9.x86_6 7.1 MB/s | 28 MB 00:03 2024-04-15T00:26:42.978 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:26:42.978 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:26:42.978 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:26:42.978 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:26:42.979 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.980 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.981 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.982 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.983 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.984 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.985 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.986 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.987 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.988 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.989 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:26:42.989 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:26:43.431 INFO:teuthology.orchestra.run.smithi100.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-15T00:26:43.432 INFO:teuthology.orchestra.run.smithi100.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-15T00:26:43.497 INFO:teuthology.orchestra.run.smithi105.stdout:(4/4): kernel-modules-5.14.0-435.el9.x86_64.rpm 6.8 MB/s | 34 MB 00:04 2024-04-15T00:26:43.498 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:26:43.498 INFO:teuthology.orchestra.run.smithi105.stdout:Total 15 MB/s | 77 MB 00:05 2024-04-15T00:26:43.543 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout: Package Architecture Version Repository Size 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout: kernel x86_64 5.14.0-435.el9 baseos 214 k 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-core x86_64 5.14.0-435.el9 baseos 15 M 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules x86_64 5.14.0-435.el9 baseos 34 M 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules-core x86_64 5.14.0-435.el9 baseos 28 M 2024-04-15T00:26:43.548 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout:Install 4 Packages 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 77 M 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 123 M 2024-04-15T00:26:43.549 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:26:43.934 INFO:teuthology.orchestra.run.smithi100.stdout:(1/4): kernel-5.14.0-435.el9.x86_64.rpm 812 kB/s | 214 kB 00:00 2024-04-15T00:26:44.174 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:26:44.549 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:26:44.549 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:26:45.093 INFO:teuthology.orchestra.run.smithi100.stdout:(2/4): kernel-core-5.14.0-435.el9.x86_64.rpm 11 MB/s | 15 MB 00:01 2024-04-15T00:26:45.518 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:26:45.571 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:26:45.572 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:26:45.701 INFO:teuthology.orchestra.run.smithi100.stdout:(3/4): kernel-modules-core-5.14.0-435.el9.x86_6 16 MB/s | 28 MB 00:01 2024-04-15T00:26:46.893 INFO:teuthology.orchestra.run.smithi100.stdout:(4/4): kernel-modules-5.14.0-435.el9.x86_64.rpm 10 MB/s | 34 MB 00:03 2024-04-15T00:26:46.893 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:26:46.893 INFO:teuthology.orchestra.run.smithi100.stdout:Total 23 MB/s | 77 MB 00:03 2024-04-15T00:26:47.563 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:26:47.944 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:26:47.945 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:26:48.039 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:26:48.716 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-modules-core-5.14.0-435.el9.x86_64 1/4 2024-04-15T00:26:48.806 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:26:48.950 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:26:48.950 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:26:51.426 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:26:51.578 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:26:51.718 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:26:52.104 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-modules-core-5.14.0-435.el9.x86_64 1/4 2024-04-15T00:26:52.194 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:26:54.918 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:26:55.065 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:26:56.453 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:26:56.577 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : kernel-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:26:59.800 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:26:59.907 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : kernel-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:01.334 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:04.627 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:14.604 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:14.605 INFO:teuthology.orchestra.run.smithi097.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T00:27:14.605 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:27:14.650 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:15.012 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: kernel-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:15.012 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-5.14.0-435.el9.x86_64 1/4 2024-04-15T00:27:15.012 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:27:15.012 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-core-5.14.0-435.el9.x86_64 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules-5.14.0-435.el9.x86_64 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: kernel-modules-core-5.14.0-435.el9.x86_64 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:27:15.442 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:27:15.778 DEBUG:teuthology.orchestra.run.smithi097:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T00:27:15.877 INFO:teuthology.orchestra.run.smithi097.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:15.877 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-15T00:27:15.877 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-435.el9.x86_64 2024-04-15T00:27:15.877 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T00:27:15.877 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T00:27:15.878 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-15T00:27:15.878 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi097.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T00:27:15.878 DEBUG:teuthology.orchestra.run.smithi097:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T00:27:15.958 INFO:teuthology.orchestra.run.smithi097.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:15.959 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-15T00:27:15.959 DEBUG:teuthology.orchestra.run.smithi097:> sudo rpm -qi grub2-tools 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Name : grub2-tools 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Epoch : 1 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Version : 2.06 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Release : 68.el9 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Architecture: x86_64 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Group : Unspecified 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Size : 8264254 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:License : GPLv3+ 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T00:27:16.007 INFO:teuthology.orchestra.run.smithi097.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:Packager : builder@centos.org 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:Vendor : CentOS 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:Summary : Support tools for GRUB. 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:Description : 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:hardware devices. 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:27:16.008 INFO:teuthology.orchestra.run.smithi097.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T00:27:16.009 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T00:27:16.009 INFO:teuthology.task.kernel:Updating grub on smithi097 to boot 5.14.0-435.el9.x86_64 2024-04-15T00:27:16.009 DEBUG:teuthology.orchestra.run.smithi097:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T00:27:16.592 INFO:teuthology.orchestra.run.smithi097.stderr:Generating grub configuration file ... 2024-04-15T00:27:17.897 INFO:teuthology.orchestra.run.smithi097.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T00:27:17.931 INFO:teuthology.orchestra.run.smithi097.stderr:done 2024-04-15T00:27:17.931 DEBUG:teuthology.orchestra.run.smithi097:> mktemp 2024-04-15T00:27:17.947 INFO:teuthology.orchestra.run.smithi097.stdout:/tmp/tmp.cDuGVmfFCo 2024-04-15T00:27:17.947 DEBUG:teuthology.orchestra.run.smithi097:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.cDuGVmfFCo 2024-04-15T00:27:18.034 DEBUG:teuthology.orchestra.run.smithi097:> sudo chmod 0666 /tmp/tmp.cDuGVmfFCo 2024-04-15T00:27:18.127 DEBUG:teuthology.orchestra.remote:smithi097:/tmp/tmp.cDuGVmfFCo is 6KB 2024-04-15T00:27:18.176 DEBUG:teuthology.orchestra.run.smithi097:> rm -fr /tmp/tmp.cDuGVmfFCo 2024-04-15T00:27:18.190 DEBUG:teuthology.orchestra.run.smithi097:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T00:27:18.255 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T00:27:18.255 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T00:27:18.255 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T00:27:18.255 INFO:teuthology.orchestra.run.smithi097.stdout:15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64.conf 2024-04-15T00:27:18.257 DEBUG:teuthology.orchestra.run.smithi097:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64 2024-04-15T00:27:18.426 DEBUG:teuthology.orchestra.run.smithi097:> sudo shutdown -r now 2024-04-15T00:27:30.498 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:30.498 INFO:teuthology.orchestra.run.smithi105.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T00:27:30.498 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:27:30.544 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:30.960 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: kernel-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:30.960 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-5.14.0-435.el9.x86_64 1/4 2024-04-15T00:27:30.960 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:27:30.961 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:27:31.408 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:31.408 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-core-5.14.0-435.el9.x86_64 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules-5.14.0-435.el9.x86_64 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout: kernel-modules-core-5.14.0-435.el9.x86_64 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:27:31.409 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:27:31.744 DEBUG:teuthology.orchestra.run.smithi105:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T00:27:31.842 INFO:teuthology.orchestra.run.smithi105.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:31.843 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-15T00:27:31.843 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-435.el9.x86_64 2024-04-15T00:27:31.843 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T00:27:31.843 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T00:27:31.843 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-15T00:27:31.843 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi105.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T00:27:31.843 DEBUG:teuthology.orchestra.run.smithi105:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T00:27:31.922 INFO:teuthology.orchestra.run.smithi105.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:31.922 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-15T00:27:31.923 DEBUG:teuthology.orchestra.run.smithi105:> sudo rpm -qi grub2-tools 2024-04-15T00:27:31.966 INFO:teuthology.orchestra.run.smithi105.stdout:Name : grub2-tools 2024-04-15T00:27:31.966 INFO:teuthology.orchestra.run.smithi105.stdout:Epoch : 1 2024-04-15T00:27:31.966 INFO:teuthology.orchestra.run.smithi105.stdout:Version : 2.06 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Release : 68.el9 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Architecture: x86_64 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Group : Unspecified 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Size : 8264254 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:License : GPLv3+ 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Packager : builder@centos.org 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Vendor : CentOS 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T00:27:31.967 INFO:teuthology.orchestra.run.smithi105.stdout:Summary : Support tools for GRUB. 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout:Description : 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout:hardware devices. 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:27:31.968 INFO:teuthology.orchestra.run.smithi105.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T00:27:31.969 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T00:27:31.969 INFO:teuthology.task.kernel:Updating grub on smithi105 to boot 5.14.0-435.el9.x86_64 2024-04-15T00:27:31.969 DEBUG:teuthology.orchestra.run.smithi105:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T00:27:32.566 INFO:teuthology.orchestra.run.smithi105.stderr:Generating grub configuration file ... 2024-04-15T00:27:33.938 INFO:teuthology.orchestra.run.smithi105.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T00:27:33.966 INFO:teuthology.orchestra.run.smithi105.stderr:done 2024-04-15T00:27:33.968 DEBUG:teuthology.orchestra.run.smithi105:> mktemp 2024-04-15T00:27:33.984 INFO:teuthology.orchestra.run.smithi105.stdout:/tmp/tmp.6m24dwP0q5 2024-04-15T00:27:33.984 DEBUG:teuthology.orchestra.run.smithi105:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.6m24dwP0q5 2024-04-15T00:27:34.055 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod 0666 /tmp/tmp.6m24dwP0q5 2024-04-15T00:27:34.062 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:34.062 INFO:teuthology.orchestra.run.smithi100.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-15T00:27:34.062 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:27:34.108 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-modules-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:34.194 DEBUG:teuthology.orchestra.remote:smithi105:/tmp/tmp.6m24dwP0q5 is 6KB 2024-04-15T00:27:34.244 DEBUG:teuthology.orchestra.run.smithi105:> rm -fr /tmp/tmp.6m24dwP0q5 2024-04-15T00:27:34.259 DEBUG:teuthology.orchestra.run.smithi105:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T00:27:34.332 INFO:teuthology.orchestra.run.smithi105.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T00:27:34.332 INFO:teuthology.orchestra.run.smithi105.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T00:27:34.332 INFO:teuthology.orchestra.run.smithi105.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T00:27:34.332 INFO:teuthology.orchestra.run.smithi105.stdout:15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64.conf 2024-04-15T00:27:34.333 DEBUG:teuthology.orchestra.run.smithi105:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64 2024-04-15T00:27:34.474 DEBUG:teuthology.orchestra.run.smithi105:> sudo shutdown -r now 2024-04-15T00:27:34.481 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: kernel-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:34.481 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-5.14.0-435.el9.x86_64 1/4 2024-04-15T00:27:34.481 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-core-5.14.0-435.el9.x86_64 2/4 2024-04-15T00:27:34.481 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-modules-5.14.0-435.el9.x86_64 3/4 2024-04-15T00:27:34.914 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : kernel-modules-core-5.14.0-435.el9.x86_64 4/4 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-core-5.14.0-435.el9.x86_64 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules-5.14.0-435.el9.x86_64 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout: kernel-modules-core-5.14.0-435.el9.x86_64 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:27:34.915 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:27:35.304 DEBUG:teuthology.orchestra.run.smithi100:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T00:27:35.414 INFO:teuthology.orchestra.run.smithi100.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:35.415 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-15T00:27:35.415 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-435.el9.x86_64 2024-04-15T00:27:35.415 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-15T00:27:35.415 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-15T00:27:35.415 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-15T00:27:35.415 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi100.front.sepia.ceph.com, path=None, version=distro) 2024-04-15T00:27:35.415 DEBUG:teuthology.orchestra.run.smithi100:> rpm -q kernel | sort -rV | head -n 1 2024-04-15T00:27:35.495 INFO:teuthology.orchestra.run.smithi100.stdout:kernel-5.14.0-435.el9.x86_64 2024-04-15T00:27:35.495 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-435.el9.x86_64 2024-04-15T00:27:35.496 DEBUG:teuthology.orchestra.run.smithi100:> sudo rpm -qi grub2-tools 2024-04-15T00:27:35.529 INFO:teuthology.orchestra.run.smithi100.stdout:Name : grub2-tools 2024-04-15T00:27:35.530 INFO:teuthology.orchestra.run.smithi100.stdout:Epoch : 1 2024-04-15T00:27:35.530 INFO:teuthology.orchestra.run.smithi100.stdout:Version : 2.06 2024-04-15T00:27:35.530 INFO:teuthology.orchestra.run.smithi100.stdout:Release : 68.el9 2024-04-15T00:27:35.530 INFO:teuthology.orchestra.run.smithi100.stdout:Architecture: x86_64 2024-04-15T00:27:35.530 INFO:teuthology.orchestra.run.smithi100.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-15T00:27:35.530 INFO:teuthology.orchestra.run.smithi100.stdout:Group : Unspecified 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Size : 8264254 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:License : GPLv3+ 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Packager : builder@centos.org 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Vendor : CentOS 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Summary : Support tools for GRUB. 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:Description : 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-15T00:27:35.531 INFO:teuthology.orchestra.run.smithi100.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-15T00:27:35.532 INFO:teuthology.orchestra.run.smithi100.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-15T00:27:35.532 INFO:teuthology.orchestra.run.smithi100.stdout:hardware devices. 2024-04-15T00:27:35.532 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:27:35.532 INFO:teuthology.orchestra.run.smithi100.stdout:This subpackage provides tools for support of all platforms. 2024-04-15T00:27:35.533 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-15T00:27:35.533 INFO:teuthology.task.kernel:Updating grub on smithi100 to boot 5.14.0-435.el9.x86_64 2024-04-15T00:27:35.533 DEBUG:teuthology.orchestra.run.smithi100:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-15T00:27:36.218 INFO:teuthology.orchestra.run.smithi100.stderr:Generating grub configuration file ... 2024-04-15T00:27:37.611 INFO:teuthology.orchestra.run.smithi100.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-15T00:27:37.644 INFO:teuthology.orchestra.run.smithi100.stderr:done 2024-04-15T00:27:37.646 DEBUG:teuthology.orchestra.run.smithi100:> mktemp 2024-04-15T00:27:37.661 INFO:teuthology.orchestra.run.smithi100.stdout:/tmp/tmp.uQ04ih0kPk 2024-04-15T00:27:37.661 DEBUG:teuthology.orchestra.run.smithi100:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.uQ04ih0kPk 2024-04-15T00:27:37.731 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod 0666 /tmp/tmp.uQ04ih0kPk 2024-04-15T00:27:37.868 DEBUG:teuthology.orchestra.remote:smithi100:/tmp/tmp.uQ04ih0kPk is 6KB 2024-04-15T00:27:37.917 DEBUG:teuthology.orchestra.run.smithi100:> rm -fr /tmp/tmp.uQ04ih0kPk 2024-04-15T00:27:37.931 DEBUG:teuthology.orchestra.run.smithi100:> sudo /bin/ls /boot/loader/entries || true 2024-04-15T00:27:37.995 INFO:teuthology.orchestra.run.smithi100.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-15T00:27:37.996 INFO:teuthology.orchestra.run.smithi100.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-15T00:27:37.996 INFO:teuthology.orchestra.run.smithi100.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-15T00:27:37.996 INFO:teuthology.orchestra.run.smithi100.stdout:15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64.conf 2024-04-15T00:27:37.997 DEBUG:teuthology.orchestra.run.smithi100:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-435.el9.x86_64 2024-04-15T00:27:38.147 DEBUG:teuthology.orchestra.run.smithi100:> sudo shutdown -r now 2024-04-15T00:27:48.438 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-15T00:27:48.439 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-15T00:27:48.440 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:04.492 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-15T00:28:04.493 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-15T00:28:04.494 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:06.814 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.97 2024-04-15T00:28:08.150 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-15T00:28:08.151 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:28:08.151 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:15.822 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-15T00:28:15.823 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:22.945 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-04-15T00:28:26.526 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-04-15T00:28:31.950 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-15T00:28:31.951 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:35.006 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.105 2024-04-15T00:28:35.527 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:28:35.528 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:38.590 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-04-15T00:28:47.014 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-15T00:28:47.015 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:28:50.594 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:28:50.595 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:29:09.023 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.100 2024-04-15T00:29:15.830 DEBUG:teuthology.orchestra.remote:timed out 2024-04-15T00:29:18.852 DEBUG:teuthology.orchestra.run.smithi105:> true 2024-04-15T00:29:19.251 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-15T00:29:19.252 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-435.el9.x86_64"... 2024-04-15T00:29:19.252 DEBUG:teuthology.orchestra.run.smithi105:> uname -r 2024-04-15T00:29:19.266 INFO:teuthology.orchestra.run.smithi105.stdout:5.14.0-435.el9.x86_64 2024-04-15T00:29:19.267 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-435.el9.x86_64 vs 5.14.0-435.el9.x86_64 2024-04-15T00:29:19.267 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T00:29:19.267 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T00:29:20.268 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-15T00:29:20.268 DEBUG:teuthology.orchestra.run.smithi105:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T00:29:20.369 INFO:teuthology.orchestra.run.smithi105.stdout:ttyS1 2024-04-15T00:29:20.395 DEBUG:teuthology.parallel:result is None 2024-04-15T00:29:24.024 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:29:24.025 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:29:24.346 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-04-15T00:29:24.759 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:29:24.759 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-435.el9.x86_64"... 2024-04-15T00:29:24.759 DEBUG:teuthology.orchestra.run.smithi100:> uname -r 2024-04-15T00:29:24.772 INFO:teuthology.orchestra.run.smithi100.stdout:5.14.0-435.el9.x86_64 2024-04-15T00:29:24.773 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-435.el9.x86_64 vs 5.14.0-435.el9.x86_64 2024-04-15T00:29:24.773 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T00:29:24.773 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T00:29:25.774 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-15T00:29:25.774 DEBUG:teuthology.orchestra.run.smithi100:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T00:29:25.944 INFO:teuthology.orchestra.run.smithi100.stdout:ttyS1 2024-04-15T00:29:25.982 DEBUG:teuthology.parallel:result is None 2024-04-15T00:29:27.831 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-15T00:29:27.832 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:29:28.324 DEBUG:teuthology.orchestra.run.smithi097:> true 2024-04-15T00:29:28.715 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-15T00:29:28.715 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-435.el9.x86_64"... 2024-04-15T00:29:28.715 DEBUG:teuthology.orchestra.run.smithi097:> uname -r 2024-04-15T00:29:28.731 INFO:teuthology.orchestra.run.smithi097.stdout:5.14.0-435.el9.x86_64 2024-04-15T00:29:28.731 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-435.el9.x86_64 vs 5.14.0-435.el9.x86_64 2024-04-15T00:29:28.731 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-15T00:29:28.731 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-15T00:29:29.732 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-15T00:29:29.733 DEBUG:teuthology.orchestra.run.smithi097:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-15T00:29:29.808 INFO:teuthology.orchestra.run.smithi097.stdout:ttyS1 2024-04-15T00:29:29.844 DEBUG:teuthology.parallel:result is None 2024-04-15T00:29:29.845 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-15T00:29:29.851 INFO:teuthology.task.internal:Creating test directory... 2024-04-15T00:29:29.851 DEBUG:teuthology.orchestra.run.smithi097:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T00:29:29.854 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T00:29:29.856 DEBUG:teuthology.orchestra.run.smithi105:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-15T00:29:29.875 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-15T00:29:29.889 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-15T00:29:29.895 INFO:teuthology.task.internal:Creating archive directory... 2024-04-15T00:29:29.896 DEBUG:teuthology.orchestra.run.smithi097:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T00:29:29.912 DEBUG:teuthology.orchestra.run.smithi100:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T00:29:29.915 DEBUG:teuthology.orchestra.run.smithi105:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-15T00:29:30.221 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-15T00:29:30.228 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-15T00:29:30.228 DEBUG:teuthology.orchestra.run.smithi097:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T00:29:30.230 DEBUG:teuthology.orchestra.run.smithi100:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T00:29:30.233 DEBUG:teuthology.orchestra.run.smithi105:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-04-15T00:29:30.266 INFO:teuthology.orchestra.run.smithi097.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T00:29:30.270 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T00:29:30.278 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T00:29:30.280 INFO:teuthology.orchestra.run.smithi097.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T00:29:30.285 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T00:29:30.292 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-15T00:29:30.295 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-15T00:29:30.309 INFO:teuthology.task.internal:Configuring sudo... 2024-04-15T00:29:30.309 DEBUG:teuthology.orchestra.run.smithi097:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T00:29:30.331 DEBUG:teuthology.orchestra.run.smithi100:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T00:29:30.337 DEBUG:teuthology.orchestra.run.smithi105:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-15T00:29:30.368 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-15T00:29:30.398 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-15T00:29:30.398 DEBUG:teuthology.orchestra.run.smithi097:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T00:29:30.412 DEBUG:teuthology.orchestra.run.smithi100:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T00:29:30.422 DEBUG:teuthology.orchestra.run.smithi105:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-15T00:29:30.442 DEBUG:teuthology.orchestra.run.smithi097:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T00:29:30.532 DEBUG:teuthology.orchestra.run.smithi097:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T00:29:30.589 DEBUG:teuthology.orchestra.run.smithi097:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T00:29:30.677 DEBUG:teuthology.orchestra.run.smithi097:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T00:29:30.719 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-15T00:29:30.719 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T00:29:30.790 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T00:29:30.845 DEBUG:teuthology.orchestra.run.smithi100:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T00:29:30.898 DEBUG:teuthology.orchestra.run.smithi100:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T00:29:30.993 DEBUG:teuthology.orchestra.run.smithi100:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T00:29:31.042 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-04-15T00:29:31.042 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T00:29:31.112 DEBUG:teuthology.orchestra.run.smithi105:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T00:29:31.158 DEBUG:teuthology.orchestra.run.smithi105:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-15T00:29:31.220 DEBUG:teuthology.orchestra.run.smithi105:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T00:29:31.324 DEBUG:teuthology.orchestra.run.smithi105:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-15T00:29:31.369 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-15T00:29:31.369 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-15T00:29:31.446 DEBUG:teuthology.orchestra.run.smithi097:> sudo service rsyslog restart 2024-04-15T00:29:31.449 DEBUG:teuthology.orchestra.run.smithi100:> sudo service rsyslog restart 2024-04-15T00:29:31.453 DEBUG:teuthology.orchestra.run.smithi105:> sudo service rsyslog restart 2024-04-15T00:29:31.503 INFO:teuthology.orchestra.run.smithi097.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T00:29:31.503 INFO:teuthology.orchestra.run.smithi100.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T00:29:31.535 INFO:teuthology.orchestra.run.smithi105.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T00:29:32.048 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-15T00:29:32.056 INFO:teuthology.task.internal:Starting timer... 2024-04-15T00:29:32.057 INFO:teuthology.run_tasks:Running task pcp... 2024-04-15T00:29:32.072 INFO:teuthology.run_tasks:Running task selinux... 2024-04-15T00:29:32.081 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-15T00:29:32.082 DEBUG:teuthology.orchestra.run.smithi097:> sudo service auditd rotate 2024-04-15T00:29:32.137 INFO:teuthology.orchestra.run.smithi097.stdout:Rotating logs: 2024-04-15T00:29:32.139 DEBUG:teuthology.orchestra.run.smithi100:> sudo service auditd rotate 2024-04-15T00:29:32.200 INFO:teuthology.orchestra.run.smithi100.stdout:Rotating logs: 2024-04-15T00:29:32.201 DEBUG:teuthology.orchestra.run.smithi105:> sudo service auditd rotate 2024-04-15T00:29:32.256 INFO:teuthology.orchestra.run.smithi105.stdout:Rotating logs: 2024-04-15T00:29:32.258 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-15T00:29:32.259 DEBUG:teuthology.orchestra.run.smithi097:> /usr/sbin/getenforce 2024-04-15T00:29:32.278 INFO:teuthology.orchestra.run.smithi097.stdout:Permissive 2024-04-15T00:29:32.279 DEBUG:teuthology.orchestra.run.smithi100:> /usr/sbin/getenforce 2024-04-15T00:29:32.303 INFO:teuthology.orchestra.run.smithi100.stdout:Permissive 2024-04-15T00:29:32.304 DEBUG:teuthology.orchestra.run.smithi105:> /usr/sbin/getenforce 2024-04-15T00:29:32.330 INFO:teuthology.orchestra.run.smithi105.stdout:Permissive 2024-04-15T00:29:32.331 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi097.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi100.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi105.front.sepia.ceph.com': 'permissive'} 2024-04-15T00:29:32.331 DEBUG:teuthology.orchestra.run.smithi097:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T00:29:32.361 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:29:32.362 DEBUG:teuthology.orchestra.run.smithi100:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T00:29:32.390 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:29:32.391 DEBUG:teuthology.orchestra.run.smithi105:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T00:29:32.419 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:29:32.420 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-15T00:29:32.420 DEBUG:teuthology.orchestra.run.smithi097:> sudo /usr/sbin/setenforce permissive 2024-04-15T00:29:32.463 DEBUG:teuthology.orchestra.run.smithi100:> sudo /usr/sbin/setenforce permissive 2024-04-15T00:29:32.497 DEBUG:teuthology.orchestra.run.smithi105:> sudo /usr/sbin/setenforce permissive 2024-04-15T00:29:32.532 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-15T00:29:32.542 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-15T00:29:32.561 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-04-15T00:29:32.562 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi097.front.sepia.ceph.com,smithi100.front.sepia.ceph.com,smithi105.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-15T00:34:11.257 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi097.front.sepia.ceph.com'), Remote(name='ubuntu@smithi100.front.sepia.ceph.com'), Remote(name='ubuntu@smithi105.front.sepia.ceph.com')] 2024-04-15T00:34:11.289 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-15T00:34:11.290 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi097.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:34:11.384 DEBUG:teuthology.orchestra.run.smithi097:> true 2024-04-15T00:34:11.463 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi097.front.sepia.ceph.com' 2024-04-15T00:34:11.464 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:34:11.464 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi100.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:34:11.558 DEBUG:teuthology.orchestra.run.smithi100:> true 2024-04-15T00:34:11.637 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi100.front.sepia.ceph.com' 2024-04-15T00:34:11.638 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-15T00:34:11.638 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi105.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-15T00:34:11.767 DEBUG:teuthology.orchestra.run.smithi105:> true 2024-04-15T00:34:11.853 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi105.front.sepia.ceph.com' 2024-04-15T00:34:11.854 INFO:teuthology.run_tasks:Running task clock... 2024-04-15T00:34:11.865 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-15T00:34:11.865 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T00:34:11.866 DEBUG:teuthology.orchestra.run.smithi097:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T00:34:11.868 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T00:34:11.868 DEBUG:teuthology.orchestra.run.smithi100:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T00:34:11.870 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-15T00:34:11.871 DEBUG:teuthology.orchestra.run.smithi105:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T00:34:11.901 INFO:teuthology.orchestra.run.smithi097.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T00:34:11.903 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T00:34:11.920 INFO:teuthology.orchestra.run.smithi097.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T00:34:11.920 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T00:34:11.924 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-15T00:34:11.941 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-15T00:34:11.951 INFO:teuthology.orchestra.run.smithi100.stderr:sudo: ntpd: command not found 2024-04-15T00:34:11.951 INFO:teuthology.orchestra.run.smithi097.stderr:sudo: ntpd: command not found 2024-04-15T00:34:11.965 INFO:teuthology.orchestra.run.smithi100.stdout:506 Cannot talk to daemon 2024-04-15T00:34:11.965 INFO:teuthology.orchestra.run.smithi097.stdout:506 Cannot talk to daemon 2024-04-15T00:34:11.971 INFO:teuthology.orchestra.run.smithi105.stderr:sudo: ntpd: command not found 2024-04-15T00:34:11.981 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T00:34:11.982 INFO:teuthology.orchestra.run.smithi097.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T00:34:11.985 INFO:teuthology.orchestra.run.smithi105.stdout:506 Cannot talk to daemon 2024-04-15T00:34:11.998 INFO:teuthology.orchestra.run.smithi100.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T00:34:11.999 INFO:teuthology.orchestra.run.smithi097.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T00:34:12.002 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-15T00:34:12.019 INFO:teuthology.orchestra.run.smithi105.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-15T00:34:12.054 INFO:teuthology.orchestra.run.smithi097.stderr:bash: line 1: ntpq: command not found 2024-04-15T00:34:12.055 INFO:teuthology.orchestra.run.smithi100.stderr:bash: line 1: ntpq: command not found 2024-04-15T00:34:12.057 INFO:teuthology.orchestra.run.smithi097.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T00:34:12.057 INFO:teuthology.orchestra.run.smithi097.stdout:=============================================================================== 2024-04-15T00:34:12.057 INFO:teuthology.orchestra.run.smithi097.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.057 INFO:teuthology.orchestra.run.smithi097.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.057 INFO:teuthology.orchestra.run.smithi097.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.058 INFO:teuthology.orchestra.run.smithi097.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.059 INFO:teuthology.orchestra.run.smithi100.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T00:34:12.059 INFO:teuthology.orchestra.run.smithi100.stdout:=============================================================================== 2024-04-15T00:34:12.059 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.059 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.059 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.059 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.073 INFO:teuthology.orchestra.run.smithi105.stderr:bash: line 1: ntpq: command not found 2024-04-15T00:34:12.076 INFO:teuthology.orchestra.run.smithi105.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T00:34:12.076 INFO:teuthology.orchestra.run.smithi105.stdout:=============================================================================== 2024-04-15T00:34:12.076 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.076 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.076 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.076 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:34:12.076 INFO:teuthology.run_tasks:Running task pexec... 2024-04-15T00:34:12.097 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-15T00:34:12.097 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi097.front.sepia.ceph.com 2024-04-15T00:34:12.097 DEBUG:teuthology.orchestra.run.smithi097:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T00:34:12.098 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi100.front.sepia.ceph.com 2024-04-15T00:34:12.098 DEBUG:teuthology.orchestra.run.smithi100:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T00:34:12.098 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi105.front.sepia.ceph.com 2024-04-15T00:34:12.099 DEBUG:teuthology.orchestra.run.smithi105:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-15T00:34:12.711 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:04 ago on Mon 15 Apr 2024 12:33:08 AM UTC. 2024-04-15T00:34:12.713 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:04 ago on Mon 15 Apr 2024 12:33:08 AM UTC. 2024-04-15T00:34:12.731 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:03 ago on Mon 15 Apr 2024 12:33:09 AM UTC. 2024-04-15T00:34:12.998 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:34:12.998 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:12.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:34:13.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:34:13.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:34:13.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:34:13.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:34:13.006 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.007 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:34:13.008 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:34:13.009 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:34:13.010 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:34:13.011 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.012 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:34:13.013 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.014 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:34:13.015 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.016 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.017 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.019 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:34:13.019 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:34:13.019 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:34:13.019 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.019 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:34:13.020 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:34:13.021 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.022 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.023 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.024 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.025 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:34:13.026 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.027 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:34:13.065 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:34:13.065 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:34:13.081 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:34:13.081 INFO:teuthology.orchestra.run.smithi097.stdout: Package Architecture Version Repository Size 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 3.1 M 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 9.8 M 2024-04-15T00:34:13.082 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:34:13.083 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:34:13.083 INFO:teuthology.orchestra.run.smithi100.stdout: Package Architecture Version Repository Size 2024-04-15T00:34:13.083 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:34:13.083 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:34:13.083 INFO:teuthology.orchestra.run.smithi100.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T00:34:13.083 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 3.1 M 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 9.8 M 2024-04-15T00:34:13.084 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:34:13.087 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:34:13.088 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:34:13.089 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:34:13.090 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 3.1 M 2024-04-15T00:34:13.090 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 9.8 M 2024-04-15T00:34:13.090 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:34:13.642 INFO:teuthology.orchestra.run.smithi100.stdout:runc-1.1.12-2.el9.x86_64.rpm 11 MB/s | 3.1 MB 00:00 2024-04-15T00:34:13.642 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:34:13.642 INFO:teuthology.orchestra.run.smithi100.stdout:Total 5.6 MB/s | 3.1 MB 00:00 2024-04-15T00:34:13.678 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:34:13.683 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:34:13.684 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:34:13.764 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:34:13.765 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:34:13.966 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:34:14.033 INFO:teuthology.orchestra.run.smithi105.stdout:runc-1.1.12-2.el9.x86_64.rpm 4.7 MB/s | 3.1 MB 00:00 2024-04-15T00:34:14.033 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:34:14.033 INFO:teuthology.orchestra.run.smithi105.stdout:Total 3.3 MB/s | 3.1 MB 00:00 2024-04-15T00:34:14.062 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:14.069 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:34:14.075 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:34:14.075 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:34:14.155 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:34:14.155 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:34:14.357 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:34:14.461 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:14.646 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:15.029 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:15.029 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:34:15.029 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:34:15.029 INFO:teuthology.orchestra.run.smithi100.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T00:34:15.029 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:34:15.029 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:34:15.054 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:15.273 DEBUG:teuthology.parallel:result is None 2024-04-15T00:34:15.395 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:15.395 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:34:15.395 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:34:15.396 INFO:teuthology.orchestra.run.smithi105.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T00:34:15.396 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:34:15.396 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:34:15.664 DEBUG:teuthology.parallel:result is None 2024-04-15T00:34:17.685 INFO:teuthology.orchestra.run.smithi097.stdout:runc-1.1.12-2.el9.x86_64.rpm 715 kB/s | 3.1 MB 00:04 2024-04-15T00:34:17.685 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:34:17.686 INFO:teuthology.orchestra.run.smithi097.stdout:Total 695 kB/s | 3.1 MB 00:04 2024-04-15T00:34:17.723 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:34:17.730 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:34:17.730 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:34:17.811 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:34:17.812 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:34:18.034 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:34:18.129 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:18.736 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:19.063 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-15T00:34:19.063 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:34:19.063 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:34:19.063 INFO:teuthology.orchestra.run.smithi097.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-15T00:34:19.063 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:34:19.063 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:34:19.332 DEBUG:teuthology.parallel:result is None 2024-04-15T00:34:19.332 INFO:teuthology.run_tasks:Running task install... 2024-04-15T00:34:19.342 DEBUG:teuthology.task.install:project ceph 2024-04-15T00:34:19.342 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'}} 2024-04-15T00:34:19.342 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T00:34:19.342 INFO:teuthology.task.install:Using flavor: default 2024-04-15T00:34:19.348 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-04-15T00:34:19.348 INFO:teuthology.task.install:extra packages: [] 2024-04-15T00:34:19.348 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'tag': None, 'wait_for_package': False} 2024-04-15T00:34:19.349 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:34:19.351 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'tag': None, 'wait_for_package': False} 2024-04-15T00:34:19.351 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:34:19.353 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'tag': None, 'wait_for_package': False} 2024-04-15T00:34:19.353 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:34:19.496 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/ 2024-04-15T00:34:19.497 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2114.ga9a752df 2024-04-15T00:34:19.504 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/ 2024-04-15T00:34:19.504 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2114.ga9a752df 2024-04-15T00:34:19.575 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/ 2024-04-15T00:34:19.576 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2114.ga9a752df 2024-04-15T00:34:19.610 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T00:34:19.610 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-15T00:34:19.610 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T00:34:19.637 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-04-15T00:34:19.638 DEBUG:teuthology.orchestra.run.smithi097:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/a9a752df26c63acad72e1b3569fd79a515ca0765/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T00:34:19.676 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T00:34:19.676 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-04-15T00:34:19.676 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T00:34:19.684 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-15T00:34:19.684 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-15T00:34:19.684 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-15T00:34:19.705 DEBUG:teuthology.orchestra.run.smithi097:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-04-15T00:34:19.709 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-04-15T00:34:19.709 DEBUG:teuthology.orchestra.run.smithi100:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/a9a752df26c63acad72e1b3569fd79a515ca0765/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T00:34:19.716 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-04-15T00:34:19.717 DEBUG:teuthology.orchestra.run.smithi105:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/a9a752df26c63acad72e1b3569fd79a515ca0765/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-15T00:34:19.781 DEBUG:teuthology.orchestra.run.smithi100:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-04-15T00:34:19.785 DEBUG:teuthology.orchestra.run.smithi097:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-04-15T00:34:19.787 DEBUG:teuthology.orchestra.run.smithi105:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-04-15T00:34:19.852 INFO:teuthology.orchestra.run.smithi097.stdout:check_obsoletes = 1 2024-04-15T00:34:19.853 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum clean all 2024-04-15T00:34:19.865 DEBUG:teuthology.orchestra.run.smithi100:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-04-15T00:34:19.873 DEBUG:teuthology.orchestra.run.smithi105:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-04-15T00:34:19.933 INFO:teuthology.orchestra.run.smithi100.stdout:check_obsoletes = 1 2024-04-15T00:34:19.935 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum clean all 2024-04-15T00:34:19.940 INFO:teuthology.orchestra.run.smithi105.stdout:check_obsoletes = 1 2024-04-15T00:34:19.941 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum clean all 2024-04-15T00:34:20.098 INFO:teuthology.orchestra.run.smithi097.stdout:74 files removed 2024-04-15T00:34:20.125 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-radosgw 2024-04-15T00:34:20.193 INFO:teuthology.orchestra.run.smithi100.stdout:74 files removed 2024-04-15T00:34:20.193 INFO:teuthology.orchestra.run.smithi105.stdout:74 files removed 2024-04-15T00:34:20.219 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-radosgw 2024-04-15T00:34:20.220 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-radosgw 2024-04-15T00:34:20.733 INFO:teuthology.orchestra.run.smithi097.stdout:ceph packages for x86_64 267 kB/s | 83 kB 00:00 2024-04-15T00:34:20.922 INFO:teuthology.orchestra.run.smithi105.stdout:ceph packages for x86_64 206 kB/s | 83 kB 00:00 2024-04-15T00:34:20.973 INFO:teuthology.orchestra.run.smithi100.stdout:ceph packages for x86_64 182 kB/s | 83 kB 00:00 2024-04-15T00:34:21.115 INFO:teuthology.orchestra.run.smithi097.stdout:ceph noarch packages 35 kB/s | 11 kB 00:00 2024-04-15T00:34:21.340 INFO:teuthology.orchestra.run.smithi105.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-15T00:34:21.390 INFO:teuthology.orchestra.run.smithi100.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-15T00:34:21.518 INFO:teuthology.orchestra.run.smithi097.stdout:ceph source packages 5.1 kB/s | 1.9 kB 00:00 2024-04-15T00:34:21.732 INFO:teuthology.orchestra.run.smithi100.stdout:ceph source packages 6.3 kB/s | 1.9 kB 00:00 2024-04-15T00:34:21.748 INFO:teuthology.orchestra.run.smithi105.stdout:ceph source packages 5.2 kB/s | 1.9 kB 00:00 2024-04-15T00:34:21.945 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS-9 - AppStream 21 MB/s | 8.1 MB 00:00 2024-04-15T00:34:22.234 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS-9 - AppStream 18 MB/s | 8.1 MB 00:00 2024-04-15T00:34:22.267 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS-9 - AppStream 17 MB/s | 8.1 MB 00:00 2024-04-15T00:34:23.554 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS-9 - BaseOS 8.7 MB/s | 2.5 MB 00:00 2024-04-15T00:34:23.859 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS-9 - BaseOS 8.4 MB/s | 2.5 MB 00:00 2024-04-15T00:34:23.876 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS-9 - BaseOS 8.2 MB/s | 2.5 MB 00:00 2024-04-15T00:34:25.342 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - BaseOS 7.9 MB/s | 8.0 MB 00:01 2024-04-15T00:34:32.259 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - AppStream 3.2 MB/s | 19 MB 00:05 2024-04-15T00:34:33.060 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - BaseOS 910 kB/s | 8.0 MB 00:09 2024-04-15T00:34:33.374 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - BaseOS 910 kB/s | 8.0 MB 00:09 2024-04-15T00:34:36.293 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - CRB 15 MB/s | 6.2 MB 00:00 2024-04-15T00:34:37.641 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - AppStream 6.0 MB/s | 19 MB 00:03 2024-04-15T00:34:37.802 INFO:teuthology.orchestra.run.smithi100.stdout:CentOS Stream 9 - Extras packages 57 kB/s | 16 kB 00:00 2024-04-15T00:34:41.853 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - CRB 9.1 MB/s | 6.2 MB 00:00 2024-04-15T00:34:42.047 INFO:teuthology.orchestra.run.smithi100.stdout:Extra Packages for Enterprise Linux 5.1 MB/s | 21 MB 00:04 2024-04-15T00:34:43.693 INFO:teuthology.orchestra.run.smithi105.stdout:CentOS Stream 9 - Extras packages 34 kB/s | 16 kB 00:00 2024-04-15T00:34:44.961 INFO:teuthology.orchestra.run.smithi105.stdout:Extra Packages for Enterprise Linux 19 MB/s | 21 MB 00:01 2024-04-15T00:34:47.178 INFO:teuthology.orchestra.run.smithi100.stdout:lab-extras 35 kB/s | 1.7 kB 00:00 2024-04-15T00:34:48.460 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - AppStream 1.3 MB/s | 19 MB 00:14 2024-04-15T00:34:49.741 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:34:49.741 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:34:49.741 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:34:49.741 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.741 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:34:49.741 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.742 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:34:49.743 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.744 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:34:49.745 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:34:49.746 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.747 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.748 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.749 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:34:49.750 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:34:50.111 INFO:teuthology.orchestra.run.smithi105.stdout:lab-extras 19 kB/s | 1.7 kB 00:00 2024-04-15T00:34:50.262 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-radosgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 9.9 M 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout:Upgrading: 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: librados2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.4 M 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: librbd1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-base x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.3 M 2024-04-15T00:34:50.265 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 21 M 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-selinux x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 25 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: libcephfs2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 746 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: libradosstriper1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 501 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: librgw2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.2 M 2024-04-15T00:34:50.266 INFO:teuthology.orchestra.run.smithi100.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-ceph-argparse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 45 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 131 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cephfs x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 162 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rados x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 320 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 298 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 99 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T00:34:50.267 INFO:teuthology.orchestra.run.smithi100.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout:Installing weak dependencies: 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout:Install 30 Packages 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout:Upgrade 2 Packages 2024-04-15T00:34:50.268 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:34:50.269 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 59 M 2024-04-15T00:34:50.269 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:34:51.462 INFO:teuthology.orchestra.run.smithi100.stdout:(1/32): ceph-base-19.0.0-2114.ga9a752df.el7.x86 5.2 MB/s | 5.3 MB 00:01 2024-04-15T00:34:51.529 INFO:teuthology.orchestra.run.smithi100.stdout:(2/32): ceph-selinux-19.0.0-2114.ga9a752df.el7. 378 kB/s | 25 kB 00:00 2024-04-15T00:34:51.929 INFO:teuthology.orchestra.run.smithi100.stdout:(3/32): libcephfs2-19.0.0-2114.ga9a752df.el7.x8 1.8 MB/s | 746 kB 00:00 2024-04-15T00:34:52.030 INFO:teuthology.orchestra.run.smithi100.stdout:(4/32): libradosstriper1-19.0.0-2114.ga9a752df. 4.9 MB/s | 501 kB 00:00 2024-04-15T00:34:52.663 INFO:teuthology.orchestra.run.smithi100.stdout:(5/32): ceph-common-19.0.0-2114.ga9a752df.el7.x 9.2 MB/s | 21 MB 00:02 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:34:52.691 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.692 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.693 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.694 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.695 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:34:52.696 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.697 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.698 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.699 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.700 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.700 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:34:52.730 INFO:teuthology.orchestra.run.smithi100.stdout:(6/32): librgw2-19.0.0-2114.ga9a752df.el7.x86_6 7.4 MB/s | 5.2 MB 00:00 2024-04-15T00:34:52.797 INFO:teuthology.orchestra.run.smithi100.stdout:(7/32): python3-ceph-argparse-19.0.0-2114.ga9a7 338 kB/s | 45 kB 00:00 2024-04-15T00:34:52.822 INFO:teuthology.orchestra.run.smithi100.stdout:(8/32): python3-ceph-common-19.0.0-2114.ga9a752 1.4 MB/s | 131 kB 00:00 2024-04-15T00:34:52.848 INFO:teuthology.orchestra.run.smithi100.stdout:(9/32): python3-cephfs-19.0.0-2114.ga9a752df.el 3.1 MB/s | 162 kB 00:00 2024-04-15T00:34:52.898 INFO:teuthology.orchestra.run.smithi100.stdout:(10/32): python3-rados-19.0.0-2114.ga9a752df.el 4.2 MB/s | 320 kB 00:00 2024-04-15T00:34:52.923 INFO:teuthology.orchestra.run.smithi100.stdout:(11/32): python3-rbd-19.0.0-2114.ga9a752df.el7. 3.9 MB/s | 298 kB 00:00 2024-04-15T00:34:52.948 INFO:teuthology.orchestra.run.smithi100.stdout:(12/32): python3-rgw-19.0.0-2114.ga9a752df.el7. 1.9 MB/s | 99 kB 00:00 2024-04-15T00:34:53.235 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:34:53.237 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:34:53.237 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:34:53.237 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:34:53.237 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:34:53.237 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-radosgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 9.9 M 2024-04-15T00:34:53.237 INFO:teuthology.orchestra.run.smithi105.stdout:Upgrading: 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: librados2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.4 M 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: librbd1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-base x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.3 M 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 21 M 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-selinux x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 25 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 746 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-15T00:34:53.238 INFO:teuthology.orchestra.run.smithi105.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: libradosstriper1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 501 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: librgw2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.2 M 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-argparse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 45 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 131 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cephfs x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 162 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rados x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 320 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 298 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 99 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-15T00:34:53.239 INFO:teuthology.orchestra.run.smithi105.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout:Installing weak dependencies: 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout:Install 30 Packages 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout:Upgrade 2 Packages 2024-04-15T00:34:53.240 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:34:53.241 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 59 M 2024-04-15T00:34:53.241 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:34:53.365 INFO:teuthology.orchestra.run.smithi100.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 242 kB/s | 107 kB 00:00 2024-04-15T00:34:53.465 INFO:teuthology.orchestra.run.smithi100.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 310 kB/s | 160 kB 00:00 2024-04-15T00:34:53.491 INFO:teuthology.orchestra.run.smithi100.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 361 kB/s | 45 kB 00:00 2024-04-15T00:34:53.783 INFO:teuthology.orchestra.run.smithi100.stdout:(16/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.0 MB/s | 292 kB 00:00 2024-04-15T00:34:53.833 INFO:teuthology.orchestra.run.smithi100.stdout:(17/32): librdkafka-1.6.1-102.el9.x86_64.rpm 1.8 MB/s | 662 kB 00:00 2024-04-15T00:34:53.852 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.2 MB 00:01 2024-04-15T00:34:53.883 INFO:teuthology.orchestra.run.smithi100.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 422 kB/s | 42 kB 00:00 2024-04-15T00:34:53.942 INFO:teuthology.orchestra.run.smithi100.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 2.0 MB/s | 221 kB 00:00 2024-04-15T00:34:53.992 INFO:teuthology.orchestra.run.smithi100.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 330 kB/s | 36 kB 00:00 2024-04-15T00:34:54.051 INFO:teuthology.orchestra.run.smithi100.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 436 kB/s | 47 kB 00:00 2024-04-15T00:34:54.251 INFO:teuthology.orchestra.run.smithi100.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 1.2 MB/s | 309 kB 00:00 2024-04-15T00:34:54.301 INFO:teuthology.orchestra.run.smithi100.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 520 kB/s | 26 kB 00:00 2024-04-15T00:34:54.360 INFO:teuthology.orchestra.run.smithi100.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 835 kB/s | 49 kB 00:00 2024-04-15T00:34:54.418 INFO:teuthology.orchestra.run.smithi100.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.1 MB/s | 67 kB 00:00 2024-04-15T00:34:54.477 INFO:teuthology.orchestra.run.smithi100.stdout:(26/32): libarrow-9.0.0-10.el9.x86_64.rpm 10 MB/s | 4.4 MB 00:00 2024-04-15T00:34:54.535 INFO:teuthology.orchestra.run.smithi100.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 3.2 MB/s | 192 kB 00:00 2024-04-15T00:34:54.561 INFO:teuthology.orchestra.run.smithi100.stdout:(28/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 5.8 MB/s | 838 kB 00:00 2024-04-15T00:34:54.611 INFO:teuthology.orchestra.run.smithi100.stdout:(29/32): thrift-0.15.0-2.el9.x86_64.rpm 21 MB/s | 1.6 MB 00:00 2024-04-15T00:34:55.478 INFO:teuthology.orchestra.run.smithi097.stdout:CentOS Stream 9 - Extras packages 36 kB/s | 16 kB 00:00 2024-04-15T00:34:55.795 INFO:teuthology.orchestra.run.smithi100.stdout:(30/32): librbd1-19.0.0-2114.ga9a752df.el7.x86_ 2.7 MB/s | 3.1 MB 00:01 2024-04-15T00:34:55.850 INFO:teuthology.orchestra.run.smithi100.stdout:(31/32): librados2-19.0.0-2114.ga9a752df.el7.x8 2.6 MB/s | 3.4 MB 00:01 2024-04-15T00:34:56.020 INFO:teuthology.orchestra.run.smithi100.stdout:(32/32): ceph-radosgw-19.0.0-2114.ga9a752df.el7 1.8 MB/s | 9.9 MB 00:05 2024-04-15T00:34:56.023 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:34:56.023 INFO:teuthology.orchestra.run.smithi100.stdout:Total 10 MB/s | 59 MB 00:05 2024-04-15T00:34:56.120 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:34:56.164 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:34:56.164 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:34:56.658 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:34:56.658 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:34:56.680 INFO:teuthology.orchestra.run.smithi097.stdout:Extra Packages for Enterprise Linux 20 MB/s | 21 MB 00:01 2024-04-15T00:34:58.066 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:34:58.147 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T00:34:58.179 INFO:teuthology.orchestra.run.smithi105.stdout:(1/32): ceph-base-19.0.0-2114.ga9a752df.el7.x86 1.1 MB/s | 5.3 MB 00:04 2024-04-15T00:34:58.183 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T00:34:58.208 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T00:34:58.231 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T00:34:58.246 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T00:34:58.279 INFO:teuthology.orchestra.run.smithi105.stdout:(2/32): ceph-selinux-19.0.0-2114.ga9a752df.el7. 252 kB/s | 25 kB 00:00 2024-04-15T00:34:58.422 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T00:34:58.478 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T00:34:58.638 INFO:teuthology.orchestra.run.smithi105.stdout:(3/32): ceph-radosgw-19.0.0-2114.ga9a752df.el7. 1.9 MB/s | 9.9 MB 00:05 2024-04-15T00:34:58.807 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T00:34:58.868 INFO:teuthology.orchestra.run.smithi100.stdout: Upgrading : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:34:58.898 INFO:teuthology.orchestra.run.smithi105.stdout:(4/32): libradosstriper1-19.0.0-2114.ga9a752df. 1.9 MB/s | 501 kB 00:00 2024-04-15T00:34:58.966 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:34:59.022 INFO:teuthology.orchestra.run.smithi105.stdout:(5/32): libcephfs2-19.0.0-2114.ga9a752df.el7.x8 1.0 MB/s | 746 kB 00:00 2024-04-15T00:34:59.058 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 8/34 2024-04-15T00:34:59.097 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T00:34:59.122 INFO:teuthology.orchestra.run.smithi105.stdout:(6/32): python3-ceph-argparse-19.0.0-2114.ga9a7 452 kB/s | 45 kB 00:00 2024-04-15T00:34:59.166 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T00:34:59.195 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T00:34:59.239 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 11/34 2024-04-15T00:34:59.289 INFO:teuthology.orchestra.run.smithi105.stdout:(7/32): python3-ceph-common-19.0.0-2114.ga9a752 788 kB/s | 131 kB 00:00 2024-04-15T00:34:59.308 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T00:34:59.331 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T00:34:59.378 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T00:34:59.412 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T00:34:59.464 INFO:teuthology.orchestra.run.smithi105.stdout:(8/32): python3-cephfs-19.0.0-2114.ga9a752df.el 925 kB/s | 162 kB 00:00 2024-04-15T00:34:59.523 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T00:34:59.555 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T00:34:59.596 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T00:34:59.637 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T00:34:59.665 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T00:34:59.698 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T00:34:59.864 INFO:teuthology.orchestra.run.smithi105.stdout:(9/32): python3-rados-19.0.0-2114.ga9a752df.el7 800 kB/s | 320 kB 00:00 2024-04-15T00:35:00.017 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T00:35:00.045 INFO:teuthology.orchestra.run.smithi100.stdout: Upgrading : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T00:35:00.118 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T00:35:00.150 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 23/34 2024-04-15T00:35:00.189 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T00:35:00.266 INFO:teuthology.orchestra.run.smithi105.stdout:(10/32): python3-rbd-19.0.0-2114.ga9a752df.el7. 762 kB/s | 298 kB 00:00 2024-04-15T00:35:00.652 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T00:35:00.690 INFO:teuthology.orchestra.run.smithi105.stdout:(11/32): python3-rgw-19.0.0-2114.ga9a752df.el7. 229 kB/s | 99 kB 00:00 2024-04-15T00:35:00.693 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T00:35:00.752 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T00:35:00.806 INFO:teuthology.orchestra.run.smithi105.stdout:(12/32): boost-program-options-1.75.0-8.el9.x86 918 kB/s | 107 kB 00:00 2024-04-15T00:35:00.828 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 27/34 2024-04-15T00:35:00.858 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 28/34 2024-04-15T00:35:00.866 INFO:teuthology.orchestra.run.smithi105.stdout:(13/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 2.7 MB/s | 160 kB 00:00 2024-04-15T00:35:00.899 INFO:teuthology.orchestra.run.smithi105.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.3 MB/s | 45 kB 00:00 2024-04-15T00:35:00.991 INFO:teuthology.orchestra.run.smithi105.stdout:(15/32): librgw2-19.0.0-2114.ga9a752df.el7.x86_ 2.5 MB/s | 5.2 MB 00:02 2024-04-15T00:35:01.024 INFO:teuthology.orchestra.run.smithi105.stdout:(16/32): librdkafka-1.6.1-102.el9.x86_64.rpm 5.2 MB/s | 662 kB 00:00 2024-04-15T00:35:01.058 INFO:teuthology.orchestra.run.smithi105.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 1.2 MB/s | 42 kB 00:00 2024-04-15T00:35:01.100 INFO:teuthology.orchestra.run.smithi105.stdout:(18/32): qatlib-24.02.0-1.el9.x86_64.rpm 5.2 MB/s | 221 kB 00:00 2024-04-15T00:35:01.134 INFO:teuthology.orchestra.run.smithi105.stdout:(19/32): qatlib-service-24.02.0-1.el9.x86_64.rp 1.1 MB/s | 36 kB 00:00 2024-04-15T00:35:01.171 INFO:teuthology.orchestra.run.smithi105.stdout:(20/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.6 MB/s | 292 kB 00:00 2024-04-15T00:35:01.184 INFO:teuthology.orchestra.run.smithi105.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 947 kB/s | 47 kB 00:00 2024-04-15T00:35:01.426 INFO:teuthology.orchestra.run.smithi105.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 1.2 MB/s | 309 kB 00:00 2024-04-15T00:35:01.460 INFO:teuthology.orchestra.run.smithi105.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 787 kB/s | 26 kB 00:00 2024-04-15T00:35:01.493 INFO:teuthology.orchestra.run.smithi105.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 1.4 MB/s | 49 kB 00:00 2024-04-15T00:35:01.544 INFO:teuthology.orchestra.run.smithi105.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 1.3 MB/s | 67 kB 00:00 2024-04-15T00:35:01.819 INFO:teuthology.orchestra.run.smithi105.stdout:(26/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 3.0 MB/s | 838 kB 00:00 2024-04-15T00:35:01.838 INFO:teuthology.orchestra.run.smithi097.stdout:lab-extras 11 kB/s | 1.7 kB 00:00 2024-04-15T00:35:01.894 INFO:teuthology.orchestra.run.smithi105.stdout:(27/32): re2-20211101-3.el9.x86_64.rpm 2.5 MB/s | 192 kB 00:00 2024-04-15T00:35:02.369 INFO:teuthology.orchestra.run.smithi105.stdout:(28/32): thrift-0.15.0-2.el9.x86_64.rpm 3.3 MB/s | 1.6 MB 00:00 2024-04-15T00:35:02.653 INFO:teuthology.orchestra.run.smithi105.stdout:(29/32): libarrow-9.0.0-10.el9.x86_64.rpm 3.0 MB/s | 4.4 MB 00:01 2024-04-15T00:35:03.013 INFO:teuthology.orchestra.run.smithi105.stdout:(30/32): ceph-common-19.0.0-2114.ga9a752df.el7. 2.2 MB/s | 21 MB 00:09 2024-04-15T00:35:03.057 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:03.096 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:03.295 INFO:teuthology.orchestra.run.smithi105.stdout:(31/32): librbd1-19.0.0-2114.ga9a752df.el7.x86_ 4.9 MB/s | 3.1 MB 00:00 2024-04-15T00:35:03.679 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:03.732 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T00:35:03.811 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T00:35:03.811 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T00:35:03.811 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T00:35:03.811 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:03.850 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:04.402 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:35:04.402 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:35:04.402 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.403 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:35:04.404 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.405 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.406 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.407 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.408 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.409 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.410 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.411 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:04.720 INFO:teuthology.orchestra.run.smithi105.stdout:(32/32): librados2-19.0.0-2114.ga9a752df.el7.x8 1.4 MB/s | 3.4 MB 00:02 2024-04-15T00:35:04.724 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:04.725 INFO:teuthology.orchestra.run.smithi105.stdout:Total 5.1 MB/s | 59 MB 00:11 2024-04-15T00:35:04.823 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:35:04.857 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:35:04.857 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:35:04.953 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-radosgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 9.9 M 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout:Upgrading: 2024-04-15T00:35:04.955 INFO:teuthology.orchestra.run.smithi097.stdout: librados2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.4 M 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: librbd1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-base x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.3 M 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 21 M 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-selinux x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 25 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: libcephfs2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 746 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-15T00:35:04.956 INFO:teuthology.orchestra.run.smithi097.stdout: libradosstriper1 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 501 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: librgw2 x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 5.2 M 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-ceph-argparse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 45 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-ceph-common x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 131 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cephfs x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 162 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rados x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 320 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 298 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rgw x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 99 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-15T00:35:04.957 INFO:teuthology.orchestra.run.smithi097.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout:Installing weak dependencies: 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout:Install 30 Packages 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout:Upgrade 2 Packages 2024-04-15T00:35:04.958 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:04.959 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 59 M 2024-04-15T00:35:04.959 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:35:05.352 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:35:05.353 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:35:06.781 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:35:06.920 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T00:35:06.959 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T00:35:06.992 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T00:35:07.015 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T00:35:07.031 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T00:35:07.165 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T00:35:07.220 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T00:35:07.538 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T00:35:07.585 INFO:teuthology.orchestra.run.smithi105.stdout: Upgrading : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:07.677 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:07.706 INFO:teuthology.orchestra.run.smithi097.stdout:(1/32): ceph-base-19.0.0-2114.ga9a752df.el7.x86 2.1 MB/s | 5.3 MB 00:02 2024-04-15T00:35:07.766 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 8/34 2024-04-15T00:35:07.787 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T00:35:07.806 INFO:teuthology.orchestra.run.smithi097.stdout:(2/32): ceph-selinux-19.0.0-2114.ga9a752df.el7. 252 kB/s | 25 kB 00:00 2024-04-15T00:35:07.833 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T00:35:07.862 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T00:35:07.897 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 11/34 2024-04-15T00:35:07.968 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T00:35:08.005 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T00:35:08.040 INFO:teuthology.orchestra.run.smithi097.stdout:(3/32): libcephfs2-19.0.0-2114.ga9a752df.el7.x8 3.1 MB/s | 746 kB 00:00 2024-04-15T00:35:08.053 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T00:35:08.096 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T00:35:08.206 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T00:35:08.255 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T00:35:08.296 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T00:35:08.328 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T00:35:08.357 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T00:35:08.390 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T00:35:08.490 INFO:teuthology.orchestra.run.smithi097.stdout:(4/32): libradosstriper1-19.0.0-2114.ga9a752df. 1.1 MB/s | 501 kB 00:00 2024-04-15T00:35:08.705 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T00:35:08.737 INFO:teuthology.orchestra.run.smithi105.stdout: Upgrading : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T00:35:08.810 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T00:35:08.841 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 23/34 2024-04-15T00:35:08.884 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T00:35:09.347 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T00:35:09.372 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T00:35:09.436 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T00:35:09.511 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 27/34 2024-04-15T00:35:09.541 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 28/34 2024-04-15T00:35:09.707 INFO:teuthology.orchestra.run.smithi097.stdout:(5/32): librgw2-19.0.0-2114.ga9a752df.el7.x86_6 4.2 MB/s | 5.2 MB 00:01 2024-04-15T00:35:09.749 INFO:teuthology.orchestra.run.smithi097.stdout:(6/32): python3-ceph-argparse-19.0.0-2114.ga9a7 1.1 MB/s | 45 kB 00:00 2024-04-15T00:35:09.799 INFO:teuthology.orchestra.run.smithi097.stdout:(7/32): python3-ceph-common-19.0.0-2114.ga9a752 2.6 MB/s | 131 kB 00:00 2024-04-15T00:35:09.849 INFO:teuthology.orchestra.run.smithi097.stdout:(8/32): python3-cephfs-19.0.0-2114.ga9a752df.el 3.2 MB/s | 162 kB 00:00 2024-04-15T00:35:09.916 INFO:teuthology.orchestra.run.smithi097.stdout:(9/32): python3-rados-19.0.0-2114.ga9a752df.el7 4.7 MB/s | 320 kB 00:00 2024-04-15T00:35:09.983 INFO:teuthology.orchestra.run.smithi097.stdout:(10/32): python3-rbd-19.0.0-2114.ga9a752df.el7. 4.4 MB/s | 298 kB 00:00 2024-04-15T00:35:10.025 INFO:teuthology.orchestra.run.smithi097.stdout:(11/32): python3-rgw-19.0.0-2114.ga9a752df.el7. 2.3 MB/s | 99 kB 00:00 2024-04-15T00:35:10.158 INFO:teuthology.orchestra.run.smithi097.stdout:(12/32): boost-program-options-1.75.0-8.el9.x86 804 kB/s | 107 kB 00:00 2024-04-15T00:35:10.226 INFO:teuthology.orchestra.run.smithi097.stdout:(13/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 2.3 MB/s | 160 kB 00:00 2024-04-15T00:35:10.276 INFO:teuthology.orchestra.run.smithi097.stdout:(14/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 909 kB/s | 45 kB 00:00 2024-04-15T00:35:10.351 INFO:teuthology.orchestra.run.smithi097.stdout:(15/32): librdkafka-1.6.1-102.el9.x86_64.rpm 8.7 MB/s | 662 kB 00:00 2024-04-15T00:35:10.401 INFO:teuthology.orchestra.run.smithi097.stdout:(16/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 5.7 MB/s | 292 kB 00:00 2024-04-15T00:35:10.510 INFO:teuthology.orchestra.run.smithi097.stdout:(17/32): ceph-radosgw-19.0.0-2114.ga9a752df.el7 1.9 MB/s | 9.9 MB 00:05 2024-04-15T00:35:10.535 INFO:teuthology.orchestra.run.smithi097.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 317 kB/s | 42 kB 00:00 2024-04-15T00:35:10.585 INFO:teuthology.orchestra.run.smithi097.stdout:(19/32): qatlib-service-24.02.0-1.el9.x86_64.rp 721 kB/s | 36 kB 00:00 2024-04-15T00:35:10.636 INFO:teuthology.orchestra.run.smithi097.stdout:(20/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 947 kB/s | 47 kB 00:00 2024-04-15T00:35:10.669 INFO:teuthology.orchestra.run.smithi097.stdout:(21/32): qatlib-24.02.0-1.el9.x86_64.rpm 1.4 MB/s | 221 kB 00:00 2024-04-15T00:35:11.411 INFO:teuthology.orchestra.run.smithi097.stdout:(22/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 398 kB/s | 309 kB 00:00 2024-04-15T00:35:11.520 INFO:teuthology.orchestra.run.smithi097.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 240 kB/s | 26 kB 00:00 2024-04-15T00:35:11.629 INFO:teuthology.orchestra.run.smithi097.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 448 kB/s | 49 kB 00:00 2024-04-15T00:35:11.757 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:11.805 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:11.837 INFO:teuthology.orchestra.run.smithi097.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 323 kB/s | 67 kB 00:00 2024-04-15T00:35:12.358 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:12.400 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T00:35:12.476 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T00:35:12.477 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T00:35:12.477 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T00:35:12.477 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:12.509 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:13.346 INFO:teuthology.orchestra.run.smithi097.stdout:(26/32): ceph-common-19.0.0-2114.ga9a752df.el7. 2.5 MB/s | 21 MB 00:08 2024-04-15T00:35:13.379 INFO:teuthology.orchestra.run.smithi097.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 544 kB/s | 838 kB 00:01 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /sys 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /proc 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /mnt 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /var/tmp 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /home 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /root 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout:skipping the directory /tmp 2024-04-15T00:35:13.482 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:14.188 INFO:teuthology.orchestra.run.smithi097.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 228 kB/s | 192 kB 00:00 2024-04-15T00:35:14.395 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T00:35:14.419 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T00:35:14.419 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:14.419 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T00:35:14.419 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T00:35:14.420 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T00:35:14.420 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:14.421 INFO:teuthology.orchestra.run.smithi100.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T00:35:14.490 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T00:35:14.490 INFO:teuthology.orchestra.run.smithi100.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:14.671 INFO:teuthology.orchestra.run.smithi097.stdout:(29/32): librados2-19.0.0-2114.ga9a752df.el7.x8 7.0 MB/s | 3.4 MB 00:00 2024-04-15T00:35:15.055 INFO:teuthology.orchestra.run.smithi097.stdout:(30/32): librbd1-19.0.0-2114.ga9a752df.el7.x86_ 8.2 MB/s | 3.1 MB 00:00 2024-04-15T00:35:15.611 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 1/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 3/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 4/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 5/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 6/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 8/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 9/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 10/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 11/34 2024-04-15T00:35:15.612 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 13/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T00:35:15.613 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T00:35:15.614 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 33/34 2024-04-15T00:35:15.630 INFO:teuthology.orchestra.run.smithi097.stdout:(31/32): thrift-0.15.0-2.el9.x86_64.rpm 720 kB/s | 1.6 MB 00:02 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout:Upgraded: 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:35:16.821 INFO:teuthology.orchestra.run.smithi100.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T00:35:16.822 INFO:teuthology.orchestra.run.smithi100.stdout: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T00:35:16.823 INFO:teuthology.orchestra.run.smithi100.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T00:35:16.824 INFO:teuthology.orchestra.run.smithi100.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T00:35:16.824 INFO:teuthology.orchestra.run.smithi100.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T00:35:16.824 INFO:teuthology.orchestra.run.smithi100.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T00:35:16.824 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:16.824 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:17.150 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-test 2024-04-15T00:35:17.705 INFO:teuthology.orchestra.run.smithi097.stdout:(32/32): libarrow-9.0.0-10.el9.x86_64.rpm 643 kB/s | 4.4 MB 00:07 2024-04-15T00:35:17.710 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:17.710 INFO:teuthology.orchestra.run.smithi097.stdout:Total 4.6 MB/s | 59 MB 00:12 2024-04-15T00:35:17.744 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:00:30 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:17.809 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:35:17.845 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:35:17.845 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:35:18.031 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:18.031 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:18.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:18.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:18.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:18.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:18.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:18.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:18.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.037 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:18.038 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.039 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.040 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:18.103 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-test x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 48 M 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout: libcephsqlite x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 164 k 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-15T00:35:18.104 INFO:teuthology.orchestra.run.smithi100.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout:Install 6 Packages 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:18.105 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 49 M 2024-04-15T00:35:18.106 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 206 M 2024-04-15T00:35:18.106 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:35:18.356 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:35:18.356 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:35:18.594 INFO:teuthology.orchestra.run.smithi100.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 751 kB/s | 187 kB 00:00 2024-04-15T00:35:18.685 INFO:teuthology.orchestra.run.smithi100.stdout:(2/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 2.3 MB/s | 218 kB 00:00 2024-04-15T00:35:18.761 INFO:teuthology.orchestra.run.smithi100.stdout:(3/6): socat-1.7.4.1-5.el9.x86_64.rpm 4.0 MB/s | 305 kB 00:00 2024-04-15T00:35:18.819 INFO:teuthology.orchestra.run.smithi100.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.1 MB/s | 64 kB 00:00 2024-04-15T00:35:18.844 INFO:teuthology.orchestra.run.smithi100.stdout:(5/6): libcephsqlite-19.0.0-2114.ga9a752df.el7. 327 kB/s | 164 kB 00:00 2024-04-15T00:35:19.771 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:35:19.844 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-15T00:35:19.885 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-15T00:35:19.910 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-15T00:35:19.933 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T00:35:19.949 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-15T00:35:20.091 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T00:35:20.147 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-15T00:35:20.520 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-15T00:35:20.561 INFO:teuthology.orchestra.run.smithi097.stdout: Upgrading : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:20.653 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:20.739 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 8/34 2024-04-15T00:35:20.771 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T00:35:20.834 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 9/34 2024-04-15T00:35:20.863 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-15T00:35:20.906 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 11/34 2024-04-15T00:35:20.974 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T00:35:20.999 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T00:35:21.045 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 13/34 2024-04-15T00:35:21.080 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-15T00:35:21.189 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-15T00:35:21.223 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-15T00:35:21.264 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-15T00:35:21.296 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-15T00:35:21.325 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-15T00:35:21.358 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-15T00:35:21.636 INFO:teuthology.orchestra.run.smithi100.stdout:(6/6): ceph-test-19.0.0-2114.ga9a752df.el7.x86_ 14 MB/s | 48 MB 00:03 2024-04-15T00:35:21.639 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:21.639 INFO:teuthology.orchestra.run.smithi100.stdout:Total 14 MB/s | 49 MB 00:03 2024-04-15T00:35:21.671 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-15T00:35:21.690 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:35:21.704 INFO:teuthology.orchestra.run.smithi097.stdout: Upgrading : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T00:35:21.710 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:35:21.710 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:35:21.794 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 22/34 2024-04-15T00:35:21.826 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 23/34 2024-04-15T00:35:21.864 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-15T00:35:22.079 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:22.079 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /sys 2024-04-15T00:35:22.079 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /proc 2024-04-15T00:35:22.079 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /mnt 2024-04-15T00:35:22.080 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /var/tmp 2024-04-15T00:35:22.080 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /home 2024-04-15T00:35:22.080 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /root 2024-04-15T00:35:22.080 INFO:teuthology.orchestra.run.smithi105.stdout:skipping the directory /tmp 2024-04-15T00:35:22.080 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:22.104 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:35:22.105 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:35:22.323 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-15T00:35:22.349 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T00:35:22.404 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 26/34 2024-04-15T00:35:22.480 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 27/34 2024-04-15T00:35:22.510 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 28/34 2024-04-15T00:35:22.691 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:35:22.771 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T00:35:22.811 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T00:35:22.851 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T00:35:22.894 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T00:35:22.922 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T00:35:23.016 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T00:35:23.041 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T00:35:23.041 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:23.041 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T00:35:23.041 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T00:35:23.041 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T00:35:23.041 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:23.043 INFO:teuthology.orchestra.run.smithi105.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T00:35:23.118 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T00:35:23.118 INFO:teuthology.orchestra.run.smithi105.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:24.214 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 1/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 3/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 4/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 5/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 6/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:24.215 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 8/34 2024-04-15T00:35:24.216 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 9/34 2024-04-15T00:35:24.216 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 10/34 2024-04-15T00:35:24.216 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 11/34 2024-04-15T00:35:24.216 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T00:35:24.216 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 13/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T00:35:24.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T00:35:24.218 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T00:35:24.218 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T00:35:24.218 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T00:35:24.218 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T00:35:24.218 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T00:35:24.218 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T00:35:24.219 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T00:35:24.219 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T00:35:24.219 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T00:35:24.219 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:24.219 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T00:35:24.219 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 33/34 2024-04-15T00:35:24.814 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:24.856 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:25.098 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:25.098 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:25.098 INFO:teuthology.orchestra.run.smithi105.stdout:Upgraded: 2024-04-15T00:35:25.098 INFO:teuthology.orchestra.run.smithi105.stdout: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.098 INFO:teuthology.orchestra.run.smithi105.stdout: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.098 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T00:35:25.099 INFO:teuthology.orchestra.run.smithi105.stdout: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T00:35:25.100 INFO:teuthology.orchestra.run.smithi105.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T00:35:25.101 INFO:teuthology.orchestra.run.smithi105.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T00:35:25.101 INFO:teuthology.orchestra.run.smithi105.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T00:35:25.101 INFO:teuthology.orchestra.run.smithi105.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T00:35:25.101 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:25.101 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:35:25.384 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-test 2024-04-15T00:35:25.413 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 29/34 2024-04-15T00:35:25.451 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T00:35:25.544 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 30/34 2024-04-15T00:35:25.545 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-15T00:35:25.545 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-15T00:35:25.545 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:25.578 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:25.981 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:35 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:35:26.269 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:35:26.269 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:35:26.270 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.271 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:35:26.272 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:35:26.273 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.274 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.275 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.276 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.277 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.278 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.279 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.279 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:26.344 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-test x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 48 M 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: libcephsqlite x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 164 k 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-15T00:35:26.345 INFO:teuthology.orchestra.run.smithi105.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-15T00:35:26.346 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:26.346 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:35:26.346 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:26.346 INFO:teuthology.orchestra.run.smithi105.stdout:Install 6 Packages 2024-04-15T00:35:26.346 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:26.347 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 49 M 2024-04-15T00:35:26.347 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 206 M 2024-04-15T00:35:26.347 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:35:27.016 INFO:teuthology.orchestra.run.smithi105.stdout:(1/6): libcephsqlite-19.0.0-2114.ga9a752df.el7. 372 kB/s | 164 kB 00:00 2024-04-15T00:35:27.082 INFO:teuthology.orchestra.run.smithi105.stdout:(2/6): jq-1.6-16.el9.x86_64.rpm 369 kB/s | 187 kB 00:00 2024-04-15T00:35:27.232 INFO:teuthology.orchestra.run.smithi105.stdout:(3/6): socat-1.7.4.1-5.el9.x86_64.rpm 2.0 MB/s | 305 kB 00:00 2024-04-15T00:35:27.283 INFO:teuthology.orchestra.run.smithi105.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2024-04-15T00:35:27.404 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T00:35:27.491 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T00:35:27.600 INFO:teuthology.orchestra.run.smithi105.stdout:(5/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 373 kB/s | 218 kB 00:00 2024-04-15T00:35:29.926 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T00:35:29.927 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 1/6 2024-04-15T00:35:29.927 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2/6 2024-04-15T00:35:29.927 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-15T00:35:29.927 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-15T00:35:29.927 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-15T00:35:30.378 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: jq-1.6-16.el9.x86_64 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:30.379 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:30.597 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph 2024-04-15T00:35:31.196 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:00:44 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:31.488 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:31.488 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:31.488 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:31.488 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:31.489 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:31.490 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:31.491 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:31.492 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.493 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.494 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.495 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.496 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.497 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:31.497 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.497 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.497 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.497 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:31.571 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout: ceph x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 6.6 k 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mds x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 2.4 M 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 1.5 M 2024-04-15T00:35:31.574 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 248 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mon x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 4.7 M 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-osd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 17 M 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T00:35:31.575 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-collections 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-15T00:35:31.576 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout:Install 36 Packages 2024-04-15T00:35:31.577 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:31.578 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 30 M 2024-04-15T00:35:31.578 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 107 M 2024-04-15T00:35:31.578 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:35:32.091 INFO:teuthology.orchestra.run.smithi105.stdout:(6/6): ceph-test-19.0.0-2114.ga9a752df.el7.x86_ 8.6 MB/s | 48 MB 00:05 2024-04-15T00:35:32.092 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:32.093 INFO:teuthology.orchestra.run.smithi105.stdout:Total 8.5 MB/s | 49 MB 00:05 2024-04-15T00:35:32.140 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:35:32.159 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:35:32.159 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:35:32.324 INFO:teuthology.orchestra.run.smithi100.stdout:(1/36): ceph-19.0.0-2114.ga9a752df.el7.x86_64.r 29 kB/s | 6.6 kB 00:00 2024-04-15T00:35:32.555 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:35:32.555 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:35:33.133 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:35:33.158 INFO:teuthology.orchestra.run.smithi100.stdout:(2/36): ceph-mds-19.0.0-2114.ga9a752df.el7.x86_ 2.2 MB/s | 2.4 MB 00:01 2024-04-15T00:35:33.208 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T00:35:33.258 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T00:35:33.298 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T00:35:33.341 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T00:35:33.358 INFO:teuthology.orchestra.run.smithi100.stdout:(3/36): ceph-mgr-19.0.0-2114.ga9a752df.el7.x86_ 1.2 MB/s | 1.5 MB 00:01 2024-04-15T00:35:33.369 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T00:35:33.467 INFO:teuthology.orchestra.run.smithi100.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2114.ga9a7 2.2 MB/s | 248 kB 00:00 2024-04-15T00:35:33.617 INFO:teuthology.orchestra.run.smithi100.stdout:(5/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.6 MB/s | 253 kB 00:00 2024-04-15T00:35:33.676 INFO:teuthology.orchestra.run.smithi100.stdout:(6/36): ceph-mon-19.0.0-2114.ga9a752df.el7.x86_ 3.5 MB/s | 4.7 MB 00:01 2024-04-15T00:35:33.751 INFO:teuthology.orchestra.run.smithi100.stdout:(7/36): python3-cryptography-36.0.1-4.el9.x86_6 9.2 MB/s | 1.2 MB 00:00 2024-04-15T00:35:33.793 INFO:teuthology.orchestra.run.smithi100.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 3.2 MB/s | 135 kB 00:00 2024-04-15T00:35:33.818 INFO:teuthology.orchestra.run.smithi100.stdout:(9/36): python3-ply-3.11-14.el9.noarch.rpm 749 kB/s | 106 kB 00:00 2024-04-15T00:35:33.844 INFO:teuthology.orchestra.run.smithi100.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 2.4 MB/s | 125 kB 00:00 2024-04-15T00:35:33.886 INFO:teuthology.orchestra.run.smithi100.stdout:(11/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.1 MB/s | 215 kB 00:00 2024-04-15T00:35:33.911 INFO:teuthology.orchestra.run.smithi100.stdout:(12/36): lua-5.4.4-4.el9.x86_64.rpm 2.8 MB/s | 188 kB 00:00 2024-04-15T00:35:33.936 INFO:teuthology.orchestra.run.smithi100.stdout:(13/36): python3-mako-1.1.4-6.el9.noarch.rpm 3.4 MB/s | 172 kB 00:00 2024-04-15T00:35:33.961 INFO:teuthology.orchestra.run.smithi100.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 691 kB/s | 35 kB 00:00 2024-04-15T00:35:33.986 INFO:teuthology.orchestra.run.smithi100.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 1.0 MB/s | 51 kB 00:00 2024-04-15T00:35:34.012 INFO:teuthology.orchestra.run.smithi100.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 827 kB/s | 42 kB 00:00 2024-04-15T00:35:34.170 INFO:teuthology.orchestra.run.smithi100.stdout:(17/36): luarocks-3.9.2-1.el9.noarch.rpm 955 kB/s | 151 kB 00:00 2024-04-15T00:35:34.212 INFO:teuthology.orchestra.run.smithi100.stdout:(18/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.0 MB/s | 43 kB 00:00 2024-04-15T00:35:34.304 INFO:teuthology.orchestra.run.smithi100.stdout:(19/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.5 MB/s | 172 kB 00:00 2024-04-15T00:35:34.363 INFO:teuthology.orchestra.run.smithi100.stdout:(20/36): python3-cherrypy-18.6.1-2.el9.noarch.r 6.1 MB/s | 358 kB 00:00 2024-04-15T00:35:34.405 INFO:teuthology.orchestra.run.smithi100.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 258 kB/s | 11 kB 00:00 2024-04-15T00:35:34.430 INFO:teuthology.orchestra.run.smithi100.stdout:(22/36): lua-devel-5.4.4-4.el9.x86_64.rpm 50 kB/s | 22 kB 00:00 2024-04-15T00:35:34.455 INFO:teuthology.orchestra.run.smithi100.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 351 kB/s | 18 kB 00:00 2024-04-15T00:35:34.648 INFO:teuthology.orchestra.run.smithi100.stdout:(24/36): ceph-osd-19.0.0-2114.ga9a752df.el7.x86 11 MB/s | 17 MB 00:01 2024-04-15T00:35:34.672 INFO:teuthology.orchestra.run.smithi100.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 101 kB/s | 19 kB 00:00 2024-04-15T00:35:34.723 INFO:teuthology.orchestra.run.smithi100.stdout:(26/36): python3-jaraco-collections-3.0.0-8.el9 79 kB/s | 23 kB 00:00 2024-04-15T00:35:34.748 INFO:teuthology.orchestra.run.smithi100.stdout:(27/36): python3-logutils-0.3.5-21.el9.noarch.r 907 kB/s | 46 kB 00:00 2024-04-15T00:35:34.782 INFO:teuthology.orchestra.run.smithi100.stdout:(28/36): python3-jaraco-text-3.2.0-6.el9.noarch 148 kB/s | 20 kB 00:00 2024-04-15T00:35:34.784 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /sys 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /proc 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /mnt 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /var/tmp 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /home 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /root 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout:skipping the directory /tmp 2024-04-15T00:35:34.785 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:34.807 INFO:teuthology.orchestra.run.smithi100.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 950 kB/s | 79 kB 00:00 2024-04-15T00:35:34.832 INFO:teuthology.orchestra.run.smithi100.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 328 kB/s | 16 kB 00:00 2024-04-15T00:35:34.857 INFO:teuthology.orchestra.run.smithi100.stdout:(31/36): python3-pecan-1.4.2-3.el9.noarch.rpm 2.4 MB/s | 272 kB 00:00 2024-04-15T00:35:34.883 INFO:teuthology.orchestra.run.smithi100.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.2 MB/s | 90 kB 00:00 2024-04-15T00:35:34.908 INFO:teuthology.orchestra.run.smithi100.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 471 kB/s | 36 kB 00:00 2024-04-15T00:35:34.934 INFO:teuthology.orchestra.run.smithi100.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-04-15T00:35:34.959 INFO:teuthology.orchestra.run.smithi100.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 399 kB/s | 20 kB 00:00 2024-04-15T00:35:34.984 INFO:teuthology.orchestra.run.smithi100.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.1 MB/s | 427 kB 00:00 2024-04-15T00:35:34.988 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:34.988 INFO:teuthology.orchestra.run.smithi100.stdout:Total 8.8 MB/s | 30 MB 00:03 2024-04-15T00:35:35.119 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:35:35.158 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:35:35.159 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:35:35.565 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:35:35.565 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:35:35.726 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T00:35:35.750 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 32/34 2024-04-15T00:35:35.751 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:35.751 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-15T00:35:35.751 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T00:35:35.751 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-15T00:35:35.751 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:35.753 INFO:teuthology.orchestra.run.smithi097.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T00:35:35.838 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-15T00:35:35.838 INFO:teuthology.orchestra.run.smithi097.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:36.897 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:35:36.962 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T00:35:36.991 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:36.992 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 1/34 2024-04-15T00:35:36.992 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2/34 2024-04-15T00:35:36.992 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 3/34 2024-04-15T00:35:36.992 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 4/34 2024-04-15T00:35:36.992 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 5/34 2024-04-15T00:35:36.993 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_6 6/34 2024-04-15T00:35:36.993 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 7/34 2024-04-15T00:35:36.993 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7. 8/34 2024-04-15T00:35:36.993 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x8 9/34 2024-04-15T00:35:36.993 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 10/34 2024-04-15T00:35:36.994 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 11/34 2024-04-15T00:35:36.994 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 12/34 2024-04-15T00:35:36.994 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 13/34 2024-04-15T00:35:36.994 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-15T00:35:36.994 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-15T00:35:36.994 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-15T00:35:36.995 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-15T00:35:36.995 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-15T00:35:36.995 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-15T00:35:36.995 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-15T00:35:36.995 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-15T00:35:36.996 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-15T00:35:36.996 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-15T00:35:36.996 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-15T00:35:36.996 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-15T00:35:36.996 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-15T00:35:36.996 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-15T00:35:36.997 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-15T00:35:36.998 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T00:35:36.999 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-15T00:35:36.999 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-15T00:35:36.999 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 31/34 2024-04-15T00:35:36.999 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-15T00:35:37.000 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 33/34 2024-04-15T00:35:37.023 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T00:35:37.094 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T00:35:37.146 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T00:35:37.179 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T00:35:37.272 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T00:35:37.350 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T00:35:37.399 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T00:35:37.433 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T00:35:37.464 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T00:35:37.498 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-15T00:35:37.531 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-15T00:35:37.572 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-15T00:35:37.615 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-15T00:35:37.649 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-15T00:35:37.688 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-15T00:35:37.760 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-15T00:35:37.818 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T00:35:37.902 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T00:35:37.907 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-15T00:35:37.988 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-15T00:35:38.041 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-15T00:35:38.080 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-15T00:35:38.136 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-15T00:35:38.136 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:38.136 INFO:teuthology.orchestra.run.smithi097.stdout:Upgraded: 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-radosgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-selinux-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-15T00:35:38.137 INFO:teuthology.orchestra.run.smithi097.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: libradosstriper1-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: librgw2-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: python3-ceph-argparse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: python3-ceph-common-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.138 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: re2-1:20211101-3.el9.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:38.139 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:35:38.162 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-15T00:35:38.221 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-15T00:35:38.413 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-test 2024-04-15T00:35:38.422 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-15T00:35:38.467 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-15T00:35:38.544 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-15T00:35:38.633 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-15T00:35:38.678 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-15T00:35:38.799 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-15T00:35:38.972 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 31/36 2024-04-15T00:35:39.001 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T00:35:39.009 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:00:38 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:35:39.026 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T00:35:39.026 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:39.026 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T00:35:39.026 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T00:35:39.027 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T00:35:39.027 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:39.295 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:35:39.296 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.297 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:35:39.298 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:35:39.299 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:35:39.300 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.301 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.302 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.303 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.304 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:39.363 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-test x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 48 M 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout: libcephsqlite x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 164 k 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-15T00:35:39.364 INFO:teuthology.orchestra.run.smithi097.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout:Install 6 Packages 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:39.365 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 49 M 2024-04-15T00:35:39.366 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 206 M 2024-04-15T00:35:39.366 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:35:39.841 INFO:teuthology.orchestra.run.smithi097.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 720 kB/s | 187 kB 00:00 2024-04-15T00:35:39.925 INFO:teuthology.orchestra.run.smithi097.stdout:(2/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 2.6 MB/s | 218 kB 00:00 2024-04-15T00:35:40.025 INFO:teuthology.orchestra.run.smithi097.stdout:(3/6): libcephsqlite-19.0.0-2114.ga9a752df.el7. 369 kB/s | 164 kB 00:00 2024-04-15T00:35:40.151 INFO:teuthology.orchestra.run.smithi097.stdout:(4/6): socat-1.7.4.1-5.el9.x86_64.rpm 1.3 MB/s | 305 kB 00:00 2024-04-15T00:35:40.176 INFO:teuthology.orchestra.run.smithi097.stdout:(5/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 424 kB/s | 64 kB 00:00 2024-04-15T00:35:40.402 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T00:35:40.402 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 1/6 2024-04-15T00:35:40.402 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2/6 2024-04-15T00:35:40.402 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-15T00:35:40.402 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-15T00:35:40.402 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-15T00:35:40.461 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T00:35:40.490 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T00:35:40.490 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:40.490 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T00:35:40.490 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T00:35:40.490 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T00:35:40.490 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:40.848 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-15T00:35:40.848 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: jq-1.6-16.el9.x86_64 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:40.849 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:35:40.928 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T00:35:40.952 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T00:35:40.952 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:40.952 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T00:35:40.952 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T00:35:40.952 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T00:35:40.952 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:41.102 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph 2024-04-15T00:35:41.179 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T00:35:41.202 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T00:35:41.202 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:41.202 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T00:35:41.202 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T00:35:41.203 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T00:35:41.203 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:41.268 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T00:35:41.697 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:00:51 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:35:41.987 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:35:41.988 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.989 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.990 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.991 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.992 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.993 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.994 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.995 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.996 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:41.997 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:41.998 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:42.018 INFO:teuthology.orchestra.run.smithi097.stdout:(6/6): ceph-test-19.0.0-2114.ga9a752df.el7.x86_ 20 MB/s | 48 MB 00:02 2024-04-15T00:35:42.021 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:42.021 INFO:teuthology.orchestra.run.smithi097.stdout:Total 18 MB/s | 49 MB 00:02 2024-04-15T00:35:42.062 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:35:42.065 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:42.065 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:35:42.065 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:42.065 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:35:42.065 INFO:teuthology.orchestra.run.smithi105.stdout: ceph x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 6.6 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mds x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 2.4 M 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 1.5 M 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 248 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mon x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 4.7 M 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-osd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 17 M 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-15T00:35:42.066 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-collections 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T00:35:42.067 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:42.068 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:35:42.069 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:42.069 INFO:teuthology.orchestra.run.smithi105.stdout:Install 36 Packages 2024-04-15T00:35:42.069 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:42.069 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 30 M 2024-04-15T00:35:42.069 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 107 M 2024-04-15T00:35:42.069 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:35:42.072 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:35:42.093 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:35:42.093 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:35:42.486 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:35:42.486 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:35:42.727 INFO:teuthology.orchestra.run.smithi105.stdout:(1/36): ceph-19.0.0-2114.ga9a752df.el7.x86_64.r 32 kB/s | 6.6 kB 00:00 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 1/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 3/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 4/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 5/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 6/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-15T00:35:43.043 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T00:35:43.044 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T00:35:43.045 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T00:35:43.062 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:35:43.136 INFO:teuthology.orchestra.run.smithi105.stdout:(2/36): ceph-mds-19.0.0-2114.ga9a752df.el7.x86_ 3.8 MB/s | 2.4 MB 00:00 2024-04-15T00:35:43.161 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-15T00:35:43.208 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-15T00:35:43.248 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-15T00:35:43.269 INFO:teuthology.orchestra.run.smithi105.stdout:(3/36): ceph-mgr-19.0.0-2114.ga9a752df.el7.x86_ 2.0 MB/s | 1.5 MB 00:00 2024-04-15T00:35:43.293 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-15T00:35:43.329 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T00:35:43.803 INFO:teuthology.orchestra.run.smithi105.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2114.ga9a7 466 kB/s | 248 kB 00:00 2024-04-15T00:35:43.964 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T00:35:43.964 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:43.964 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:35:43.964 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T00:35:43.965 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T00:35:43.966 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:43.967 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:43.970 INFO:teuthology.orchestra.run.smithi105.stdout:(5/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.5 MB/s | 253 kB 00:00 2024-04-15T00:35:44.079 INFO:teuthology.orchestra.run.smithi105.stdout:(6/36): python3-cryptography-36.0.1-4.el9.x86_6 11 MB/s | 1.2 MB 00:00 2024-04-15T00:35:44.154 INFO:teuthology.orchestra.run.smithi105.stdout:(7/36): ceph-mon-19.0.0-2114.ga9a752df.el7.x86_ 3.3 MB/s | 4.7 MB 00:01 2024-04-15T00:35:44.179 INFO:teuthology.orchestra.run.smithi105.stdout:(8/36): python3-ply-3.11-14.el9.noarch.rpm 1.0 MB/s | 106 kB 00:00 2024-04-15T00:35:44.229 INFO:teuthology.orchestra.run.smithi105.stdout:(9/36): python3-requests-2.25.1-8.el9.noarch.rp 2.4 MB/s | 125 kB 00:00 2024-04-15T00:35:44.280 INFO:teuthology.orchestra.run.smithi105.stdout:(10/36): python3-urllib3-1.26.5-5.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-04-15T00:35:44.305 INFO:teuthology.orchestra.run.smithi105.stdout:(11/36): python3-pycparser-2.20-6.el9.noarch.rp 896 kB/s | 135 kB 00:00 2024-04-15T00:35:44.330 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-base 2024-04-15T00:35:44.497 INFO:teuthology.orchestra.run.smithi105.stdout:(12/36): lua-5.4.4-4.el9.x86_64.rpm 869 kB/s | 188 kB 00:00 2024-04-15T00:35:44.530 INFO:teuthology.orchestra.run.smithi105.stdout:(13/36): python3-mako-1.1.4-6.el9.noarch.rpm 765 kB/s | 172 kB 00:00 2024-04-15T00:35:44.556 INFO:teuthology.orchestra.run.smithi105.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 590 kB/s | 35 kB 00:00 2024-04-15T00:35:44.589 INFO:teuthology.orchestra.run.smithi105.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 870 kB/s | 51 kB 00:00 2024-04-15T00:35:44.606 INFO:teuthology.orchestra.run.smithi105.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 830 kB/s | 42 kB 00:00 2024-04-15T00:35:44.765 INFO:teuthology.orchestra.run.smithi105.stdout:(17/36): ceph-osd-19.0.0-2114.ga9a752df.el7.x86 10 MB/s | 17 MB 00:01 2024-04-15T00:35:44.807 INFO:teuthology.orchestra.run.smithi105.stdout:(18/36): lua-devel-5.4.4-4.el9.x86_64.rpm 102 kB/s | 22 kB 00:00 2024-04-15T00:35:44.923 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:00:57 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:45.212 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:45.213 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:45.214 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:45.215 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:45.216 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.217 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.218 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:45.219 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.220 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.221 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:45.221 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.221 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.221 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.221 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:45.221 INFO:teuthology.orchestra.run.smithi100.stdout:Package ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:35:45.281 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:45.281 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:35:45.281 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:45.324 INFO:teuthology.orchestra.run.smithi105.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 81 kB/s | 43 kB 00:00 2024-04-15T00:35:45.357 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install cephadm 2024-04-15T00:35:45.416 INFO:teuthology.orchestra.run.smithi105.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 187 kB/s | 151 kB 00:00 2024-04-15T00:35:45.533 INFO:teuthology.orchestra.run.smithi105.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 92 kB/s | 11 kB 00:00 2024-04-15T00:35:45.558 INFO:teuthology.orchestra.run.smithi105.stdout:(22/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 229 kB/s | 172 kB 00:00 2024-04-15T00:35:45.633 INFO:teuthology.orchestra.run.smithi105.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 176 kB/s | 18 kB 00:00 2024-04-15T00:35:45.659 INFO:teuthology.orchestra.run.smithi105.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 231 kB/s | 23 kB 00:00 2024-04-15T00:35:45.751 INFO:teuthology.orchestra.run.smithi105.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 166 kB/s | 19 kB 00:00 2024-04-15T00:35:45.768 INFO:teuthology.orchestra.run.smithi105.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 181 kB/s | 20 kB 00:00 2024-04-15T00:35:45.826 INFO:teuthology.orchestra.run.smithi105.stdout:(27/36): python3-cherrypy-18.6.1-2.el9.noarch.r 714 kB/s | 358 kB 00:00 2024-04-15T00:35:45.843 INFO:teuthology.orchestra.run.smithi105.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 503 kB/s | 46 kB 00:00 2024-04-15T00:35:45.935 INFO:teuthology.orchestra.run.smithi105.stdout:(29/36): python3-portend-3.1.0-2.el9.noarch.rpm 179 kB/s | 16 kB 00:00 2024-04-15T00:35:45.945 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:00:58 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:45.960 INFO:teuthology.orchestra.run.smithi105.stdout:(30/36): python3-more-itertools-8.12.0-2.el9.no 410 kB/s | 79 kB 00:00 2024-04-15T00:35:46.061 INFO:teuthology.orchestra.run.smithi105.stdout:(31/36): python3-tempora-5.0.0-2.el9.noarch.rpm 358 kB/s | 36 kB 00:00 2024-04-15T00:35:46.128 INFO:teuthology.orchestra.run.smithi105.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 468 kB/s | 90 kB 00:00 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:46.234 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.235 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:46.236 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.237 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:46.238 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:46.239 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.240 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.241 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.242 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.243 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.243 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:46.243 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.243 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.243 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.243 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:46.253 INFO:teuthology.orchestra.run.smithi105.stdout:(33/36): python3-pecan-1.4.2-3.el9.noarch.rpm 638 kB/s | 272 kB 00:00 2024-04-15T00:35:46.302 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:46.302 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout: cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 749 k 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 749 k 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 755 k 2024-04-15T00:35:46.303 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:35:46.353 INFO:teuthology.orchestra.run.smithi105.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 200 kB/s | 20 kB 00:00 2024-04-15T00:35:46.412 INFO:teuthology.orchestra.run.smithi105.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 654 kB/s | 230 kB 00:00 2024-04-15T00:35:46.712 INFO:teuthology.orchestra.run.smithi105.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 732 kB/s | 427 kB 00:00 2024-04-15T00:35:46.716 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:46.716 INFO:teuthology.orchestra.run.smithi105.stdout:Total 6.5 MB/s | 30 MB 00:04 2024-04-15T00:35:46.756 INFO:teuthology.orchestra.run.smithi100.stdout:cephadm-19.0.0-2114.ga9a752df.el7.noarch.rpm 1.6 MB/s | 749 kB 00:00 2024-04-15T00:35:46.756 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:46.756 INFO:teuthology.orchestra.run.smithi100.stdout:Total 1.6 MB/s | 749 kB 00:00 2024-04-15T00:35:46.757 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:35:46.761 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:35:46.762 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:35:46.767 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:35:46.767 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:35:46.842 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:35:46.858 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:35:46.898 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:35:46.898 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:35:47.221 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:47.302 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:47.307 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:35:47.307 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:35:47.726 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:47.949 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 5/6 2024-04-15T00:35:48.029 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T00:35:48.031 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:48.031 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:48.031 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:35:48.031 INFO:teuthology.orchestra.run.smithi100.stdout: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:35:48.031 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:48.031 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:48.258 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T00:35:48.620 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:35:48.682 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T00:35:48.714 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T00:35:48.742 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T00:35:48.811 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T00:35:48.849 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T00:35:48.861 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:01 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:48.882 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T00:35:48.973 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T00:35:49.062 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T00:35:49.110 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T00:35:49.144 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T00:35:49.154 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:49.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.158 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:49.159 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.159 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:49.159 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.159 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:49.159 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.160 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.161 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.162 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.163 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.164 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:49.174 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T00:35:49.209 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-15T00:35:49.224 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repo Size 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 145 k 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:49.225 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:35:49.226 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:49.226 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 145 k 2024-04-15T00:35:49.226 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 435 k 2024-04-15T00:35:49.226 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:35:49.242 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-15T00:35:49.283 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-15T00:35:49.334 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-15T00:35:49.368 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-15T00:35:49.408 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-15T00:35:49.480 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-15T00:35:49.616 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-15T00:35:49.654 INFO:teuthology.orchestra.run.smithi100.stdout:ceph-immutable-object-cache-19.0.0-2114.ga9a752 339 kB/s | 145 kB 00:00 2024-04-15T00:35:49.654 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:49.655 INFO:teuthology.orchestra.run.smithi100.stdout:Total 337 kB/s | 145 kB 00:00 2024-04-15T00:35:49.655 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:35:49.662 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:35:49.662 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:35:49.700 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-15T00:35:49.715 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:35:49.716 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:35:49.751 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-15T00:35:49.798 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-15T00:35:49.847 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-15T00:35:49.881 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:35:49.904 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-15T00:35:49.930 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:35:49.954 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:35:49.954 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:49.955 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T00:35:49.955 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:50.087 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-15T00:35:50.136 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-15T00:35:50.222 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-15T00:35:50.311 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-15T00:35:50.357 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-15T00:35:50.476 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-15T00:35:50.523 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 6/6 2024-04-15T00:35:50.523 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 1/6 2024-04-15T00:35:50.523 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2/6 2024-04-15T00:35:50.523 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-15T00:35:50.524 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-15T00:35:50.524 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-15T00:35:50.642 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 31/36 2024-04-15T00:35:50.671 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T00:35:50.697 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T00:35:50.697 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:50.697 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T00:35:50.697 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T00:35:50.697 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T00:35:50.697 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-test-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: jq-1.6-16.el9.x86_64 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: libcephsqlite-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:50.922 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:35:50.944 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:35:50.944 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:50.944 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:35:50.944 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:50.944 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:50.944 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:51.197 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph 2024-04-15T00:35:51.223 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-mgr 2024-04-15T00:35:51.793 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:00:50 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:35:51.826 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:04 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:52.086 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:35:52.086 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:35:52.086 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:35:52.086 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.087 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.088 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:35:52.089 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.090 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.091 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.092 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.093 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.094 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:52.095 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.096 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.096 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.096 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.122 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:52.123 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:52.124 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.125 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:52.126 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.127 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.128 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:52.129 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.130 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.131 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.132 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:52.133 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T00:35:52.133 INFO:teuthology.orchestra.run.smithi100.stdout:Package ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:35:52.158 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T00:35:52.158 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:52.158 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T00:35:52.158 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T00:35:52.158 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T00:35:52.158 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:52.159 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:35:52.160 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:52.160 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: ceph x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 6.6 k 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mds x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 2.4 M 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 1.5 M 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 248 k 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mon x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 4.7 M 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-osd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 17 M 2024-04-15T00:35:52.161 INFO:teuthology.orchestra.run.smithi097.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-15T00:35:52.162 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-collections 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-15T00:35:52.163 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:35:52.164 INFO:teuthology.orchestra.run.smithi097.stdout:Install 36 Packages 2024-04-15T00:35:52.165 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:35:52.165 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 30 M 2024-04-15T00:35:52.165 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 107 M 2024-04-15T00:35:52.165 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:35:52.190 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:52.192 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:35:52.192 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:35:52.264 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T00:35:52.606 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T00:35:52.629 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T00:35:52.629 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:52.629 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T00:35:52.629 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T00:35:52.629 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T00:35:52.629 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:52.856 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T00:35:52.857 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:05 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:35:52.879 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T00:35:52.880 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:35:52.880 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T00:35:52.880 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T00:35:52.880 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T00:35:52.880 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:52.930 INFO:teuthology.orchestra.run.smithi097.stdout:(1/36): ceph-19.0.0-2114.ga9a752df.el7.x86_64.r 23 kB/s | 6.6 kB 00:00 2024-04-15T00:35:52.947 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T00:35:53.148 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:35:53.148 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:35:53.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:35:53.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:35:53.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:35:53.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.157 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:53.216 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 3.5 M 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 32 k 2024-04-15T00:35:53.217 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 15 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout:Install 12 Packages 2024-04-15T00:35:53.218 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:35:53.219 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 8.6 M 2024-04-15T00:35:53.219 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 103 M 2024-04-15T00:35:53.219 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:35:53.289 INFO:teuthology.orchestra.run.smithi097.stdout:(2/36): ceph-mgr-19.0.0-2114.ga9a752df.el7.x86_ 2.3 MB/s | 1.5 MB 00:00 2024-04-15T00:35:53.914 INFO:teuthology.orchestra.run.smithi097.stdout:(3/36): ceph-mon-19.0.0-2114.ga9a752df.el7.x86_ 4.8 MB/s | 4.7 MB 00:00 2024-04-15T00:35:54.014 INFO:teuthology.orchestra.run.smithi097.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2114.ga9a7 2.4 MB/s | 248 kB 00:00 2024-04-15T00:35:54.256 INFO:teuthology.orchestra.run.smithi097.stdout:(5/36): ceph-osd-19.0.0-2114.ga9a752df.el7.x86_ 17 MB/s | 17 MB 00:00 2024-04-15T00:35:54.258 INFO:teuthology.orchestra.run.smithi100.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2114.ga9a 54 kB/s | 15 kB 00:00 2024-04-15T00:35:54.275 INFO:teuthology.orchestra.run.smithi100.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2114.ga9 105 kB/s | 32 kB 00:00 2024-04-15T00:35:54.298 INFO:teuthology.orchestra.run.smithi097.stdout:(6/36): ceph-mds-19.0.0-2114.ga9a752df.el7.x86_ 1.4 MB/s | 2.4 MB 00:01 2024-04-15T00:35:54.707 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T00:35:54.707 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 1/36 2024-04-15T00:35:54.707 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 3/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 4/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 5/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 6/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-15T00:35:54.708 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T00:35:54.709 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T00:35:54.710 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T00:35:54.710 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T00:35:54.710 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T00:35:54.710 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T00:35:54.711 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T00:35:54.711 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T00:35:54.711 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T00:35:54.711 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T00:35:54.712 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T00:35:54.712 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T00:35:54.712 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T00:35:54.712 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T00:35:54.715 INFO:teuthology.orchestra.run.smithi097.stdout:(7/36): python3-ply-3.11-14.el9.noarch.rpm 256 kB/s | 106 kB 00:00 2024-04-15T00:35:54.942 INFO:teuthology.orchestra.run.smithi100.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2114.ga9a752d 3.6 MB/s | 3.5 MB 00:00 2024-04-15T00:35:55.215 INFO:teuthology.orchestra.run.smithi097.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 270 kB/s | 135 kB 00:00 2024-04-15T00:35:55.235 INFO:teuthology.orchestra.run.smithi100.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 281 kB/s | 269 kB 00:00 2024-04-15T00:35:55.407 INFO:teuthology.orchestra.run.smithi097.stdout:(9/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 182 kB/s | 253 kB 00:01 2024-04-15T00:35:55.580 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T00:35:55.580 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:55.580 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:35:55.580 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:55.580 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:55.580 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T00:35:55.581 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T00:35:55.582 INFO:teuthology.orchestra.run.smithi105.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T00:35:55.583 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:55.584 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:35:55.701 INFO:teuthology.orchestra.run.smithi100.stdout:(5/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.1 MB/s | 548 kB 00:00 2024-04-15T00:35:55.743 INFO:teuthology.orchestra.run.smithi100.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 466 kB/s | 19 kB 00:00 2024-04-15T00:35:55.757 INFO:teuthology.orchestra.run.smithi097.stdout:(10/36): python3-cryptography-36.0.1-4.el9.x86_ 836 kB/s | 1.2 MB 00:01 2024-04-15T00:35:55.827 INFO:teuthology.orchestra.run.smithi100.stdout:(7/12): protobuf-compiler-3.14.0-13.el9.x86_64. 976 kB/s | 863 kB 00:00 2024-04-15T00:35:55.867 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-base 2024-04-15T00:35:55.941 INFO:teuthology.orchestra.run.smithi097.stdout:(11/36): python3-requests-2.25.1-8.el9.noarch.r 172 kB/s | 125 kB 00:00 2024-04-15T00:35:56.050 INFO:teuthology.orchestra.run.smithi097.stdout:(12/36): python3-urllib3-1.26.5-5.el9.noarch.rp 334 kB/s | 215 kB 00:00 2024-04-15T00:35:56.083 INFO:teuthology.orchestra.run.smithi097.stdout:(13/36): lua-5.4.4-4.el9.x86_64.rpm 579 kB/s | 188 kB 00:00 2024-04-15T00:35:56.183 INFO:teuthology.orchestra.run.smithi097.stdout:(14/36): python3-pytz-2021.1-5.el9.noarch.rpm 509 kB/s | 51 kB 00:00 2024-04-15T00:35:56.185 INFO:teuthology.orchestra.run.smithi100.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 403 kB/s | 144 kB 00:00 2024-04-15T00:35:56.259 INFO:teuthology.orchestra.run.smithi097.stdout:(15/36): python3-markupsafe-1.1.1-12.el9.x86_64 166 kB/s | 35 kB 00:00 2024-04-15T00:35:56.277 INFO:teuthology.orchestra.run.smithi100.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 335 kB/s | 31 kB 00:00 2024-04-15T00:35:56.284 INFO:teuthology.orchestra.run.smithi097.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 416 kB/s | 42 kB 00:00 2024-04-15T00:35:56.309 INFO:teuthology.orchestra.run.smithi097.stdout:(17/36): python3-mako-1.1.4-6.el9.noarch.rpm 468 kB/s | 172 kB 00:00 2024-04-15T00:35:56.361 INFO:teuthology.orchestra.run.smithi100.stdout:(10/12): protobuf-3.14.0-13.el9.x86_64.rpm 491 kB/s | 1.0 MB 00:02 2024-04-15T00:35:56.376 INFO:teuthology.orchestra.run.smithi097.stdout:(18/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 653 kB/s | 43 kB 00:00 2024-04-15T00:35:56.411 INFO:teuthology.orchestra.run.smithi100.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.4 MB/s | 188 kB 00:00 2024-04-15T00:35:56.418 INFO:teuthology.orchestra.run.smithi097.stdout:(19/36): luarocks-3.9.2-1.el9.noarch.rpm 1.1 MB/s | 151 kB 00:00 2024-04-15T00:35:56.443 INFO:teuthology.orchestra.run.smithi097.stdout:(20/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 2.5 MB/s | 172 kB 00:00 2024-04-15T00:35:56.461 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:06 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:35:56.478 INFO:teuthology.orchestra.run.smithi097.stdout:(21/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 320 kB/s | 11 kB 00:00 2024-04-15T00:35:56.503 INFO:teuthology.orchestra.run.smithi097.stdout:(22/36): python3-jaraco-classes-3.2.1-5.el9.noa 712 kB/s | 18 kB 00:00 2024-04-15T00:35:56.519 INFO:teuthology.orchestra.run.smithi097.stdout:(23/36): lua-devel-5.4.4-4.el9.x86_64.rpm 86 kB/s | 22 kB 00:00 2024-04-15T00:35:56.536 INFO:teuthology.orchestra.run.smithi097.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 690 kB/s | 23 kB 00:00 2024-04-15T00:35:56.562 INFO:teuthology.orchestra.run.smithi097.stdout:(25/36): python3-cherrypy-18.6.1-2.el9.noarch.r 2.5 MB/s | 358 kB 00:00 2024-04-15T00:35:56.579 INFO:teuthology.orchestra.run.smithi097.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 330 kB/s | 19 kB 00:00 2024-04-15T00:35:56.595 INFO:teuthology.orchestra.run.smithi097.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 334 kB/s | 20 kB 00:00 2024-04-15T00:35:56.616 INFO:teuthology.orchestra.run.smithi097.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 851 kB/s | 46 kB 00:00 2024-04-15T00:35:56.628 INFO:teuthology.orchestra.run.smithi100.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 2.3 MB/s | 2.0 MB 00:00 2024-04-15T00:35:56.630 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:56.631 INFO:teuthology.orchestra.run.smithi100.stdout:Total 2.5 MB/s | 8.6 MB 00:03 2024-04-15T00:35:56.638 INFO:teuthology.orchestra.run.smithi097.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 1.8 MB/s | 79 kB 00:00 2024-04-15T00:35:56.655 INFO:teuthology.orchestra.run.smithi097.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 432 kB/s | 16 kB 00:00 2024-04-15T00:35:56.680 INFO:teuthology.orchestra.run.smithi097.stdout:(31/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.1 MB/s | 90 kB 00:00 2024-04-15T00:35:56.682 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:35:56.697 INFO:teuthology.orchestra.run.smithi097.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 852 kB/s | 36 kB 00:00 2024-04-15T00:35:56.701 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:35:56.701 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:35:56.722 INFO:teuthology.orchestra.run.smithi097.stdout:(33/36): python3-pecan-1.4.2-3.el9.noarch.rpm 2.1 MB/s | 272 kB 00:00 2024-04-15T00:35:56.748 INFO:teuthology.orchestra.run.smithi097.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 3.3 MB/s | 230 kB 00:00 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:35:56.750 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:35:56.751 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.752 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.753 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:35:56.754 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.755 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.756 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.757 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:56.759 INFO:teuthology.orchestra.run.smithi105.stdout:Package ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:35:56.764 INFO:teuthology.orchestra.run.smithi097.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 476 kB/s | 20 kB 00:00 2024-04-15T00:35:56.814 INFO:teuthology.orchestra.run.smithi097.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.6 MB/s | 427 kB 00:00 2024-04-15T00:35:56.816 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:56.816 INFO:teuthology.orchestra.run.smithi097.stdout:Total 6.5 MB/s | 30 MB 00:04 2024-04-15T00:35:56.818 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:35:56.819 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:35:56.820 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:35:56.890 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install cephadm 2024-04-15T00:35:56.891 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:35:56.892 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:35:56.952 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:35:56.991 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:35:56.991 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:35:57.402 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:35:57.403 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:35:57.431 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:35:57.481 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:07 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:35:57.512 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T00:35:57.555 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T00:35:57.601 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T00:35:57.640 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T00:35:57.737 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T00:35:57.768 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:35:57.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:35:57.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.775 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.776 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.777 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.778 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.778 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:35:57.837 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout: cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 749 k 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:57.838 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 749 k 2024-04-15T00:35:57.839 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 755 k 2024-04-15T00:35:57.839 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:35:57.867 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T00:35:57.962 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T00:35:58.004 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T00:35:58.032 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T00:35:58.064 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 10/12 2024-04-15T00:35:58.307 INFO:teuthology.orchestra.run.smithi105.stdout:cephadm-19.0.0-2114.ga9a752df.el7.noarch.rpm 1.6 MB/s | 749 kB 00:00 2024-04-15T00:35:58.307 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:35:58.307 INFO:teuthology.orchestra.run.smithi105.stdout:Total 1.6 MB/s | 749 kB 00:00 2024-04-15T00:35:58.308 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:35:58.312 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:35:58.313 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:35:58.318 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:35:58.318 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:35:58.401 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:35:58.724 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:35:58.772 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:58.784 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-15T00:35:58.816 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-15T00:35:58.852 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:58.852 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-15T00:35:58.924 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-15T00:35:58.976 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-15T00:35:59.009 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-15T00:35:59.101 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-15T00:35:59.118 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 11/12 2024-04-15T00:35:59.148 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T00:35:59.188 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-15T00:35:59.229 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-15T00:35:59.264 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-15T00:35:59.264 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:59.294 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-15T00:35:59.328 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-15T00:35:59.362 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-15T00:35:59.403 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-15T00:35:59.445 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-15T00:35:59.480 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-15T00:35:59.519 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-15T00:35:59.565 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:35:59.565 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:59.565 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:35:59.565 INFO:teuthology.orchestra.run.smithi105.stdout: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:35:59.565 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:35:59.565 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:35:59.590 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-15T00:35:59.727 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-15T00:35:59.780 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T00:35:59.810 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-15T00:35:59.871 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-15T00:35:59.910 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-15T00:35:59.958 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-15T00:36:00.014 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-15T00:36:00.211 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-15T00:36:00.264 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-15T00:36:00.341 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-15T00:36:00.385 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:10 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:00.430 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-15T00:36:00.448 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T00:36:00.448 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 1/12 2024-04-15T00:36:00.448 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 2/12 2024-04-15T00:36:00.448 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 3/12 2024-04-15T00:36:00.448 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T00:36:00.449 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T00:36:00.477 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-15T00:36:00.595 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-15T00:36:00.673 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:00.673 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:00.674 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:00.675 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:00.676 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:00.677 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:00.678 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:00.679 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.680 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.681 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:00.682 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.683 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.684 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.685 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.685 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:00.685 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.685 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.685 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.685 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:00.740 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 145 k 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:00.741 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:00.742 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:00.742 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:36:00.742 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:00.742 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 145 k 2024-04-15T00:36:00.742 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 435 k 2024-04-15T00:36:00.742 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:00.753 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 31/36 2024-04-15T00:36:00.782 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T00:36:00.808 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 32/36 2024-04-15T00:36:00.808 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:00.808 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-15T00:36:00.808 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T00:36:00.808 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-15T00:36:00.808 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:00.816 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T00:36:00.816 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:00.816 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:00.816 INFO:teuthology.orchestra.run.smithi100.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T00:36:00.816 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:00.816 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T00:36:00.817 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:00.818 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:01.091 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T00:36:01.254 INFO:teuthology.orchestra.run.smithi105.stdout:ceph-immutable-object-cache-19.0.0-2114.ga9a752 283 kB/s | 145 kB 00:00 2024-04-15T00:36:01.255 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:01.255 INFO:teuthology.orchestra.run.smithi105.stdout:Total 282 kB/s | 145 kB 00:00 2024-04-15T00:36:01.255 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:01.262 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:01.262 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:01.314 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:01.315 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:01.485 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:01.546 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:36:01.574 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:36:01.574 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:01.575 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T00:36:01.575 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:01.697 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:14 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:01.996 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:01.996 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:01.996 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:01.996 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:01.997 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:01.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:02.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:02.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.005 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:02.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:02.067 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:02.068 INFO:teuthology.orchestra.run.smithi100.stdout:======================================================================================= 2024-04-15T00:36:02.068 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:36:02.068 INFO:teuthology.orchestra.run.smithi100.stdout:======================================================================================= 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 7.4 M 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-15T00:36:02.069 INFO:teuthology.orchestra.run.smithi100.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout:======================================================================================= 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout:Install 12 Packages 2024-04-15T00:36:02.070 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:02.071 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 38 M 2024-04-15T00:36:02.071 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 209 M 2024-04-15T00:36:02.071 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:02.242 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T00:36:02.268 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 33/36 2024-04-15T00:36:02.268 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:02.268 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-15T00:36:02.268 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T00:36:02.268 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-15T00:36:02.268 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:02.578 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:36:02.578 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:02.578 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:02.578 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:02.578 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:02.578 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:02.586 INFO:teuthology.orchestra.run.smithi100.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 781 kB/s | 195 kB 00:00 2024-04-15T00:36:02.654 INFO:teuthology.orchestra.run.smithi100.stdout:(2/12): libgfortran-11.4.1-3.el9.x86_64.rpm 2.5 MB/s | 803 kB 00:00 2024-04-15T00:36:02.679 INFO:teuthology.orchestra.run.smithi100.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 356 kB/s | 33 kB 00:00 2024-04-15T00:36:02.709 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T00:36:02.720 INFO:teuthology.orchestra.run.smithi100.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 437 kB/s | 18 kB 00:00 2024-04-15T00:36:02.732 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 34/36 2024-04-15T00:36:02.732 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:02.732 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-15T00:36:02.733 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T00:36:02.733 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-15T00:36:02.733 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:02.779 INFO:teuthology.orchestra.run.smithi100.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 603 kB/s | 35 kB 00:00 2024-04-15T00:36:02.888 INFO:teuthology.orchestra.run.smithi100.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 13 MB/s | 3.0 MB 00:00 2024-04-15T00:36:02.889 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr 2024-04-15T00:36:02.930 INFO:teuthology.orchestra.run.smithi100.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 5.8 MB/s | 245 kB 00:00 2024-04-15T00:36:02.960 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T00:36:02.983 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 35/36 2024-04-15T00:36:02.983 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:02.983 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-15T00:36:02.983 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T00:36:02.983 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-15T00:36:02.983 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:03.013 INFO:teuthology.orchestra.run.smithi100.stdout:(8/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 20 MB/s | 4.7 MB 00:00 2024-04-15T00:36:03.044 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T00:36:03.064 INFO:teuthology.orchestra.run.smithi100.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.9 MB/s | 250 kB 00:00 2024-04-15T00:36:03.131 INFO:teuthology.orchestra.run.smithi100.stdout:(10/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 25 MB/s | 5.1 MB 00:00 2024-04-15T00:36:03.364 INFO:teuthology.orchestra.run.smithi100.stdout:(11/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 54 MB/s | 16 MB 00:00 2024-04-15T00:36:03.491 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:13 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.778 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:03.779 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:03.780 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:03.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:03.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:03.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:03.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:03.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:03.792 INFO:teuthology.orchestra.run.smithi105.stdout:Package ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:03.845 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:03.845 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:03.846 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:03.910 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T00:36:04.496 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:14 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:04.497 INFO:teuthology.orchestra.run.smithi100.stdout:(12/12): ceph-mgr-diskprediction-local-19.0.0-2 3.4 MB/s | 7.4 MB 00:02 2024-04-15T00:36:04.500 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:04.501 INFO:teuthology.orchestra.run.smithi100.stdout:Total 16 MB/s | 38 MB 00:02 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 36/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 1/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 3/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 4/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 5/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7. 6/36 2024-04-15T00:36:04.778 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-15T00:36:04.779 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-15T00:36:04.780 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-15T00:36:04.790 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:04.790 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:04.790 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:04.790 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.790 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:04.791 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:04.792 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:04.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:04.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.799 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:04.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:04.853 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:04.859 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:04.860 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:04.860 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:36:04.860 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:04.860 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 3.5 M 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 32 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 15 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T00:36:04.861 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout:Install 12 Packages 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 8.6 M 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 103 M 2024-04-15T00:36:04.862 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:04.879 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:04.879 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:05.302 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:05.302 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:05.649 INFO:teuthology.orchestra.run.smithi105.stdout:(1/12): ceph-grafana-dashboards-19.0.0-2114.ga9 80 kB/s | 32 kB 00:00 2024-04-15T00:36:05.683 INFO:teuthology.orchestra.run.smithi105.stdout:(2/12): ceph-prometheus-alerts-19.0.0-2114.ga9a 36 kB/s | 15 kB 00:00 2024-04-15T00:36:05.746 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mds-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-modules-core-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mon-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-osd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: lua-5.4.4-4.el9.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-15T00:36:05.747 INFO:teuthology.orchestra.run.smithi097.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-15T00:36:05.748 INFO:teuthology.orchestra.run.smithi097.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-ply-3.11-14.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-15T00:36:05.749 INFO:teuthology.orchestra.run.smithi097.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-15T00:36:05.750 INFO:teuthology.orchestra.run.smithi097.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-15T00:36:05.750 INFO:teuthology.orchestra.run.smithi097.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-15T00:36:05.750 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:05.750 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:05.933 INFO:teuthology.orchestra.run.smithi105.stdout:(3/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.1 MB/s | 269 kB 00:00 2024-04-15T00:36:06.033 INFO:teuthology.orchestra.run.smithi105.stdout:(4/12): protobuf-3.14.0-13.el9.x86_64.rpm 2.6 MB/s | 1.0 MB 00:00 2024-04-15T00:36:06.049 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-base 2024-04-15T00:36:06.077 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:06.139 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-15T00:36:06.142 INFO:teuthology.orchestra.run.smithi105.stdout:(5/12): ceph-mgr-dashboard-19.0.0-2114.ga9a752d 4.0 MB/s | 3.5 MB 00:00 2024-04-15T00:36:06.179 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-15T00:36:06.278 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-15T00:36:06.313 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T00:36:06.401 INFO:teuthology.orchestra.run.smithi105.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 83 kB/s | 19 kB 00:00 2024-04-15T00:36:06.492 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T00:36:06.529 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T00:36:06.568 INFO:teuthology.orchestra.run.smithi105.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.0 MB/s | 548 kB 00:00 2024-04-15T00:36:06.605 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T00:36:06.643 INFO:teuthology.orchestra.run.smithi105.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.9 MB/s | 144 kB 00:00 2024-04-15T00:36:06.643 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:05 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:06.702 INFO:teuthology.orchestra.run.smithi105.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 528 kB/s | 31 kB 00:00 2024-04-15T00:36:06.802 INFO:teuthology.orchestra.run.smithi105.stdout:(10/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 5.1 MB/s | 2.0 MB 00:00 2024-04-15T00:36:06.827 INFO:teuthology.orchestra.run.smithi105.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.5 MB/s | 188 kB 00:00 2024-04-15T00:36:06.934 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:06.934 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:06.935 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.936 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.937 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.938 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:06.939 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:06.940 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:06.941 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.942 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.943 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.944 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.945 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:06.946 INFO:teuthology.orchestra.run.smithi097.stdout:Package ceph-base-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:07.002 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:07.003 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:36:07.003 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:07.078 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install cephadm 2024-04-15T00:36:07.266 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T00:36:07.405 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T00:36:07.671 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:06 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:07.719 INFO:teuthology.orchestra.run.smithi105.stdout:(12/12): protobuf-compiler-3.14.0-13.el9.x86_64 484 kB/s | 863 kB 00:01 2024-04-15T00:36:07.724 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:07.724 INFO:teuthology.orchestra.run.smithi105.stdout:Total 3.0 MB/s | 8.6 MB 00:02 2024-04-15T00:36:07.774 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:07.792 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:07.792 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:07.959 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.960 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:07.961 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:07.962 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:07.963 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.964 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:07.965 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.966 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:07.967 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.968 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.969 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:07.969 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.969 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.969 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.969 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:07.984 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:07.985 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:08.030 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:08.030 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout: cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 749 k 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 749 k 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 755 k 2024-04-15T00:36:08.031 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:08.330 INFO:teuthology.orchestra.run.smithi097.stdout:cephadm-19.0.0-2114.ga9a752df.el7.noarch.rpm 2.4 MB/s | 749 kB 00:00 2024-04-15T00:36:08.331 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:08.331 INFO:teuthology.orchestra.run.smithi097.stdout:Total 2.4 MB/s | 749 kB 00:00 2024-04-15T00:36:08.331 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:08.336 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:08.336 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:08.342 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:08.342 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:08.419 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:08.514 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:08.586 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T00:36:08.625 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T00:36:08.630 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T00:36:08.676 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T00:36:08.707 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T00:36:08.808 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T00:36:08.879 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:36:08.932 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T00:36:08.985 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:36:09.018 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T00:36:09.061 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T00:36:09.090 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T00:36:09.122 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 10/12 2024-04-15T00:36:09.368 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:36:09.664 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T00:36:09.675 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/1 2024-04-15T00:36:09.675 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:09.675 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:09.675 INFO:teuthology.orchestra.run.smithi097.stdout: cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:09.675 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:09.675 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:09.695 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T00:36:09.878 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-immutable-object-cache 2024-04-15T00:36:10.159 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 11/12 2024-04-15T00:36:10.189 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T00:36:10.483 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:09 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:10.772 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.773 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:10.774 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.775 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.776 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:10.777 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.778 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.779 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.780 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.781 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.781 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:10.781 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.781 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.781 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.781 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:10.839 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repo Size 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 145 k 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:10.840 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:10.841 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:36:10.841 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:10.841 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 145 k 2024-04-15T00:36:10.841 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 435 k 2024-04-15T00:36:10.841 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:11.565 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T00:36:11.565 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 1/12 2024-04-15T00:36:11.565 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 2/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 3/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T00:36:11.566 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T00:36:11.662 INFO:teuthology.orchestra.run.smithi097.stdout:ceph-immutable-object-cache-19.0.0-2114.ga9a752 176 kB/s | 145 kB 00:00 2024-04-15T00:36:11.663 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:11.663 INFO:teuthology.orchestra.run.smithi097.stdout:Total 176 kB/s | 145 kB 00:00 2024-04-15T00:36:11.663 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:11.671 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:11.671 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:11.725 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:11.725 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:11.871 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:11.921 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T00:36:11.936 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:11.937 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:11.946 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:36:11.946 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:11.946 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-15T00:36:11.946 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:12.208 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 1/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-15T00:36:12.261 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-15T00:36:12.262 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T00:36:12.262 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-15T00:36:12.744 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T00:36:12.745 INFO:teuthology.orchestra.run.smithi100.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T00:36:12.746 INFO:teuthology.orchestra.run.smithi100.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T00:36:12.746 INFO:teuthology.orchestra.run.smithi100.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T00:36:12.746 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:12.746 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:12.793 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:22 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:12.900 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df. 1/1 2024-04-15T00:36:12.900 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:12.900 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:12.900 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-immutable-object-cache-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:12.900 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:12.900 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:13.078 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:13.078 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:13.078 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:13.078 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:13.079 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.080 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.081 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:13.082 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:13.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:13.137 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-mgr 2024-04-15T00:36:13.148 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:13.149 INFO:teuthology.orchestra.run.smithi105.stdout:======================================================================================= 2024-04-15T00:36:13.149 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:36:13.149 INFO:teuthology.orchestra.run.smithi105.stdout:======================================================================================= 2024-04-15T00:36:13.149 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:13.149 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 7.4 M 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-15T00:36:13.150 INFO:teuthology.orchestra.run.smithi105.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout:======================================================================================= 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout:Install 12 Packages 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 38 M 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 209 M 2024-04-15T00:36:13.151 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:13.179 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-mgr-rook 2024-04-15T00:36:13.743 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:12 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:13.793 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:26 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:13.811 INFO:teuthology.orchestra.run.smithi105.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 686 kB/s | 195 kB 00:00 2024-04-15T00:36:13.920 INFO:teuthology.orchestra.run.smithi105.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 302 kB/s | 33 kB 00:00 2024-04-15T00:36:14.034 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:14.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:14.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:14.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:14.039 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.040 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:14.041 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.042 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.043 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.044 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.044 INFO:teuthology.orchestra.run.smithi097.stdout:Package ceph-mgr-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:14.099 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:14.099 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:14.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:14.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:14.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:14.109 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:14.109 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:36:14.109 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:14.170 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:14.171 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-rook noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 49 k 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T00:36:14.172 INFO:teuthology.orchestra.run.smithi100.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout:Install 13 Packages 2024-04-15T00:36:14.173 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:14.174 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 2.2 M 2024-04-15T00:36:14.174 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 26 M 2024-04-15T00:36:14.174 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:14.185 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-mgr-dashboard 2024-04-15T00:36:14.246 INFO:teuthology.orchestra.run.smithi105.stdout:(3/12): libgfortran-11.4.1-3.el9.x86_64.rpm 1.1 MB/s | 803 kB 00:00 2024-04-15T00:36:14.338 INFO:teuthology.orchestra.run.smithi105.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 199 kB/s | 18 kB 00:00 2024-04-15T00:36:14.421 INFO:teuthology.orchestra.run.smithi105.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 423 kB/s | 35 kB 00:00 2024-04-15T00:36:14.646 INFO:teuthology.orchestra.run.smithi105.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 4.1 MB/s | 3.0 MB 00:00 2024-04-15T00:36:14.738 INFO:teuthology.orchestra.run.smithi105.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 2.6 MB/s | 245 kB 00:00 2024-04-15T00:36:14.746 INFO:teuthology.orchestra.run.smithi100.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 249 kB/s | 26 kB 00:00 2024-04-15T00:36:14.772 INFO:teuthology.orchestra.run.smithi100.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 150 kB/s | 19 kB 00:00 2024-04-15T00:36:14.776 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:13 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:14.888 INFO:teuthology.orchestra.run.smithi100.stdout:(3/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.7 MB/s | 159 kB 00:00 2024-04-15T00:36:14.914 INFO:teuthology.orchestra.run.smithi100.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.8 MB/s | 222 kB 00:00 2024-04-15T00:36:14.956 INFO:teuthology.orchestra.run.smithi100.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.1 MB/s | 279 kB 00:00 2024-04-15T00:36:14.973 INFO:teuthology.orchestra.run.smithi100.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 915 kB/s | 54 kB 00:00 2024-04-15T00:36:15.062 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:15.062 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.063 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.064 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.065 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.066 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.067 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.068 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.069 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.070 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.071 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:15.114 INFO:teuthology.orchestra.run.smithi100.stdout:(7/13): ceph-mgr-rook-19.0.0-2114.ga9a752df.el7 105 kB/s | 49 kB 00:00 2024-04-15T00:36:15.131 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 3.5 M 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 32 k 2024-04-15T00:36:15.132 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 15 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout:Install 12 Packages 2024-04-15T00:36:15.133 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:15.134 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 8.6 M 2024-04-15T00:36:15.134 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 103 M 2024-04-15T00:36:15.134 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:15.231 INFO:teuthology.orchestra.run.smithi100.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 117 kB/s | 32 kB 00:00 2024-04-15T00:36:15.248 INFO:teuthology.orchestra.run.smithi100.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 54 kB/s | 15 kB 00:00 2024-04-15T00:36:15.580 INFO:teuthology.orchestra.run.smithi105.stdout:(8/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 4.1 MB/s | 4.7 MB 00:01 2024-04-15T00:36:15.590 INFO:teuthology.orchestra.run.smithi100.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 173 kB/s | 59 kB 00:00 2024-04-15T00:36:15.624 INFO:teuthology.orchestra.run.smithi100.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 398 kB/s | 203 kB 00:00 2024-04-15T00:36:15.647 INFO:teuthology.orchestra.run.smithi105.stdout:(9/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 5.6 MB/s | 5.1 MB 00:00 2024-04-15T00:36:15.697 INFO:teuthology.orchestra.run.smithi105.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 2.1 MB/s | 250 kB 00:00 2024-04-15T00:36:15.758 INFO:teuthology.orchestra.run.smithi097.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2114.ga9a 79 kB/s | 15 kB 00:00 2024-04-15T00:36:15.867 INFO:teuthology.orchestra.run.smithi097.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2114.ga9 105 kB/s | 32 kB 00:00 2024-04-15T00:36:15.916 INFO:teuthology.orchestra.run.smithi100.stdout:(12/13): python3-kubernetes-26.1.0-2.el9.noarch 1.5 MB/s | 1.0 MB 00:00 2024-04-15T00:36:15.967 INFO:teuthology.orchestra.run.smithi097.stdout:(3/12): protobuf-3.14.0-13.el9.x86_64.rpm 4.8 MB/s | 1.0 MB 00:00 2024-04-15T00:36:16.018 INFO:teuthology.orchestra.run.smithi097.stdout:(4/12): ceph-mgr-dashboard-19.0.0-2114.ga9a752d 7.8 MB/s | 3.5 MB 00:00 2024-04-15T00:36:16.049 INFO:teuthology.orchestra.run.smithi100.stdout:(13/13): python3-websocket-client-1.2.3-2.el9.n 195 kB/s | 90 kB 00:00 2024-04-15T00:36:16.050 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:16.051 INFO:teuthology.orchestra.run.smithi100.stdout:Total 1.2 MB/s | 2.2 MB 00:01 2024-04-15T00:36:16.051 INFO:teuthology.orchestra.run.smithi097.stdout:(5/12): protobuf-compiler-3.14.0-13.el9.x86_64. 10 MB/s | 863 kB 00:00 2024-04-15T00:36:16.076 INFO:teuthology.orchestra.run.smithi097.stdout:(6/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.3 MB/s | 269 kB 00:00 2024-04-15T00:36:16.120 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:16.136 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:16.136 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:16.231 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:16.231 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:16.373 INFO:teuthology.orchestra.run.smithi105.stdout:(11/12): ceph-mgr-diskprediction-local-19.0.0-2 2.6 MB/s | 7.4 MB 00:02 2024-04-15T00:36:16.427 INFO:teuthology.orchestra.run.smithi097.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 52 kB/s | 19 kB 00:00 2024-04-15T00:36:16.735 INFO:teuthology.orchestra.run.smithi097.stdout:(8/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 469 kB/s | 144 kB 00:00 2024-04-15T00:36:16.747 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:16.761 INFO:teuthology.orchestra.run.smithi097.stdout:(9/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 738 kB/s | 548 kB 00:00 2024-04-15T00:36:16.861 INFO:teuthology.orchestra.run.smithi097.stdout:(10/12): python3-repoze-lru-0.7-16.el9.noarch.r 245 kB/s | 31 kB 00:00 2024-04-15T00:36:16.886 INFO:teuthology.orchestra.run.smithi097.stdout:(11/12): python3-routes-2.5.1-5.el9.noarch.rpm 1.5 MB/s | 188 kB 00:00 2024-04-15T00:36:16.915 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T00:36:16.967 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T00:36:17.011 INFO:teuthology.orchestra.run.smithi097.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 2.2 MB/s | 2.0 MB 00:00 2024-04-15T00:36:17.016 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:17.016 INFO:teuthology.orchestra.run.smithi097.stdout:Total 4.6 MB/s | 8.6 MB 00:01 2024-04-15T00:36:17.030 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T00:36:17.064 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:17.068 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T00:36:17.081 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:17.082 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:17.109 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T00:36:17.203 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T00:36:17.263 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:17.263 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:17.312 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T00:36:17.360 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T00:36:17.792 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:17.887 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-15T00:36:17.922 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-15T00:36:17.969 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-15T00:36:18.008 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-15T00:36:18.083 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T00:36:18.103 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-15T00:36:18.125 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T00:36:18.159 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T00:36:18.189 INFO:teuthology.orchestra.run.smithi105.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 6.4 MB/s | 16 MB 00:02 2024-04-15T00:36:18.190 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:18.191 INFO:teuthology.orchestra.run.smithi105.stdout:Total 7.5 MB/s | 38 MB 00:05 2024-04-15T00:36:18.206 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T00:36:18.228 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T00:36:18.250 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-15T00:36:18.344 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-15T00:36:18.404 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-15T00:36:18.433 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-15T00:36:18.465 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 10/12 2024-04-15T00:36:18.546 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:18.572 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:18.572 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:18.998 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:18.998 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 1/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T00:36:19.025 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T00:36:19.026 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T00:36:19.026 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T00:36:19.026 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T00:36:19.026 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T00:36:19.407 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T00:36:19.407 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:19.407 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:19.407 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:19.407 INFO:teuthology.orchestra.run.smithi100.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T00:36:19.407 INFO:teuthology.orchestra.run.smithi100.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T00:36:19.408 INFO:teuthology.orchestra.run.smithi100.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T00:36:19.409 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:19.409 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:19.512 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 11/12 2024-04-15T00:36:19.549 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T00:36:19.650 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T00:36:19.754 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:19.833 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-15T00:36:19.880 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-15T00:36:19.979 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-15T00:36:20.014 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T00:36:20.192 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T00:36:20.229 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T00:36:20.252 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:33 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:20.306 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T00:36:20.546 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:20.546 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:20.546 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:20.546 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.547 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.548 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:20.549 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:20.550 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:20.551 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.552 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.553 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.554 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.555 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:20.616 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:20.617 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:20.617 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:36:20.617 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:20.617 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:20.617 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 139 k 2024-04-15T00:36:20.617 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout:Install 6 Packages 2024-04-15T00:36:20.618 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:20.619 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 7.0 M 2024-04-15T00:36:20.619 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 33 M 2024-04-15T00:36:20.619 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:20.896 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 12/12 2024-04-15T00:36:20.896 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el 1/12 2024-04-15T00:36:20.896 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noa 2/12 2024-04-15T00:36:20.896 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7 3/12 2024-04-15T00:36:20.896 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-15T00:36:20.897 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-15T00:36:20.970 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T00:36:21.076 INFO:teuthology.orchestra.run.smithi100.stdout:(1/6): ceph-mgr-cephadm-19.0.0-2114.ga9a752df.e 597 kB/s | 139 kB 00:00 2024-04-15T00:36:21.101 INFO:teuthology.orchestra.run.smithi100.stdout:(2/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 958 kB/s | 248 kB 00:00 2024-04-15T00:36:21.116 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-grafana-dashboards-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-dashboard-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-prometheus-alerts-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-15T00:36:21.275 INFO:teuthology.orchestra.run.smithi097.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:21.276 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:21.393 INFO:teuthology.orchestra.run.smithi100.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 11 MB/s | 6.0 MB 00:00 2024-04-15T00:36:21.418 INFO:teuthology.orchestra.run.smithi100.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 182 kB/s | 58 kB 00:00 2024-04-15T00:36:21.548 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-15T00:36:21.618 INFO:teuthology.orchestra.run.smithi100.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.0 MB/s | 548 kB 00:00 2024-04-15T00:36:21.702 INFO:teuthology.orchestra.run.smithi100.stdout:(6/6): python3-typing-extensions-4.4.0-2.el9.no 165 kB/s | 51 kB 00:00 2024-04-15T00:36:21.702 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:21.702 INFO:teuthology.orchestra.run.smithi100.stdout:Total 6.4 MB/s | 7.0 MB 00:01 2024-04-15T00:36:21.774 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:21.785 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:21.785 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:21.887 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:21.888 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:22.140 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:21 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:22.207 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:22.349 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T00:36:22.372 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T00:36:22.425 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.426 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.427 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:22.428 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:22.429 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.430 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.431 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:22.432 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.433 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.434 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:22.435 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T00:36:22.495 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:22.496 INFO:teuthology.orchestra.run.smithi097.stdout:======================================================================================= 2024-04-15T00:36:22.496 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:22.496 INFO:teuthology.orchestra.run.smithi097.stdout:======================================================================================= 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 7.4 M 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-15T00:36:22.497 INFO:teuthology.orchestra.run.smithi097.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout:======================================================================================= 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout:Install 12 Packages 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:22.498 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 38 M 2024-04-15T00:36:22.499 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 209 M 2024-04-15T00:36:22.499 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:22.940 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T00:36:23.022 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T00:36:23.084 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T00:36:23.107 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T00:36:23.346 INFO:teuthology.orchestra.run.smithi097.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 362 kB/s | 195 kB 00:00 2024-04-15T00:36:23.388 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T00:36:23.413 INFO:teuthology.orchestra.run.smithi097.stdout:(2/12): libgfortran-11.4.1-3.el9.x86_64.rpm 1.3 MB/s | 803 kB 00:00 2024-04-15T00:36:23.420 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T00:36:23.471 INFO:teuthology.orchestra.run.smithi097.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 261 kB/s | 33 kB 00:00 2024-04-15T00:36:23.597 INFO:teuthology.orchestra.run.smithi097.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 145 kB/s | 18 kB 00:00 2024-04-15T00:36:23.730 INFO:teuthology.orchestra.run.smithi097.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 264 kB/s | 35 kB 00:00 2024-04-15T00:36:23.871 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T00:36:23.871 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/6 2024-04-15T00:36:23.871 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T00:36:23.871 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T00:36:23.871 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T00:36:23.872 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T00:36:24.201 INFO:teuthology.orchestra.run.smithi100.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T00:36:24.202 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:24.202 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:24.306 INFO:teuthology.orchestra.run.smithi097.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.3 MB/s | 3.0 MB 00:00 2024-04-15T00:36:24.422 INFO:teuthology.orchestra.run.smithi097.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 2.1 MB/s | 245 kB 00:00 2024-04-15T00:36:24.457 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-fuse 2024-04-15T00:36:25.060 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:38 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:25.073 INFO:teuthology.orchestra.run.smithi097.stdout:(8/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 7.8 MB/s | 5.1 MB 00:00 2024-04-15T00:36:25.315 INFO:teuthology.orchestra.run.smithi097.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 1.0 MB/s | 250 kB 00:00 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:25.356 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:25.357 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:25.358 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:25.359 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:25.360 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.361 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.362 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.363 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.364 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:25.373 INFO:teuthology.orchestra.run.smithi097.stdout:(10/12): openblas-openmp-0.3.21-2.el9.x86_64.rp 2.9 MB/s | 4.7 MB 00:01 2024-04-15T00:36:25.425 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 891 k 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout:Install 2 Packages 2024-04-15T00:36:25.427 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:25.428 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 971 k 2024-04-15T00:36:25.428 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 2.8 M 2024-04-15T00:36:25.428 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:25.623 INFO:teuthology.orchestra.run.smithi097.stdout:(11/12): ceph-mgr-diskprediction-local-19.0.0-2 2.6 MB/s | 7.4 MB 00:02 2024-04-15T00:36:25.938 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 1/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T00:36:25.939 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-15T00:36:26.137 INFO:teuthology.orchestra.run.smithi100.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 179 kB/s | 80 kB 00:00 2024-04-15T00:36:26.171 INFO:teuthology.orchestra.run.smithi100.stdout:(2/2): ceph-fuse-19.0.0-2114.ga9a752df.el7.x86_ 1.8 MB/s | 891 kB 00:00 2024-04-15T00:36:26.172 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:26.172 INFO:teuthology.orchestra.run.smithi100.stdout:Total 1.3 MB/s | 971 kB 00:00 2024-04-15T00:36:26.184 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:26.205 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:26.205 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:26.284 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:26.284 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T00:36:26.430 INFO:teuthology.orchestra.run.smithi105.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:26.431 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:26.473 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:26.615 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T00:36:26.679 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T00:36:26.871 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-rook 2024-04-15T00:36:27.216 INFO:teuthology.orchestra.run.smithi097.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 8.6 MB/s | 16 MB 00:01 2024-04-15T00:36:27.218 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:27.218 INFO:teuthology.orchestra.run.smithi097.stdout:Total 8.1 MB/s | 38 MB 00:04 2024-04-15T00:36:27.303 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T00:36:27.303 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/2 2024-04-15T00:36:27.479 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:37 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:27.570 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:27.597 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:27.597 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:27.610 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T00:36:27.610 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:27.611 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:27.611 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T00:36:27.611 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:27.611 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:27.766 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:27.766 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:27.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:27.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:27.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:27.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:27.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:27.772 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.773 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.774 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.775 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:27.835 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:27.836 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:27.836 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-rook noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 49 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-15T00:36:27.837 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout:Install 13 Packages 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:27.838 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 2.2 M 2024-04-15T00:36:27.839 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 26 M 2024-04-15T00:36:27.839 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:27.928 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install ceph-volume 2024-04-15T00:36:28.021 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:28.022 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:28.279 INFO:teuthology.orchestra.run.smithi105.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 195 kB/s | 26 kB 00:00 2024-04-15T00:36:28.296 INFO:teuthology.orchestra.run.smithi105.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 129 kB/s | 19 kB 00:00 2024-04-15T00:36:28.329 INFO:teuthology.orchestra.run.smithi105.stdout:(3/13): ceph-mgr-rook-19.0.0-2114.ga9a752df.el7 271 kB/s | 49 kB 00:00 2024-04-15T00:36:28.404 INFO:teuthology.orchestra.run.smithi105.stdout:(4/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-04-15T00:36:28.430 INFO:teuthology.orchestra.run.smithi105.stdout:(5/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.6 MB/s | 222 kB 00:00 2024-04-15T00:36:28.446 INFO:teuthology.orchestra.run.smithi105.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.3 MB/s | 54 kB 00:00 2024-04-15T00:36:28.535 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:41 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:28.564 INFO:teuthology.orchestra.run.smithi105.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.2 MB/s | 279 kB 00:00 2024-04-15T00:36:28.580 INFO:teuthology.orchestra.run.smithi105.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 112 kB/s | 15 kB 00:00 2024-04-15T00:36:28.598 INFO:teuthology.orchestra.run.smithi105.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 192 kB/s | 32 kB 00:00 2024-04-15T00:36:28.764 INFO:teuthology.orchestra.run.smithi105.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 1.0 MB/s | 203 kB 00:00 2024-04-15T00:36:28.782 INFO:teuthology.orchestra.run.smithi105.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 322 kB/s | 59 kB 00:00 2024-04-15T00:36:28.789 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.827 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.828 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:28.829 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:28.830 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.831 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.832 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.833 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:28.834 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.835 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:28.836 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.836 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.836 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.836 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:28.840 INFO:teuthology.orchestra.run.smithi105.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.2 MB/s | 90 kB 00:00 2024-04-15T00:36:28.857 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-15T00:36:28.894 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:28.895 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:28.895 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repository Size 2024-04-15T00:36:28.895 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:28.895 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:28.895 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-volume noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 264 k 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout:Installing dependencies: 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout:Install 2 Packages 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:28.896 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 341 k 2024-04-15T00:36:28.897 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 1.5 M 2024-04-15T00:36:28.897 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:28.897 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-15T00:36:28.898 INFO:teuthology.orchestra.run.smithi105.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 3.2 MB/s | 1.0 MB 00:00 2024-04-15T00:36:28.899 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:28.899 INFO:teuthology.orchestra.run.smithi105.stdout:Total 2.1 MB/s | 2.2 MB 00:01 2024-04-15T00:36:28.963 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:28.978 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:28.978 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:29.000 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-15T00:36:29.040 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-15T00:36:29.074 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:29.075 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:29.218 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-15T00:36:29.247 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-15T00:36:29.252 INFO:teuthology.orchestra.run.smithi100.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 381 kB/s | 77 kB 00:00 2024-04-15T00:36:29.323 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-15T00:36:29.352 INFO:teuthology.orchestra.run.smithi100.stdout:(2/2): ceph-volume-19.0.0-2114.ga9a752df.el7.no 871 kB/s | 264 kB 00:00 2024-04-15T00:36:29.354 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:29.354 INFO:teuthology.orchestra.run.smithi100.stdout:Total 744 kB/s | 341 kB 00:00 2024-04-15T00:36:29.365 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:29.376 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:29.376 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:29.417 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:29.418 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:29.566 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:29.599 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:29.735 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T00:36:29.745 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T00:36:29.772 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T00:36:29.787 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T00:36:29.787 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:29.788 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T00:36:29.788 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:29.791 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T00:36:29.846 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T00:36:29.875 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T00:36:29.908 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T00:36:29.993 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-15T00:36:30.001 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T00:36:30.102 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T00:36:30.109 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-15T00:36:30.152 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T00:36:30.519 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 1/2 2024-04-15T00:36:30.868 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T00:36:30.873 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T00:36:30.874 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:30.874 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:30.874 INFO:teuthology.orchestra.run.smithi100.stdout: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:30.874 INFO:teuthology.orchestra.run.smithi100.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T00:36:30.875 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:30.875 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:30.924 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T00:36:30.958 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T00:36:31.005 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T00:36:31.028 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T00:36:31.211 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install librados-devel 2024-04-15T00:36:31.357 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T00:36:31.809 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:44 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 1/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T00:36:31.841 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T00:36:31.842 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T00:36:31.842 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T00:36:31.842 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T00:36:32.099 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:32.099 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:32.100 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.101 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:32.102 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:32.103 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:32.104 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.105 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:32.106 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.107 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.108 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.109 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:32.168 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:32.168 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repo Size 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout: librados-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 127 k 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 127 k 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 456 k 2024-04-15T00:36:32.169 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:32.217 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T00:36:32.217 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:32.217 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:32.217 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T00:36:32.218 INFO:teuthology.orchestra.run.smithi105.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T00:36:32.219 INFO:teuthology.orchestra.run.smithi105.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T00:36:32.219 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:32.219 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:32.374 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-15T00:36:32.398 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T00:36:32.425 INFO:teuthology.orchestra.run.smithi100.stdout:librados-devel-19.0.0-2114.ga9a752df.el7.x86_64 495 kB/s | 127 kB 00:00 2024-04-15T00:36:32.426 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:32.426 INFO:teuthology.orchestra.run.smithi100.stdout:Total 492 kB/s | 127 kB 00:00 2024-04-15T00:36:32.427 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:32.432 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:32.432 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:32.481 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T00:36:32.491 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:32.491 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:32.697 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:32.811 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:33.083 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:43 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:33.304 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:33.372 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.373 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.374 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:33.375 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.376 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.377 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:33.378 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.378 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:33.378 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.378 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.379 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.380 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.381 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.382 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:33.444 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:33.444 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 139 k 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:33.445 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:33.446 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:33.446 INFO:teuthology.orchestra.run.smithi105.stdout:Install 6 Packages 2024-04-15T00:36:33.446 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:33.446 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 7.0 M 2024-04-15T00:36:33.446 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 33 M 2024-04-15T00:36:33.447 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:33.611 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:33.611 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:33.611 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:33.611 INFO:teuthology.orchestra.run.smithi100.stdout: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:33.611 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:33.611 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:33.827 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install libcephfs2 2024-04-15T00:36:34.109 INFO:teuthology.orchestra.run.smithi105.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 727 kB/s | 248 kB 00:00 2024-04-15T00:36:34.226 INFO:teuthology.orchestra.run.smithi105.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2114.ga9a752df.e 304 kB/s | 139 kB 00:00 2024-04-15T00:36:34.318 INFO:teuthology.orchestra.run.smithi105.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 11 MB/s | 6.0 MB 00:00 2024-04-15T00:36:34.438 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:34.651 INFO:teuthology.orchestra.run.smithi105.stdout:(4/6): python3-typing-extensions-4.4.0-2.el9.no 165 kB/s | 51 kB 00:00 2024-04-15T00:36:34.676 INFO:teuthology.orchestra.run.smithi105.stdout:(5/6): python3-natsort-7.1.1-5.el9.noarch.rpm 128 kB/s | 58 kB 00:00 2024-04-15T00:36:34.730 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:34.731 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:34.732 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:34.733 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.734 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:34.735 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.736 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.737 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.738 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.739 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:34.740 INFO:teuthology.orchestra.run.smithi100.stdout:Package libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:34.751 INFO:teuthology.orchestra.run.smithi105.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 853 kB/s | 548 kB 00:00 2024-04-15T00:36:34.755 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:34.755 INFO:teuthology.orchestra.run.smithi105.stdout:Total 5.3 MB/s | 7.0 MB 00:01 2024-04-15T00:36:34.797 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:34.798 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:34.798 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:34.826 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:34.838 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:34.838 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:34.855 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 12/12 2024-04-15T00:36:34.855 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a75 1/12 2024-04-15T00:36:34.855 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-15T00:36:34.855 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-15T00:36:34.856 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-15T00:36:34.869 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install libcephfs-devel 2024-04-15T00:36:34.941 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:34.941 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:35.252 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:35.294 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-15T00:36:35.294 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:35.294 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:35.294 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:35.294 INFO:teuthology.orchestra.run.smithi097.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-15T00:36:35.294 INFO:teuthology.orchestra.run.smithi097.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:35.295 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:35.418 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T00:36:35.462 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:35.463 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T00:36:35.733 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-mgr-rook 2024-04-15T00:36:35.754 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:35.754 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:35.754 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:35.755 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:35.756 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:35.757 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.758 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:35.759 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.760 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.761 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.762 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.763 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:35.822 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:35.823 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:35.823 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repo Size 2024-04-15T00:36:35.823 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:35.823 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:35.823 INFO:teuthology.orchestra.run.smithi100.stdout: libcephfs-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 32 k 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 32 k 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 142 k 2024-04-15T00:36:35.824 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:35.992 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T00:36:35.996 INFO:teuthology.orchestra.run.smithi100.stdout:libcephfs-devel-19.0.0-2114.ga9a752df.el7.x86_6 184 kB/s | 32 kB 00:00 2024-04-15T00:36:35.996 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:35.997 INFO:teuthology.orchestra.run.smithi100.stdout:Total 183 kB/s | 32 kB 00:00 2024-04-15T00:36:35.997 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:36.000 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:36.001 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:36.026 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:36.026 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:36.075 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T00:36:36.128 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:36.145 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T00:36:36.176 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T00:36:36.220 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:36.336 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:35 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:36.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:36.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:36.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.630 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.631 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.632 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:36.660 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:36.692 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:36.693 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:36.693 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:36.693 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:36.693 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:36.693 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-rook noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 49 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-15T00:36:36.694 INFO:teuthology.orchestra.run.smithi097.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout:Install 13 Packages 2024-04-15T00:36:36.695 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:36.696 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 2.2 M 2024-04-15T00:36:36.696 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 26 M 2024-04-15T00:36:36.696 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:36.919 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:36.920 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:36.920 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:36.920 INFO:teuthology.orchestra.run.smithi100.stdout: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:36.920 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:36.920 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:37.003 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T00:36:37.004 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/6 2024-04-15T00:36:37.004 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T00:36:37.004 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T00:36:37.004 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T00:36:37.004 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T00:36:37.107 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install librados2 2024-04-15T00:36:37.291 INFO:teuthology.orchestra.run.smithi097.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 263 kB/s | 26 kB 00:00 2024-04-15T00:36:37.307 INFO:teuthology.orchestra.run.smithi097.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 168 kB/s | 19 kB 00:00 2024-04-15T00:36:37.322 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T00:36:37.322 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:37.322 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:37.322 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:37.322 INFO:teuthology.orchestra.run.smithi105.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T00:36:37.322 INFO:teuthology.orchestra.run.smithi105.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T00:36:37.323 INFO:teuthology.orchestra.run.smithi105.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T00:36:37.323 INFO:teuthology.orchestra.run.smithi105.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T00:36:37.323 INFO:teuthology.orchestra.run.smithi105.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T00:36:37.323 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:37.323 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:37.408 INFO:teuthology.orchestra.run.smithi097.stdout:(3/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.6 MB/s | 159 kB 00:00 2024-04-15T00:36:37.433 INFO:teuthology.orchestra.run.smithi097.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.7 MB/s | 222 kB 00:00 2024-04-15T00:36:37.467 INFO:teuthology.orchestra.run.smithi097.stdout:(5/13): python3-pyasn1-modules-0.4.8-6.el9.noar 4.6 MB/s | 279 kB 00:00 2024-04-15T00:36:37.492 INFO:teuthology.orchestra.run.smithi097.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 916 kB/s | 54 kB 00:00 2024-04-15T00:36:37.517 INFO:teuthology.orchestra.run.smithi097.stdout:(7/13): ceph-mgr-rook-19.0.0-2114.ga9a752df.el7 152 kB/s | 49 kB 00:00 2024-04-15T00:36:37.591 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-fuse 2024-04-15T00:36:37.702 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:37.909 INFO:teuthology.orchestra.run.smithi097.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 36 kB/s | 15 kB 00:00 2024-04-15T00:36:37.934 INFO:teuthology.orchestra.run.smithi097.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 69 kB/s | 32 kB 00:00 2024-04-15T00:36:37.993 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:37.994 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:37.995 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.996 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:37.996 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.996 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:37.996 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.996 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:37.996 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.997 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.998 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:37.999 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:38.000 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.001 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.002 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.003 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.004 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.005 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.006 INFO:teuthology.orchestra.run.smithi100.stdout:Package librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:38.062 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:38.063 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:38.063 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:38.136 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install librbd1 2024-04-15T00:36:38.151 INFO:teuthology.orchestra.run.smithi097.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 273 kB/s | 59 kB 00:00 2024-04-15T00:36:38.188 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:48 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:38.202 INFO:teuthology.orchestra.run.smithi097.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 296 kB/s | 203 kB 00:00 2024-04-15T00:36:38.352 INFO:teuthology.orchestra.run.smithi097.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 448 kB/s | 90 kB 00:00 2024-04-15T00:36:38.477 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:38.477 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:38.477 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:38.477 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.477 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:38.477 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:38.478 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:38.479 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.480 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.481 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:38.482 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:38.483 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.484 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:38.485 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.486 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:38.519 INFO:teuthology.orchestra.run.smithi097.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 1.7 MB/s | 1.0 MB 00:00 2024-04-15T00:36:38.522 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:38.522 INFO:teuthology.orchestra.run.smithi097.stdout:Total 1.2 MB/s | 2.2 MB 00:01 2024-04-15T00:36:38.546 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:38.547 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:38.547 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:36:38.547 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:38.547 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:38.547 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 891 k 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout:Install 2 Packages 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:38.548 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 971 k 2024-04-15T00:36:38.549 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 2.8 M 2024-04-15T00:36:38.549 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:38.588 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:38.603 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:38.603 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:38.697 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:38.697 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:38.737 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:51 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:38.880 INFO:teuthology.orchestra.run.smithi105.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 456 kB/s | 80 kB 00:00 2024-04-15T00:36:39.028 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:39.028 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:39.028 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:39.029 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.030 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:39.031 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:39.032 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:39.033 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.034 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:39.035 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.036 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.037 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:39.038 INFO:teuthology.orchestra.run.smithi100.stdout:Package librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:39.038 INFO:teuthology.orchestra.run.smithi105.stdout:(2/2): ceph-fuse-19.0.0-2114.ga9a752df.el7.x86_ 2.6 MB/s | 891 kB 00:00 2024-04-15T00:36:39.039 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:39.039 INFO:teuthology.orchestra.run.smithi105.stdout:Total 1.9 MB/s | 971 kB 00:00 2024-04-15T00:36:39.051 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:39.072 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:39.072 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:39.098 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:39.099 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:39.099 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:39.149 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:39.149 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:39.178 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install python3-rados 2024-04-15T00:36:39.225 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:39.338 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:39.400 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-15T00:36:39.448 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-15T00:36:39.473 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T00:36:39.505 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-15T00:36:39.538 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T00:36:39.540 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-15T00:36:39.582 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-15T00:36:39.678 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-15T00:36:39.774 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:52 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:39.796 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-15T00:36:39.851 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.063 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:40.064 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:40.065 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.066 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.067 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.068 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:40.069 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:40.070 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.071 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.072 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:40.072 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.072 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.072 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.072 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:40.072 INFO:teuthology.orchestra.run.smithi100.stdout:Package python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:40.130 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:40.131 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:40.132 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:40.208 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install python3-rgw 2024-04-15T00:36:40.243 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T00:36:40.244 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/2 2024-04-15T00:36:40.548 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T00:36:40.549 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:40.549 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:40.549 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T00:36:40.549 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:40.549 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:40.605 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-15T00:36:40.666 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-15T00:36:40.697 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-15T00:36:40.746 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-15T00:36:40.775 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T00:36:40.802 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:53 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:40.841 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install ceph-volume 2024-04-15T00:36:41.089 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.090 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.091 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.092 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.093 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:41.094 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.095 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.096 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.097 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.098 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.099 INFO:teuthology.orchestra.run.smithi100.stdout:Package python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:41.157 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:41.158 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:41.158 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:41.232 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install python3-cephfs 2024-04-15T00:36:41.453 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:51 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:41.571 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 13/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 1/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-15T00:36:41.572 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-15T00:36:41.573 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-15T00:36:41.573 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-15T00:36:41.573 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.758 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.759 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:41.760 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:41.761 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:41.762 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:41.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:41.823 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:54 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:41.833 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repository Size 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-volume noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 264 k 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout:Installing dependencies: 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:41.834 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:41.835 INFO:teuthology.orchestra.run.smithi105.stdout:Install 2 Packages 2024-04-15T00:36:41.835 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:41.835 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 341 k 2024-04-15T00:36:41.835 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 1.5 M 2024-04-15T00:36:41.835 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-rook-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-15T00:36:41.956 INFO:teuthology.orchestra.run.smithi097.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:41.957 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.113 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:42.114 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.115 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.116 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.117 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:42.118 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.119 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.120 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:42.121 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.122 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.122 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.122 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:42.122 INFO:teuthology.orchestra.run.smithi100.stdout:Package python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:42.179 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:42.180 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:42.180 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:42.192 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-mgr-cephadm 2024-04-15T00:36:42.264 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install python3-rbd 2024-04-15T00:36:42.286 INFO:teuthology.orchestra.run.smithi105.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 215 kB/s | 77 kB 00:00 2024-04-15T00:36:42.361 INFO:teuthology.orchestra.run.smithi105.stdout:(2/2): ceph-volume-19.0.0-2114.ga9a752df.el7.no 607 kB/s | 264 kB 00:00 2024-04-15T00:36:42.362 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:42.362 INFO:teuthology.orchestra.run.smithi105.stdout:Total 646 kB/s | 341 kB 00:00 2024-04-15T00:36:42.374 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:42.383 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:42.383 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:42.426 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:42.426 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:42.577 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:42.753 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T00:36:42.785 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:41 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:42.789 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T00:36:42.806 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T00:36:42.806 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:42.806 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T00:36:42.806 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:42.860 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:55 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:43.099 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:43.099 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.100 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.101 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.102 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:43.103 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:43.104 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.105 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.106 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:43.107 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.108 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.147 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:43.148 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.149 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.150 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:43.151 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.152 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.153 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.154 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.155 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:43.156 INFO:teuthology.orchestra.run.smithi100.stdout:Package python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:43.170 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:43.171 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:43.171 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:43.171 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 139 k 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout:Install 6 Packages 2024-04-15T00:36:43.172 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:43.173 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 7.0 M 2024-04-15T00:36:43.173 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 33 M 2024-04-15T00:36:43.173 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:43.215 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:43.216 INFO:teuthology.orchestra.run.smithi100.stdout:Nothing to do. 2024-04-15T00:36:43.216 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:43.298 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install rbd-fuse 2024-04-15T00:36:43.541 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 1/2 2024-04-15T00:36:43.648 INFO:teuthology.orchestra.run.smithi097.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.3 MB/s | 248 kB 00:00 2024-04-15T00:36:43.815 INFO:teuthology.orchestra.run.smithi097.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2114.ga9a752df.e 391 kB/s | 139 kB 00:00 2024-04-15T00:36:43.903 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:56 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:43.917 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:44.066 INFO:teuthology.orchestra.run.smithi097.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 9.8 MB/s | 6.0 MB 00:00 2024-04-15T00:36:44.198 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:44.198 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:44.198 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:44.198 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.198 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:44.198 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:44.199 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:44.200 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:44.201 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.202 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.203 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.204 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.205 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:44.206 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.207 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.207 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.207 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:44.257 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install librados-devel 2024-04-15T00:36:44.267 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout: Package Architecture Version Repository Size 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout: rbd-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 85 k 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:44.268 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:44.269 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:44.269 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:36:44.269 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:44.269 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 85 k 2024-04-15T00:36:44.269 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 231 k 2024-04-15T00:36:44.269 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:44.416 INFO:teuthology.orchestra.run.smithi097.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 96 kB/s | 58 kB 00:00 2024-04-15T00:36:44.482 INFO:teuthology.orchestra.run.smithi100.stdout:rbd-fuse-19.0.0-2114.ga9a752df.el7.x86_64.rpm 399 kB/s | 85 kB 00:00 2024-04-15T00:36:44.482 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:44.483 INFO:teuthology.orchestra.run.smithi100.stdout:Total 397 kB/s | 85 kB 00:00 2024-04-15T00:36:44.483 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:44.490 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:44.490 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:44.550 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:44.551 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:44.608 INFO:teuthology.orchestra.run.smithi097.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 94 kB/s | 51 kB 00:00 2024-04-15T00:36:44.694 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:44.799 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:44.824 INFO:teuthology.orchestra.run.smithi097.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 466 kB/s | 548 kB 00:01 2024-04-15T00:36:44.828 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:44.828 INFO:teuthology.orchestra.run.smithi097.stdout:Total 4.2 MB/s | 7.0 MB 00:01 2024-04-15T00:36:44.863 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:54 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:44.901 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:44.912 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:44.912 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:45.013 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:45.013 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:45.151 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:45.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:45.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.155 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:45.156 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.157 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:45.158 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:45.159 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.160 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:45.180 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:45.221 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout: librados-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 127 k 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:45.222 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:45.223 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:36:45.223 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:45.223 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 127 k 2024-04-15T00:36:45.223 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 456 k 2024-04-15T00:36:45.223 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:45.326 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:45.488 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-15T00:36:45.531 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:45.532 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:45.532 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:45.532 INFO:teuthology.orchestra.run.smithi100.stdout: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:45.532 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:45.532 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:45.533 INFO:teuthology.orchestra.run.smithi105.stdout:librados-devel-19.0.0-2114.ga9a752df.el7.x86_64 408 kB/s | 127 kB 00:00 2024-04-15T00:36:45.534 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:45.534 INFO:teuthology.orchestra.run.smithi105.stdout:Total 406 kB/s | 127 kB 00:00 2024-04-15T00:36:45.534 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:45.540 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:45.540 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:45.542 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-15T00:36:45.599 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:45.599 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:45.756 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install rbd-mirror 2024-04-15T00:36:45.804 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:45.899 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:46.053 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-15T00:36:46.136 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-15T00:36:46.207 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-15T00:36:46.230 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T00:36:46.321 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:46.369 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:01:59 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:46.625 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:46.626 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:46.626 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:46.626 INFO:teuthology.orchestra.run.smithi105.stdout: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:46.626 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:46.626 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:46.658 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:46.658 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:46.658 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:46.658 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.658 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:46.658 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:46.659 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.660 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.661 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:46.662 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:46.663 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.664 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.665 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.666 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.667 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:46.726 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout: Package Arch Version Repo Size 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout: rbd-mirror x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:46.727 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:36:46.728 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:46.728 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 3.1 M 2024-04-15T00:36:46.728 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 13 M 2024-04-15T00:36:46.728 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:46.862 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install libcephfs2 2024-04-15T00:36:47.067 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 6/6 2024-04-15T00:36:47.067 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 1/6 2024-04-15T00:36:47.067 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-15T00:36:47.067 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-15T00:36:47.067 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-15T00:36:47.067 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-15T00:36:47.386 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-15T00:36:47.387 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:47.387 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:47.387 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-mgr-cephadm-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:47.387 INFO:teuthology.orchestra.run.smithi097.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-15T00:36:47.387 INFO:teuthology.orchestra.run.smithi097.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-15T00:36:47.388 INFO:teuthology.orchestra.run.smithi097.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-15T00:36:47.388 INFO:teuthology.orchestra.run.smithi097.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-15T00:36:47.388 INFO:teuthology.orchestra.run.smithi097.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-15T00:36:47.388 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:47.388 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:47.469 INFO:teuthology.orchestra.run.smithi100.stdout:rbd-mirror-19.0.0-2114.ga9a752df.el7.x86_64.rpm 4.2 MB/s | 3.1 MB 00:00 2024-04-15T00:36:47.469 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:57 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:47.470 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:47.470 INFO:teuthology.orchestra.run.smithi100.stdout:Total 4.2 MB/s | 3.1 MB 00:00 2024-04-15T00:36:47.470 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:47.479 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:47.479 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:47.555 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:47.556 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:47.628 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-fuse 2024-04-15T00:36:47.762 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:47.762 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:47.762 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.763 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.764 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:47.765 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.766 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.767 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:47.768 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.769 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:47.770 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.771 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:47.772 INFO:teuthology.orchestra.run.smithi105.stdout:Package libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:47.829 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:47.830 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:47.830 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:47.893 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install libcephfs-devel 2024-04-15T00:36:47.989 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:48.053 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:48.077 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:48.077 INFO:teuthology.orchestra.run.smithi100.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:48.077 INFO:teuthology.orchestra.run.smithi100.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T00:36:48.077 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T00:36:48.077 INFO:teuthology.orchestra.run.smithi100.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T00:36:48.077 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:48.226 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:47 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:48.483 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:01:58 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:48.516 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:48.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:48.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:48.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:48.521 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.522 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.523 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.524 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:48.525 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.526 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.526 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.526 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.586 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 891 k 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:48.587 INFO:teuthology.orchestra.run.smithi097.stdout:Install 2 Packages 2024-04-15T00:36:48.588 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:48.588 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 971 k 2024-04-15T00:36:48.588 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 2.8 M 2024-04-15T00:36:48.588 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:48.781 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:48.782 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.783 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.784 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.785 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.786 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:48.787 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.788 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.789 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:48.846 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 32 k 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:48.847 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:48.848 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:48.848 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:36:48.848 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:48.848 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 32 k 2024-04-15T00:36:48.848 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 142 k 2024-04-15T00:36:48.848 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:49.103 INFO:teuthology.orchestra.run.smithi105.stdout:libcephfs-devel-19.0.0-2114.ga9a752df.el7.x86_6 124 kB/s | 32 kB 00:00 2024-04-15T00:36:49.103 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:49.104 INFO:teuthology.orchestra.run.smithi105.stdout:Total 124 kB/s | 32 kB 00:00 2024-04-15T00:36:49.104 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:49.108 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:49.108 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:49.137 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:49.138 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:49.160 INFO:teuthology.orchestra.run.smithi097.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 184 kB/s | 80 kB 00:00 2024-04-15T00:36:49.178 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:49.179 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:49.179 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:49.179 INFO:teuthology.orchestra.run.smithi100.stdout: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:49.179 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:49.179 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:49.185 INFO:teuthology.orchestra.run.smithi097.stdout:(2/2): ceph-fuse-19.0.0-2114.ga9a752df.el7.x86_ 1.9 MB/s | 891 kB 00:00 2024-04-15T00:36:49.185 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:49.186 INFO:teuthology.orchestra.run.smithi097.stdout:Total 1.6 MB/s | 971 kB 00:00 2024-04-15T00:36:49.198 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:49.221 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:49.221 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:49.237 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:49.300 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:49.300 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:49.342 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:49.439 DEBUG:teuthology.orchestra.run.smithi100:> sudo yum -y install rbd-nbd 2024-04-15T00:36:49.484 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:49.638 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-15T00:36:49.710 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T00:36:49.723 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:50.005 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:50.005 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:50.005 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:50.005 INFO:teuthology.orchestra.run.smithi105.stdout: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:50.005 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:50.005 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:50.047 INFO:teuthology.orchestra.run.smithi100.stdout:Last metadata expiration check: 0:02:03 ago on Mon 15 Apr 2024 12:34:47 AM UTC. 2024-04-15T00:36:50.183 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install librados2 2024-04-15T00:36:50.336 INFO:teuthology.orchestra.run.smithi100.stderr:Modular dependency problems: 2024-04-15T00:36:50.336 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:36:50.336 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 1: conflicting requests 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 2: conflicting requests 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 3: conflicting requests 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 4: conflicting requests 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 5: conflicting requests 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 6: conflicting requests 2024-04-15T00:36:50.337 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 7: conflicting requests 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 8: conflicting requests 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 9: conflicting requests 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 10: conflicting requests 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 11: conflicting requests 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 12: conflicting requests 2024-04-15T00:36:50.338 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 13: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 14: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 15: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 16: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 17: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 18: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 19: conflicting requests 2024-04-15T00:36:50.339 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 20: conflicting requests 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 21: conflicting requests 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 22: conflicting requests 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 23: conflicting requests 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 24: conflicting requests 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 25: conflicting requests 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.340 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 26: conflicting requests 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 27: conflicting requests 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 28: conflicting requests 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 29: conflicting requests 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 30: conflicting requests 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 31: conflicting requests 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.341 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 32: conflicting requests 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 33: conflicting requests 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 34: conflicting requests 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 35: conflicting requests 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 36: conflicting requests 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 37: conflicting requests 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.342 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 39: conflicting requests 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.343 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:50.344 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.345 INFO:teuthology.orchestra.run.smithi100.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:50.405 INFO:teuthology.orchestra.run.smithi100.stdout:Dependencies resolved. 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout: Package Architecture Version Repository Size 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:Installing: 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout: rbd-nbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 171 k 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction Summary 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:================================================================================ 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:Install 1 Package 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:Total download size: 171 k 2024-04-15T00:36:50.406 INFO:teuthology.orchestra.run.smithi100.stdout:Installed size: 494 k 2024-04-15T00:36:50.407 INFO:teuthology.orchestra.run.smithi100.stdout:Downloading Packages: 2024-04-15T00:36:50.442 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2/2 2024-04-15T00:36:50.442 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/2 2024-04-15T00:36:50.784 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-15T00:36:50.784 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:50.784 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:50.784 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-15T00:36:50.784 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:50.784 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:50.786 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:00 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:50.805 INFO:teuthology.orchestra.run.smithi100.stdout:rbd-nbd-19.0.0-2114.ga9a752df.el7.x86_64.rpm 429 kB/s | 171 kB 00:00 2024-04-15T00:36:50.806 INFO:teuthology.orchestra.run.smithi100.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:50.806 INFO:teuthology.orchestra.run.smithi100.stdout:Total 428 kB/s | 171 kB 00:00 2024-04-15T00:36:50.806 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction check 2024-04-15T00:36:50.814 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction check succeeded. 2024-04-15T00:36:50.814 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction test 2024-04-15T00:36:50.874 INFO:teuthology.orchestra.run.smithi100.stdout:Transaction test succeeded. 2024-04-15T00:36:50.875 INFO:teuthology.orchestra.run.smithi100.stdout:Running transaction 2024-04-15T00:36:51.031 INFO:teuthology.orchestra.run.smithi100.stdout: Preparing : 1/1 2024-04-15T00:36:51.083 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:51.083 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:51.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:51.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.083 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:51.083 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.084 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:51.085 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.086 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.087 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:51.088 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.089 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.090 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.090 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.090 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.091 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.092 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.093 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.093 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:51.093 INFO:teuthology.orchestra.run.smithi105.stdout:Package librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:51.126 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install ceph-volume 2024-04-15T00:36:51.137 INFO:teuthology.orchestra.run.smithi100.stdout: Installing : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:51.151 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:51.152 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:51.152 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:51.219 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install librbd1 2024-04-15T00:36:51.579 INFO:teuthology.orchestra.run.smithi100.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:51.741 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:50 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:51.823 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:01 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:51.880 INFO:teuthology.orchestra.run.smithi100.stdout: Verifying : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:51.880 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:51.880 INFO:teuthology.orchestra.run.smithi100.stdout:Installed: 2024-04-15T00:36:51.880 INFO:teuthology.orchestra.run.smithi100.stdout: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:51.880 INFO:teuthology.orchestra.run.smithi100.stdout: 2024-04-15T00:36:51.880 INFO:teuthology.orchestra.run.smithi100.stdout:Complete! 2024-04-15T00:36:52.029 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:52.029 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:52.029 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.030 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.031 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:52.032 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.033 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:52.034 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.035 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.036 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.037 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:52.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.038 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.098 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:52.098 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:52.098 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repository Size 2024-04-15T00:36:52.098 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-volume noarch 2:19.0.0-2114.ga9a752df.el7 ceph-noarch 264 k 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout:Installing dependencies: 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout:Install 2 Packages 2024-04-15T00:36:52.099 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:52.100 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 341 k 2024-04-15T00:36:52.100 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 1.5 M 2024-04-15T00:36:52.100 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:52.117 DEBUG:teuthology.parallel:result is None 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.120 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.121 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:52.122 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.123 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.124 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.125 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.126 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:52.127 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.128 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:52.129 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.129 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.129 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.129 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:52.129 INFO:teuthology.orchestra.run.smithi105.stdout:Package librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:52.190 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:52.191 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:52.191 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:52.259 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-rados 2024-04-15T00:36:52.508 INFO:teuthology.orchestra.run.smithi097.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 609 kB/s | 77 kB 00:00 2024-04-15T00:36:52.725 INFO:teuthology.orchestra.run.smithi097.stdout:(2/2): ceph-volume-19.0.0-2114.ga9a752df.el7.no 768 kB/s | 264 kB 00:00 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:Total 544 kB/s | 341 kB 00:00 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:52.821 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:52.857 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:02 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:52.935 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:53.099 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-15T00:36:53.136 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.145 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:53.146 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.147 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:53.148 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.149 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.150 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.151 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.152 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.153 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.154 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:53.155 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2/2 2024-04-15T00:36:53.155 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:36:53.155 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-15T00:36:53.155 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:53.155 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:53.213 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:53.214 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:53.214 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:53.292 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-rgw 2024-04-15T00:36:53.886 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:03 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:53.921 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 1/2 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:54.173 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.174 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.175 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:54.176 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:54.177 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:54.178 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.179 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.180 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.181 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.182 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:54.182 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.182 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.182 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.182 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:54.182 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:54.239 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:54.241 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:54.241 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:54.274 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-15T00:36:54.275 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:54.275 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:54.275 INFO:teuthology.orchestra.run.smithi097.stdout: ceph-volume-2:19.0.0-2114.ga9a752df.el7.noarch 2024-04-15T00:36:54.275 INFO:teuthology.orchestra.run.smithi097.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-15T00:36:54.275 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:54.275 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:54.317 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-cephfs 2024-04-15T00:36:54.607 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install librados-devel 2024-04-15T00:36:54.912 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:04 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:55.202 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:55.202 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:55.202 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.203 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.204 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.205 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.206 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.207 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.208 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.209 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.210 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.211 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.212 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:55.214 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:54 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:55.271 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:55.272 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:55.272 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:55.338 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install python3-rbd 2024-04-15T00:36:55.506 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:55.506 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:55.506 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:55.506 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.507 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:55.508 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:55.509 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:55.510 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.511 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:55.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:55.575 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:55.575 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:55.575 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repo Size 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout: librados-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 127 k 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:36:55.576 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:55.577 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 127 k 2024-04-15T00:36:55.577 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 456 k 2024-04-15T00:36:55.577 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:55.906 INFO:teuthology.orchestra.run.smithi097.stdout:librados-devel-19.0.0-2114.ga9a752df.el7.x86_64 385 kB/s | 127 kB 00:00 2024-04-15T00:36:55.907 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:55.907 INFO:teuthology.orchestra.run.smithi097.stdout:Total 383 kB/s | 127 kB 00:00 2024-04-15T00:36:55.907 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:55.913 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:55.913 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:55.933 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:05 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:55.973 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:55.973 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:56.181 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:56.222 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:56.222 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:56.222 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:56.222 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.222 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:56.222 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.223 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.224 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:56.225 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:56.226 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.227 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:56.228 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.229 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.230 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.231 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:56.232 INFO:teuthology.orchestra.run.smithi105.stdout:Package python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:56.289 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:56.290 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:56.291 INFO:teuthology.orchestra.run.smithi105.stdout:Nothing to do. 2024-04-15T00:36:56.291 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:56.355 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install rbd-fuse 2024-04-15T00:36:56.775 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:56.954 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:06 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:57.086 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:57.086 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:57.086 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:36:57.087 INFO:teuthology.orchestra.run.smithi097.stdout: librados-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:57.087 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:57.087 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:57.247 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:57.247 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.248 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:57.249 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.249 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:57.249 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.249 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:57.249 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.249 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:57.250 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.250 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:57.250 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.250 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:57.250 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.250 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:57.251 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.251 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:57.251 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.251 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:57.251 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.251 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:57.252 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.252 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:57.252 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.252 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:57.252 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.252 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:57.253 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.253 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:57.253 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.253 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:57.253 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.253 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:57.254 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.254 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:57.254 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.254 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:57.254 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.254 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:57.255 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.255 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:57.255 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.255 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:57.255 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.256 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:57.256 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.256 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:57.256 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.256 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:57.256 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.257 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:57.257 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.257 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:57.257 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.257 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:57.257 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.258 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:57.259 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.259 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:57.259 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.259 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:57.259 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.259 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:57.260 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.261 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.262 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.263 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:57.316 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:57.316 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:57.316 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 85 k 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:36:57.317 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:57.318 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 85 k 2024-04-15T00:36:57.318 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 231 k 2024-04-15T00:36:57.318 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:36:57.324 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install libcephfs2 2024-04-15T00:36:57.673 INFO:teuthology.orchestra.run.smithi105.stdout:rbd-fuse-19.0.0-2114.ga9a752df.el7.x86_64.rpm 240 kB/s | 85 kB 00:00 2024-04-15T00:36:57.674 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:57.674 INFO:teuthology.orchestra.run.smithi105.stdout:Total 239 kB/s | 85 kB 00:00 2024-04-15T00:36:57.674 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:36:57.681 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:36:57.681 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:36:57.741 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:36:57.741 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:36:57.895 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:36:57.928 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:56 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:57.997 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.219 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:58.220 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:58.221 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:58.222 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:58.223 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:58.224 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.225 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:58.226 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.227 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:58.228 INFO:teuthology.orchestra.run.smithi097.stdout:Package libcephfs2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:36:58.286 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:58.287 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:36:58.287 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:36:58.363 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install libcephfs-devel 2024-04-15T00:36:58.378 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:58.660 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:58.661 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:58.661 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:36:58.661 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:36:58.661 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:58.661 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:36:58.894 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install rbd-mirror 2024-04-15T00:36:58.954 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:01:57 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:36:59.238 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.239 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.240 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.241 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:36:59.242 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:36:59.243 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.244 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.245 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.246 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.247 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.248 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:59.248 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.248 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.248 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.248 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.304 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:36:59.304 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repo Size 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout: libcephfs-devel x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 32 k 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:36:59.305 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:36:59.306 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 32 k 2024-04-15T00:36:59.306 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 142 k 2024-04-15T00:36:59.306 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:36:59.468 INFO:teuthology.orchestra.run.smithi097.stdout:libcephfs-devel-19.0.0-2114.ga9a752df.el7.x86_6 195 kB/s | 32 kB 00:00 2024-04-15T00:36:59.469 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:36:59.469 INFO:teuthology.orchestra.run.smithi097.stdout:Total 193 kB/s | 32 kB 00:00 2024-04-15T00:36:59.469 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:36:59.473 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:36:59.473 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:36:59.495 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:36:59.495 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:36:59.499 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:09 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:36:59.584 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:36:59.709 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:36:59.793 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:36:59.793 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:36:59.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:36:59.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.793 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:36:59.793 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:36:59.794 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:36:59.795 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:36:59.796 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.797 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.798 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:36:59.799 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.800 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.801 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.802 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:36:59.861 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:36:59.862 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:59.862 INFO:teuthology.orchestra.run.smithi105.stdout: Package Arch Version Repo Size 2024-04-15T00:36:59.862 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-mirror x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 3.1 M 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 13 M 2024-04-15T00:36:59.863 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:37:00.066 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:00.360 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:00.361 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:00.361 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:37:00.361 INFO:teuthology.orchestra.run.smithi097.stdout: libcephfs-devel-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:37:00.361 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:00.361 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:00.434 INFO:teuthology.orchestra.run.smithi105.stdout:rbd-mirror-19.0.0-2114.ga9a752df.el7.x86_64.rpm 5.4 MB/s | 3.1 MB 00:00 2024-04-15T00:37:00.435 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:37:00.435 INFO:teuthology.orchestra.run.smithi105.stdout:Total 5.4 MB/s | 3.1 MB 00:00 2024-04-15T00:37:00.436 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:37:00.445 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:37:00.445 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:37:00.523 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:37:00.523 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:37:00.556 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install librados2 2024-04-15T00:37:00.958 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:37:01.027 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:01.051 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:01.051 INFO:teuthology.orchestra.run.smithi105.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:37:01.051 INFO:teuthology.orchestra.run.smithi105.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T00:37:01.052 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T00:37:01.052 INFO:teuthology.orchestra.run.smithi105.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T00:37:01.052 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:01.162 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:00 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:01.456 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:01.457 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:01.458 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:01.459 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:01.460 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:01.461 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.462 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.463 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.464 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.465 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:01.466 INFO:teuthology.orchestra.run.smithi097.stdout:Package librados2-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:37:01.525 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:01.526 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:37:01.526 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:01.605 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install librbd1 2024-04-15T00:37:02.155 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:02.156 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:02.156 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:37:02.156 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:37:02.156 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:02.156 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:37:02.199 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:01 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:02.418 DEBUG:teuthology.orchestra.run.smithi105:> sudo yum -y install rbd-nbd 2024-04-15T00:37:02.489 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:02.489 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:02.489 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:02.489 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.489 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:02.489 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.490 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.491 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.492 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:02.493 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.494 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.495 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.496 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.497 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.498 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.499 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.500 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.500 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:02.500 INFO:teuthology.orchestra.run.smithi097.stdout:Package librbd1-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:37:02.556 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:02.558 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:37:02.558 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:02.633 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install python3-rados 2024-04-15T00:37:03.029 INFO:teuthology.orchestra.run.smithi105.stdout:Last metadata expiration check: 0:02:13 ago on Mon 15 Apr 2024 12:34:50 AM UTC. 2024-04-15T00:37:03.225 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:02 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:03.318 INFO:teuthology.orchestra.run.smithi105.stderr:Modular dependency problems: 2024-04-15T00:37:03.318 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:37:03.318 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 1: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 2: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 3: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 4: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 5: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 6: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 7: conflicting requests 2024-04-15T00:37:03.319 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 8: conflicting requests 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 9: conflicting requests 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 10: conflicting requests 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 11: conflicting requests 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 12: conflicting requests 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 13: conflicting requests 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.320 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 14: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 15: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 16: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 17: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 18: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 19: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 20: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 21: conflicting requests 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.321 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 22: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 23: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 24: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 25: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 26: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 27: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 28: conflicting requests 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.322 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 29: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 30: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 31: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 32: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 33: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 34: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 35: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 36: conflicting requests 2024-04-15T00:37:03.323 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 37: conflicting requests 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 39: conflicting requests 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.324 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.325 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:03.326 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.327 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.327 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.327 INFO:teuthology.orchestra.run.smithi105.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.386 INFO:teuthology.orchestra.run.smithi105.stdout:Dependencies resolved. 2024-04-15T00:37:03.387 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:37:03.387 INFO:teuthology.orchestra.run.smithi105.stdout: Package Architecture Version Repository Size 2024-04-15T00:37:03.387 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:37:03.387 INFO:teuthology.orchestra.run.smithi105.stdout:Installing: 2024-04-15T00:37:03.387 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-nbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 171 k 2024-04-15T00:37:03.387 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction Summary 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:================================================================================ 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Install 1 Package 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Total download size: 171 k 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Installed size: 494 k 2024-04-15T00:37:03.388 INFO:teuthology.orchestra.run.smithi105.stdout:Downloading Packages: 2024-04-15T00:37:03.511 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.512 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.513 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:03.514 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.515 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.516 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:03.517 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.518 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.519 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.520 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:03.521 INFO:teuthology.orchestra.run.smithi097.stdout:Package python3-rados-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:37:03.580 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:03.581 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:37:03.581 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:03.649 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install python3-rgw 2024-04-15T00:37:03.771 INFO:teuthology.orchestra.run.smithi105.stdout:rbd-nbd-19.0.0-2114.ga9a752df.el7.x86_64.rpm 447 kB/s | 171 kB 00:00 2024-04-15T00:37:03.772 INFO:teuthology.orchestra.run.smithi105.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:37:03.772 INFO:teuthology.orchestra.run.smithi105.stdout:Total 445 kB/s | 171 kB 00:00 2024-04-15T00:37:03.772 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction check 2024-04-15T00:37:03.780 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction check succeeded. 2024-04-15T00:37:03.780 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction test 2024-04-15T00:37:03.840 INFO:teuthology.orchestra.run.smithi105.stdout:Transaction test succeeded. 2024-04-15T00:37:03.840 INFO:teuthology.orchestra.run.smithi105.stdout:Running transaction 2024-04-15T00:37:04.001 INFO:teuthology.orchestra.run.smithi105.stdout: Preparing : 1/1 2024-04-15T00:37:04.112 INFO:teuthology.orchestra.run.smithi105.stdout: Installing : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:04.245 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:03 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:04.530 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:04.530 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:04.530 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:04.530 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:04.531 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.532 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:04.533 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.534 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.535 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.536 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.537 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.538 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.539 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:04.540 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.540 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.540 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.540 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:04.540 INFO:teuthology.orchestra.run.smithi097.stdout:Package python3-rgw-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:37:04.564 INFO:teuthology.orchestra.run.smithi105.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:04.597 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:04.599 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:37:04.599 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:04.675 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install python3-cephfs 2024-04-15T00:37:04.887 INFO:teuthology.orchestra.run.smithi105.stdout: Verifying : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:04.888 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:04.888 INFO:teuthology.orchestra.run.smithi105.stdout:Installed: 2024-04-15T00:37:04.888 INFO:teuthology.orchestra.run.smithi105.stdout: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:37:04.888 INFO:teuthology.orchestra.run.smithi105.stdout: 2024-04-15T00:37:04.888 INFO:teuthology.orchestra.run.smithi105.stdout:Complete! 2024-04-15T00:37:05.131 DEBUG:teuthology.parallel:result is None 2024-04-15T00:37:05.273 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:04 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:05.563 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.564 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:05.565 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.566 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:05.567 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.568 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.569 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.570 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.571 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.572 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:05.573 INFO:teuthology.orchestra.run.smithi097.stdout:Package python3-cephfs-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:37:05.631 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:05.632 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:37:05.632 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:05.701 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install python3-rbd 2024-04-15T00:37:06.302 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:05 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:06.591 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:06.591 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:06.591 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:06.591 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.592 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.593 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:06.594 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.595 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:06.596 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.597 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.598 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.599 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.600 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:06.601 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.601 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.601 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.601 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:06.601 INFO:teuthology.orchestra.run.smithi097.stdout:Package python3-rbd-2:19.0.0-2114.ga9a752df.el7.x86_64 is already installed. 2024-04-15T00:37:06.659 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:06.660 INFO:teuthology.orchestra.run.smithi097.stdout:Nothing to do. 2024-04-15T00:37:06.660 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:06.737 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install rbd-fuse 2024-04-15T00:37:07.332 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:06 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:07.620 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:07.621 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:07.622 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.623 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:07.624 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:07.625 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.626 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:07.627 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:07.628 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.629 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:07.690 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout: Package Architecture Version Repository Size 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout: rbd-fuse x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 85 k 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 85 k 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 231 k 2024-04-15T00:37:07.691 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:37:07.888 INFO:teuthology.orchestra.run.smithi097.stdout:rbd-fuse-19.0.0-2114.ga9a752df.el7.x86_64.rpm 433 kB/s | 85 kB 00:00 2024-04-15T00:37:07.889 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:37:07.889 INFO:teuthology.orchestra.run.smithi097.stdout:Total 431 kB/s | 85 kB 00:00 2024-04-15T00:37:07.889 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:37:07.896 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:37:07.896 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:37:07.956 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:37:07.957 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:37:08.094 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:37:08.204 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:08.589 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:08.950 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:08.951 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:08.951 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:37:08.951 INFO:teuthology.orchestra.run.smithi097.stdout: rbd-fuse-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:37:08.951 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:08.951 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:09.204 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install rbd-mirror 2024-04-15T00:37:09.813 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:08 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:10.114 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:10.115 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.116 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:10.117 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:10.118 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:10.119 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.120 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.121 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:10.122 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.123 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:10.124 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.124 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.124 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.124 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:10.183 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout: Package Arch Version Repo Size 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout: rbd-mirror x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 3.1 M 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:10.184 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:37:10.185 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:10.185 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 3.1 M 2024-04-15T00:37:10.185 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 13 M 2024-04-15T00:37:10.185 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:37:10.567 INFO:teuthology.orchestra.run.smithi097.stdout:rbd-mirror-19.0.0-2114.ga9a752df.el7.x86_64.rpm 8.1 MB/s | 3.1 MB 00:00 2024-04-15T00:37:10.567 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:37:10.568 INFO:teuthology.orchestra.run.smithi097.stdout:Total 8.0 MB/s | 3.1 MB 00:00 2024-04-15T00:37:10.568 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:37:10.577 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:37:10.577 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:37:10.654 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:37:10.654 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:37:11.081 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:37:11.151 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:11.175 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:11.175 INFO:teuthology.orchestra.run.smithi097.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-15T00:37:11.175 INFO:teuthology.orchestra.run.smithi097.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-15T00:37:11.175 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T00:37:11.176 INFO:teuthology.orchestra.run.smithi097.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-15T00:37:11.176 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:12.235 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:12.235 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:12.235 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:37:12.235 INFO:teuthology.orchestra.run.smithi097.stdout: rbd-mirror-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:37:12.235 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:12.235 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:12.477 DEBUG:teuthology.orchestra.run.smithi097:> sudo yum -y install rbd-nbd 2024-04-15T00:37:13.091 INFO:teuthology.orchestra.run.smithi097.stdout:Last metadata expiration check: 0:02:12 ago on Mon 15 Apr 2024 12:35:01 AM UTC. 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr:Modular dependency problems: 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 1: conflicting requests 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 2: conflicting requests 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.388 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 3: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 4: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 5: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 6: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 7: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 8: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 9: conflicting requests 2024-04-15T00:37:13.389 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 10: conflicting requests 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 11: conflicting requests 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 12: conflicting requests 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 13: conflicting requests 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 14: conflicting requests 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 15: conflicting requests 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.390 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 16: conflicting requests 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 17: conflicting requests 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 18: conflicting requests 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 19: conflicting requests 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 20: conflicting requests 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 21: conflicting requests 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.391 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 22: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 23: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 24: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 25: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 26: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 27: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 28: conflicting requests 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.392 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 29: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 30: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 31: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 32: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 33: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 34: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 35: conflicting requests 2024-04-15T00:37:13.393 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 36: conflicting requests 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 37: conflicting requests 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 38: cannot install the best candidate for the job 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.394 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 39: conflicting requests 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 40: cannot install the best candidate for the job 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 41: cannot install the best candidate for the job 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.395 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 42: cannot install the best candidate for the job 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 43: cannot install the best candidate for the job 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 44: cannot install the best candidate for the job 2024-04-15T00:37:13.396 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: Problem 45: cannot install the best candidate for the job 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.397 INFO:teuthology.orchestra.run.smithi097.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-15T00:37:13.456 INFO:teuthology.orchestra.run.smithi097.stdout:Dependencies resolved. 2024-04-15T00:37:13.457 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:13.457 INFO:teuthology.orchestra.run.smithi097.stdout: Package Architecture Version Repository Size 2024-04-15T00:37:13.457 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout:Installing: 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout: rbd-nbd x86_64 2:19.0.0-2114.ga9a752df.el7 ceph 171 k 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction Summary 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout:================================================================================ 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout:Install 1 Package 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:13.458 INFO:teuthology.orchestra.run.smithi097.stdout:Total download size: 171 k 2024-04-15T00:37:13.461 INFO:teuthology.orchestra.run.smithi097.stdout:Installed size: 494 k 2024-04-15T00:37:13.462 INFO:teuthology.orchestra.run.smithi097.stdout:Downloading Packages: 2024-04-15T00:37:13.796 INFO:teuthology.orchestra.run.smithi097.stdout:rbd-nbd-19.0.0-2114.ga9a752df.el7.x86_64.rpm 507 kB/s | 171 kB 00:00 2024-04-15T00:37:13.797 INFO:teuthology.orchestra.run.smithi097.stdout:-------------------------------------------------------------------------------- 2024-04-15T00:37:13.797 INFO:teuthology.orchestra.run.smithi097.stdout:Total 505 kB/s | 171 kB 00:00 2024-04-15T00:37:13.797 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction check 2024-04-15T00:37:13.804 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction check succeeded. 2024-04-15T00:37:13.805 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction test 2024-04-15T00:37:13.866 INFO:teuthology.orchestra.run.smithi097.stdout:Transaction test succeeded. 2024-04-15T00:37:13.866 INFO:teuthology.orchestra.run.smithi097.stdout:Running transaction 2024-04-15T00:37:14.027 INFO:teuthology.orchestra.run.smithi097.stdout: Preparing : 1/1 2024-04-15T00:37:14.138 INFO:teuthology.orchestra.run.smithi097.stdout: Installing : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:14.566 INFO:teuthology.orchestra.run.smithi097.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:14.903 INFO:teuthology.orchestra.run.smithi097.stdout: Verifying : rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 1/1 2024-04-15T00:37:14.903 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:14.903 INFO:teuthology.orchestra.run.smithi097.stdout:Installed: 2024-04-15T00:37:14.903 INFO:teuthology.orchestra.run.smithi097.stdout: rbd-nbd-2:19.0.0-2114.ga9a752df.el7.x86_64 2024-04-15T00:37:14.904 INFO:teuthology.orchestra.run.smithi097.stdout: 2024-04-15T00:37:14.904 INFO:teuthology.orchestra.run.smithi097.stdout:Complete! 2024-04-15T00:37:15.140 DEBUG:teuthology.parallel:result is None 2024-04-15T00:37:15.141 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:15.279 DEBUG:teuthology.orchestra.run.smithi097:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T00:37:15.299 INFO:teuthology.orchestra.run.smithi097.stdout:19.0.0-2114.ga9a752df.el7 2024-04-15T00:37:15.300 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114.ga9a752df.el7 2024-04-15T00:37:15.300 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114.ga9a752df is installed. 2024-04-15T00:37:15.306 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:15.518 DEBUG:teuthology.orchestra.run.smithi100:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T00:37:15.543 INFO:teuthology.orchestra.run.smithi100.stdout:19.0.0-2114.ga9a752df.el7 2024-04-15T00:37:15.543 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114.ga9a752df.el7 2024-04-15T00:37:15.543 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114.ga9a752df is installed. 2024-04-15T00:37:15.545 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:15.683 DEBUG:teuthology.orchestra.run.smithi105:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-15T00:37:15.707 INFO:teuthology.orchestra.run.smithi105.stdout:19.0.0-2114.ga9a752df.el7 2024-04-15T00:37:15.707 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2114.ga9a752df.el7 2024-04-15T00:37:15.708 INFO:teuthology.task.install:The correct ceph version 19.0.0-2114.ga9a752df is installed. 2024-04-15T00:37:15.709 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-15T00:37:15.709 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-15T00:37:15.710 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T00:37:15.751 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-04-15T00:37:15.752 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T00:37:15.784 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-15T00:37:15.784 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-15T00:37:15.816 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-15T00:37:15.817 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-15T00:37:15.817 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T00:37:15.844 DEBUG:teuthology.orchestra.run.smithi097:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T00:37:15.911 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-04-15T00:37:15.911 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T00:37:15.942 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T00:37:16.013 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-15T00:37:16.013 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/usr/bin/daemon-helper 2024-04-15T00:37:16.045 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-15T00:37:16.112 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-15T00:37:16.112 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-15T00:37:16.112 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T00:37:16.139 DEBUG:teuthology.orchestra.run.smithi097:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T00:37:16.206 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-04-15T00:37:16.206 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T00:37:16.237 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T00:37:16.304 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-15T00:37:16.304 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-15T00:37:16.332 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-15T00:37:16.399 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-15T00:37:16.399 DEBUG:teuthology.orchestra.run.smithi097:> set -ex 2024-04-15T00:37:16.400 DEBUG:teuthology.orchestra.run.smithi097:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T00:37:16.427 DEBUG:teuthology.orchestra.run.smithi097:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T00:37:16.494 DEBUG:teuthology.orchestra.run.smithi100:> set -ex 2024-04-15T00:37:16.495 DEBUG:teuthology.orchestra.run.smithi100:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T00:37:16.522 DEBUG:teuthology.orchestra.run.smithi100:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T00:37:16.590 DEBUG:teuthology.orchestra.run.smithi105:> set -ex 2024-04-15T00:37:16.590 DEBUG:teuthology.orchestra.run.smithi105:> sudo dd of=/usr/bin/stdin-killer 2024-04-15T00:37:16.617 DEBUG:teuthology.orchestra.run.smithi105:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-15T00:37:16.684 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-15T00:37:16.791 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN'], 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765'} 2024-04-15T00:37:16.791 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:16.792 INFO:tasks.cephadm:Cluster fsid is 4f67aad4-fac0-11ee-bc8e-c7b262605968 2024-04-15T00:37:16.792 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-15T00:37:16.792 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.97', 'mon.b': '172.21.15.100', 'mon.c': '172.21.15.105'} 2024-04-15T00:37:16.792 INFO:tasks.cephadm:First mon is mon.a on smithi097 2024-04-15T00:37:16.792 INFO:tasks.cephadm:First mgr is a 2024-04-15T00:37:16.792 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-15T00:37:16.793 DEBUG:teuthology.orchestra.run.smithi097:> sudo hostname $(hostname -s) 2024-04-15T00:37:16.821 DEBUG:teuthology.orchestra.run.smithi100:> sudo hostname $(hostname -s) 2024-04-15T00:37:16.848 DEBUG:teuthology.orchestra.run.smithi105:> sudo hostname $(hostname -s) 2024-04-15T00:37:16.875 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-15T00:37:16.875 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:17.024 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'a9a752df26c63acad72e1b3569fd79a515ca0765', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/54895/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2114-ga9a752df', 'node_name': '172.21.5.39+adami09', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '19.0.0-2114.ga9a752df'}, 'url': 'https://1.chacra.ceph.com/r/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-14 16:04:37.608971', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'squid', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}] 2024-04-15T00:37:17.163 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref squid, sha1 a9a752df26c63acad72e1b3569fd79a515ca0765 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:17.165 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm 2024-04-15T00:37:17.165 DEBUG:teuthology.orchestra.run.smithi097:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:17.620 INFO:teuthology.orchestra.run.smithi097.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 00:37 /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:17.620 DEBUG:teuthology.orchestra.run.smithi100:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.067 INFO:teuthology.orchestra.run.smithi100.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 00:37 /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.067 DEBUG:teuthology.orchestra.run.smithi105:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/squid/a9a752df26c63acad72e1b3569fd79a515ca0765/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.701 INFO:teuthology.orchestra.run.smithi105.stdout:-rw-r--r--. 1 ubuntu ubuntu 767805 Apr 15 00:37 /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.702 DEBUG:teuthology.orchestra.run.smithi097:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.720 DEBUG:teuthology.orchestra.run.smithi100:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.739 DEBUG:teuthology.orchestra.run.smithi105:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:18.788 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 on all hosts... 2024-04-15T00:37:18.788 DEBUG:teuthology.orchestra.run.smithi097:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T00:37:18.791 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T00:37:18.793 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull 2024-04-15T00:37:19.598 INFO:teuthology.orchestra.run.smithi100.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T00:37:19.698 INFO:teuthology.orchestra.run.smithi105.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T00:37:19.716 INFO:teuthology.orchestra.run.smithi097.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T00:37:19.771 INFO:teuthology.orchestra.run.smithi100.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:19.771 INFO:teuthology.orchestra.run.smithi100.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T00:37:19.771 INFO:teuthology.orchestra.run.smithi100.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T00:37:19.771 INFO:teuthology.orchestra.run.smithi100.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:19.871 INFO:teuthology.orchestra.run.smithi105.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:19.871 INFO:teuthology.orchestra.run.smithi105.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T00:37:19.871 INFO:teuthology.orchestra.run.smithi105.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T00:37:19.871 INFO:teuthology.orchestra.run.smithi105.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:19.902 INFO:teuthology.orchestra.run.smithi097.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:19.902 INFO:teuthology.orchestra.run.smithi097.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765... 2024-04-15T00:37:19.902 INFO:teuthology.orchestra.run.smithi097.stderr:/bin/podman: stderr Error: initializing source docker://quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765: reading manifest a9a752df26c63acad72e1b3569fd79a515ca0765 in quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph: manifest unknown 2024-04-15T00:37:19.902 INFO:teuthology.orchestra.run.smithi097.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 2024-04-15T00:37:19.926 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:19.926 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi097 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T00:37:19.927 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-15T00:37:19.929 DEBUG:teuthology.misc:Transferring archived files from smithi097:/var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi097/crash 2024-04-15T00:37:19.930 DEBUG:teuthology.orchestra.run.smithi097:> sudo tar c -f - -C /var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash -- . 2024-04-15T00:37:19.967 INFO:teuthology.orchestra.run.smithi097.stderr:tar: /var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T00:37:19.967 INFO:teuthology.orchestra.run.smithi097.stderr:tar: Error is not recoverable: exiting now 2024-04-15T00:37:19.968 DEBUG:teuthology.misc:Transferring archived files from smithi100:/var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi100/crash 2024-04-15T00:37:19.969 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash -- . 2024-04-15T00:37:20.010 INFO:teuthology.orchestra.run.smithi100.stderr:tar: /var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T00:37:20.010 INFO:teuthology.orchestra.run.smithi100.stderr:tar: Error is not recoverable: exiting now 2024-04-15T00:37:20.012 DEBUG:teuthology.misc:Transferring archived files from smithi105:/var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi105/crash 2024-04-15T00:37:20.013 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash -- . 2024-04-15T00:37:20.050 INFO:teuthology.orchestra.run.smithi105.stderr:tar: /var/lib/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/crash: Cannot open: No such file or directory 2024-04-15T00:37:20.050 INFO:teuthology.orchestra.run.smithi105.stderr:tar: Error is not recoverable: exiting now 2024-04-15T00:37:20.051 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-15T00:37:20.052 DEBUG:teuthology.orchestra.run.smithi097:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-04-15T00:37:20.078 INFO:teuthology.orchestra.run.smithi097.stderr:grep: /var/log/ceph/4f67aad4-fac0-11ee-bc8e-c7b262605968/ceph.log: No such file or directory 2024-04-15T00:37:20.080 INFO:tasks.cephadm:Compressing logs... 2024-04-15T00:37:20.080 DEBUG:teuthology.orchestra.run.smithi097:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T00:37:20.122 DEBUG:teuthology.orchestra.run.smithi100:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T00:37:20.125 DEBUG:teuthology.orchestra.run.smithi105:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-04-15T00:37:20.147 INFO:teuthology.orchestra.run.smithi097.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T00:37:20.147 INFO:teuthology.orchestra.run.smithi097.stderr:: No such file or directory 2024-04-15T00:37:20.147 INFO:teuthology.orchestra.run.smithi097.stderr:/var/log/ceph/cephadm.log: 73.7% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T00:37:20.149 INFO:teuthology.orchestra.run.smithi097.stderr: 2024-04-15T00:37:20.149 INFO:teuthology.orchestra.run.smithi097.stderr:real 0m0.015s 2024-04-15T00:37:20.149 INFO:teuthology.orchestra.run.smithi097.stderr:user 0m0.012s 2024-04-15T00:37:20.149 INFO:teuthology.orchestra.run.smithi097.stderr:sys 0m0.014s 2024-04-15T00:37:20.150 INFO:teuthology.orchestra.run.smithi100.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose --: No such file or directory /var/log/ceph/cephadm.log 2024-04-15T00:37:20.150 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:37:20.150 INFO:teuthology.orchestra.run.smithi100.stderr:/var/log/ceph/cephadm.log: 73.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T00:37:20.151 INFO:teuthology.orchestra.run.smithi105.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-15T00:37:20.151 INFO:teuthology.orchestra.run.smithi105.stderr:: No such file or directory 2024-04-15T00:37:20.152 INFO:teuthology.orchestra.run.smithi100.stderr: 2024-04-15T00:37:20.152 INFO:teuthology.orchestra.run.smithi100.stderr:real 0m0.015s 2024-04-15T00:37:20.152 INFO:teuthology.orchestra.run.smithi100.stderr:user 0m0.009s 2024-04-15T00:37:20.152 INFO:teuthology.orchestra.run.smithi100.stderr:sys 0m0.018s 2024-04-15T00:37:20.153 INFO:teuthology.orchestra.run.smithi105.stderr:/var/log/ceph/cephadm.log: 73.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-15T00:37:20.153 INFO:teuthology.orchestra.run.smithi105.stderr: 2024-04-15T00:37:20.153 INFO:teuthology.orchestra.run.smithi105.stderr:real 0m0.014s 2024-04-15T00:37:20.153 INFO:teuthology.orchestra.run.smithi105.stderr:user 0m0.012s 2024-04-15T00:37:20.154 INFO:teuthology.orchestra.run.smithi105.stderr:sys 0m0.015s 2024-04-15T00:37:20.154 INFO:tasks.cephadm:Archiving logs... 2024-04-15T00:37:20.154 DEBUG:teuthology.misc:Transferring archived files from smithi097:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi097/log 2024-04-15T00:37:20.155 DEBUG:teuthology.orchestra.run.smithi097:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T00:37:20.216 DEBUG:teuthology.misc:Transferring archived files from smithi100:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi100/log 2024-04-15T00:37:20.217 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T00:37:20.245 DEBUG:teuthology.misc:Transferring archived files from smithi105:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi105/log 2024-04-15T00:37:20.246 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-15T00:37:20.273 INFO:tasks.cephadm:Removing cluster... 2024-04-15T00:37:20.273 DEBUG:teuthology.orchestra.run.smithi097:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 4f67aad4-fac0-11ee-bc8e-c7b262605968 --force 2024-04-15T00:37:20.454 INFO:teuthology.orchestra.run.smithi097.stdout:Deleting cluster with fsid: 4f67aad4-fac0-11ee-bc8e-c7b262605968 2024-04-15T00:37:20.718 DEBUG:teuthology.orchestra.run.smithi100:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 4f67aad4-fac0-11ee-bc8e-c7b262605968 --force 2024-04-15T00:37:20.893 INFO:teuthology.orchestra.run.smithi100.stdout:Deleting cluster with fsid: 4f67aad4-fac0-11ee-bc8e-c7b262605968 2024-04-15T00:37:21.153 DEBUG:teuthology.orchestra.run.smithi105:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 4f67aad4-fac0-11ee-bc8e-c7b262605968 --force 2024-04-15T00:37:21.335 INFO:teuthology.orchestra.run.smithi105.stdout:Deleting cluster with fsid: 4f67aad4-fac0-11ee-bc8e-c7b262605968 2024-04-15T00:37:21.585 INFO:tasks.cephadm:Removing cephadm ... 2024-04-15T00:37:21.586 DEBUG:teuthology.orchestra.run.smithi097:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:21.603 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:21.620 DEBUG:teuthology.orchestra.run.smithi105:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-15T00:37:21.636 INFO:tasks.cephadm:Teardown complete 2024-04-15T00:37:21.636 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi097 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T00:37:21.859 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=231c0d28171840fba11f7edc98106e06 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/run_tasks.py", line 109, in run_tasks manager.__enter__() File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 1771, in task with contextutil.nested( File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__ self.gen.throw(type, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 1686, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_a9a752df26c63acad72e1b3569fd79a515ca0765/qa/tasks/cephadm.py", line 484, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_6c637841c215537a4502385240412f1966e0faab/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi097 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull' 2024-04-15T00:37:21.862 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-15T00:37:21.872 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-15T00:37:21.882 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-04-15T00:37:21.883 DEBUG:teuthology.orchestra.run.smithi097:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T00:37:21.896 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T00:37:21.900 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-15T00:37:22.003 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-15T00:37:22.012 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-15T00:37:22.012 DEBUG:teuthology.orchestra.run.smithi097:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T00:37:22.015 DEBUG:teuthology.orchestra.run.smithi100:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T00:37:22.017 DEBUG:teuthology.orchestra.run.smithi105:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-15T00:37:22.029 INFO:teuthology.orchestra.run.smithi097.stderr:bash: line 1: ntpq: command not found 2024-04-15T00:37:22.030 INFO:teuthology.orchestra.run.smithi100.stderr:bash: line 1: ntpq: command not found 2024-04-15T00:37:22.031 INFO:teuthology.orchestra.run.smithi105.stderr:bash: line 1: ntpq: command not found 2024-04-15T00:37:22.033 INFO:teuthology.orchestra.run.smithi097.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T00:37:22.033 INFO:teuthology.orchestra.run.smithi097.stdout:=============================================================================== 2024-04-15T00:37:22.034 INFO:teuthology.orchestra.run.smithi097.stdout:^* hv01.front.sepia.ceph.com 3 6 77 54 +1031us[+1028us] +/- 56ms 2024-04-15T00:37:22.034 INFO:teuthology.orchestra.run.smithi097.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 55 -927us[ -930us] +/- 58ms 2024-04-15T00:37:22.034 INFO:teuthology.orchestra.run.smithi097.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 55 -240us[ -242us] +/- 88ms 2024-04-15T00:37:22.034 INFO:teuthology.orchestra.run.smithi097.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:37:22.035 INFO:teuthology.orchestra.run.smithi100.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T00:37:22.036 INFO:teuthology.orchestra.run.smithi100.stdout:=============================================================================== 2024-04-15T00:37:22.036 INFO:teuthology.orchestra.run.smithi100.stdout:^* hv01.front.sepia.ceph.com 3 6 77 54 +1033us[+1033us] +/- 56ms 2024-04-15T00:37:22.036 INFO:teuthology.orchestra.run.smithi100.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 55 -912us[ -913us] +/- 59ms 2024-04-15T00:37:22.036 INFO:teuthology.orchestra.run.smithi100.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 55 -244us[ -244us] +/- 88ms 2024-04-15T00:37:22.036 INFO:teuthology.orchestra.run.smithi100.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:37:22.037 INFO:teuthology.orchestra.run.smithi105.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-15T00:37:22.038 INFO:teuthology.orchestra.run.smithi105.stdout:=============================================================================== 2024-04-15T00:37:22.038 INFO:teuthology.orchestra.run.smithi105.stdout:^* hv01.front.sepia.ceph.com 3 6 77 55 +1046us[ +932us] +/- 56ms 2024-04-15T00:37:22.038 INFO:teuthology.orchestra.run.smithi105.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 55 -881us[ -881us] +/- 59ms 2024-04-15T00:37:22.038 INFO:teuthology.orchestra.run.smithi105.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 53 -223us[ -223us] +/- 88ms 2024-04-15T00:37:22.038 INFO:teuthology.orchestra.run.smithi105.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-15T00:37:22.038 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-15T00:37:22.050 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-15T00:37:22.051 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-15T00:37:22.065 DEBUG:teuthology.orchestra.run.smithi097:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T00:37:22.143 DEBUG:teuthology.orchestra.run.smithi100:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T00:37:22.209 DEBUG:teuthology.orchestra.run.smithi105:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-04-15T00:37:22.272 DEBUG:teuthology.orchestra.run.smithi097:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T00:37:22.304 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:22.304 DEBUG:teuthology.orchestra.run.smithi100:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T00:37:22.334 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:22.335 DEBUG:teuthology.orchestra.run.smithi105:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 2024-04-15T00:37:22.363 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:22.363 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-15T00:37:22.373 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-15T00:37:22.384 INFO:teuthology.task.internal:Duration was 470.327498 seconds 2024-04-15T00:37:22.384 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-15T00:37:22.397 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-15T00:37:22.398 DEBUG:teuthology.orchestra.run.smithi097:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T00:37:22.400 DEBUG:teuthology.orchestra.run.smithi100:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T00:37:22.403 DEBUG:teuthology.orchestra.run.smithi105:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-15T00:37:22.445 INFO:teuthology.orchestra.run.smithi100.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T00:37:22.445 INFO:teuthology.orchestra.run.smithi097.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T00:37:22.446 INFO:teuthology.orchestra.run.smithi105.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-15T00:37:22.950 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-15T00:37:22.950 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi097.front.sepia.ceph.com 2024-04-15T00:37:22.951 DEBUG:teuthology.orchestra.run.smithi097:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T00:37:22.974 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi100.front.sepia.ceph.com 2024-04-15T00:37:22.974 DEBUG:teuthology.orchestra.run.smithi100:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T00:37:23.011 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi105.front.sepia.ceph.com 2024-04-15T00:37:23.011 DEBUG:teuthology.orchestra.run.smithi105:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-04-15T00:37:23.041 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-15T00:37:23.041 DEBUG:teuthology.orchestra.run.smithi097:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T00:37:23.044 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T00:37:23.054 DEBUG:teuthology.orchestra.run.smithi105:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-15T00:37:23.112 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-15T00:37:23.112 DEBUG:teuthology.orchestra.run.smithi097:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T00:37:23.117 DEBUG:teuthology.orchestra.run.smithi100:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T00:37:23.123 DEBUG:teuthology.orchestra.run.smithi105:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-15T00:37:23.247 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-15T00:37:23.260 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-15T00:37:23.260 DEBUG:teuthology.orchestra.run.smithi097:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T00:37:23.288 DEBUG:teuthology.orchestra.run.smithi100:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T00:37:23.315 DEBUG:teuthology.orchestra.run.smithi105:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-15T00:37:23.341 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-15T00:37:23.352 DEBUG:teuthology.orchestra.run.smithi097:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T00:37:23.354 DEBUG:teuthology.orchestra.run.smithi100:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T00:37:23.357 DEBUG:teuthology.orchestra.run.smithi105:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-04-15T00:37:23.378 INFO:teuthology.orchestra.run.smithi097.stdout:kernel.core_pattern = core 2024-04-15T00:37:23.458 INFO:teuthology.orchestra.run.smithi100.stdout:kernel.core_pattern = core 2024-04-15T00:37:23.483 INFO:teuthology.orchestra.run.smithi105.stdout:kernel.core_pattern = core 2024-04-15T00:37:23.514 DEBUG:teuthology.orchestra.run.smithi097:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T00:37:23.528 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:23.528 DEBUG:teuthology.orchestra.run.smithi100:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T00:37:23.542 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:23.543 DEBUG:teuthology.orchestra.run.smithi105:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-15T00:37:23.567 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-15T00:37:23.568 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-15T00:37:23.578 INFO:teuthology.task.internal:Transferring archived files... 2024-04-15T00:37:23.579 DEBUG:teuthology.misc:Transferring archived files from smithi097:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi097 2024-04-15T00:37:23.579 DEBUG:teuthology.orchestra.run.smithi097:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T00:37:23.614 DEBUG:teuthology.misc:Transferring archived files from smithi100:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi100 2024-04-15T00:37:23.615 DEBUG:teuthology.orchestra.run.smithi100:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T00:37:23.651 DEBUG:teuthology.misc:Transferring archived files from smithi105:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155/remote/smithi105 2024-04-15T00:37:23.651 DEBUG:teuthology.orchestra.run.smithi105:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-15T00:37:23.689 INFO:teuthology.task.internal:Removing archive directory... 2024-04-15T00:37:23.690 DEBUG:teuthology.orchestra.run.smithi097:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T00:37:23.692 DEBUG:teuthology.orchestra.run.smithi100:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T00:37:23.694 DEBUG:teuthology.orchestra.run.smithi105:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-15T00:37:23.735 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-15T00:37:23.748 INFO:teuthology.task.internal:Not uploading archives. 2024-04-15T00:37:23.748 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-15T00:37:23.757 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-15T00:37:23.758 DEBUG:teuthology.orchestra.run.smithi097:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T00:37:23.760 DEBUG:teuthology.orchestra.run.smithi100:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T00:37:23.763 DEBUG:teuthology.orchestra.run.smithi105:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-15T00:37:23.772 INFO:teuthology.orchestra.run.smithi097.stdout: 262166 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 00:37 /home/ubuntu/cephtest 2024-04-15T00:37:23.774 INFO:teuthology.orchestra.run.smithi100.stdout: 265306 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 00:37 /home/ubuntu/cephtest 2024-04-15T00:37:23.789 INFO:teuthology.orchestra.run.smithi105.stdout: 265306 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 15 00:37 /home/ubuntu/cephtest 2024-04-15T00:37:23.791 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-15T00:37:23.801 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-15T00:37:23.876 INFO:teuthology.nuke:Checking targets against current locks 2024-04-15T00:37:23.904 DEBUG:teuthology.nuke:shortname: smithi097 2024-04-15T00:37:23.904 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T00:37:23.928 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi097.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 00:20:50.280947', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBopQnklFU6rsCuDqR3oH88Pr6KVlGNTcJJZ9qkP09uOOTh/uebkTFwy1Qk5yTXovEz3DjkV7B3tq8DD9cPl+3s='} 2024-04-15T00:37:23.932 DEBUG:teuthology.nuke:shortname: smithi100 2024-04-15T00:37:23.932 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T00:37:23.957 DEBUG:teuthology.nuke:shortname: smithi105 2024-04-15T00:37:23.957 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-15T00:37:23.961 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi100.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 00:20:50.281989', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHo9AKK7/BLNXR/wPK3XZ5iED6Chw8qLAbI/K4BglFT58A/+luBhx7+iSltAB7SPt7WTtjgGh0YKcHGpPu3fOeY='} 2024-04-15T00:37:23.984 INFO:teuthology.orchestra.console.smithi097:Power off 2024-04-15T00:37:23.984 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T00:37:23.996 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi105.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-14_21:00:09-rados-squid-distro-default-smithi/7656155', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-04-15 00:20:50.279375', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMS/P5KYnLbG5x9ZMXxoqqIN9diTe54lholns6aJoIHuzuu3OzgIzMhpcoYyUPgLIFxyLDAQoeZ0g3lEe0TpEpg='} 2024-04-15T00:37:24.008 DEBUG:teuthology.orchestra.console.smithi097:power off output: Chassis Power Control: Down/Off 2024-04-15T00:37:24.008 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:24.031 INFO:teuthology.orchestra.console.smithi100:Power off 2024-04-15T00:37:24.032 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T00:37:24.040 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is on 2024-04-15T00:37:24.061 INFO:teuthology.orchestra.console.smithi105:Power off 2024-04-15T00:37:24.061 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-15T00:37:24.071 DEBUG:teuthology.orchestra.console.smithi100:power off output: Chassis Power Control: Down/Off 2024-04-15T00:37:24.071 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:24.084 DEBUG:teuthology.orchestra.console.smithi105:power off output: Chassis Power Control: Down/Off 2024-04-15T00:37:24.084 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:24.093 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-04-15T00:37:24.109 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is on 2024-04-15T00:37:28.041 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:28.094 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:28.109 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:28.153 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is on 2024-04-15T00:37:28.207 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is on 2024-04-15T00:37:28.220 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is on 2024-04-15T00:37:32.158 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:32.208 DEBUG:teuthology.orchestra.console.smithi100:pexpect command: ipmitool -H smithi100.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:32.221 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:32.270 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is on 2024-04-15T00:37:32.317 DEBUG:teuthology.orchestra.console.smithi100:check power output: Chassis Power is off 2024-04-15T00:37:32.331 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is on 2024-04-15T00:37:32.418 INFO:teuthology.orchestra.console.smithi100:Power off completed 2024-04-15T00:37:36.274 DEBUG:teuthology.orchestra.console.smithi097:pexpect command: ipmitool -H smithi097.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:36.332 DEBUG:teuthology.orchestra.console.smithi105:pexpect command: ipmitool -H smithi105.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-15T00:37:36.385 DEBUG:teuthology.orchestra.console.smithi097:check power output: Chassis Power is off 2024-04-15T00:37:36.443 DEBUG:teuthology.orchestra.console.smithi105:check power output: Chassis Power is off 2024-04-15T00:37:36.486 INFO:teuthology.orchestra.console.smithi097:Power off completed 2024-04-15T00:37:36.544 INFO:teuthology.orchestra.console.smithi105:Power off completed 2024-04-15T00:37:36.649 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream_runc agent/off mon_election/classic task/test_host_drain} duration: 470.32749819755554 failure_reason: 'Command failed on smithi097 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:a9a752df26c63acad72e1b3569fd79a515ca0765 pull''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=231c0d28171840fba11f7edc98106e06 status: fail success: false 2024-04-15T00:37:36.649 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-15T00:37:36.736 INFO:teuthology.run:FAIL