2024-04-07T14:22:59.192 INFO:root:teuthology version: 0.0.1.dev262+ge691533 2024-04-07T14:22:59.193 DEBUG:teuthology.run:Teuthology command: teuthology --verbose --archive /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202 --description orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/classic task/test_host_drain} --name teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi --owner scheduled_teuthology@teuthology -- /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/orig.config.yaml 2024-04-07T14:22:59.222 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-07T14:22:59.310 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202 branch: main description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/classic task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7634202' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi no_nested_subset: false nuke-on-error: true os_type: centos os_version: 9.stream overrides: admin_socket: branch: main ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true 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: e5c885fe95ee982ff7b45214daa61b1a6d09d57d ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: main sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d owner: scheduled_teuthology@teuthology priority: 950 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: 7151 sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d sleep_before_teardown: 0 subset: 39/64 suite: orch suite_branch: main suite_path: /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d targets: smithi062.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKbIaKQIElrCVqd1PhKc6+Tqa4imt2DvHjMuJ7GXt0+DkOcbVikSCNVJWlQ3Q+BDtjmf3ghE6e1BYkwj2VnTHKg= smithi076.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBp4vrWfKnjUI/zuvCEOToEHlm4w9NcJSWmUmoY2KCWWs7nrRmVF1X7yVeFr+wBt9yh3mqdRDXfwVG1xhnWd9YA= smithi111.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEEI4MIKMKWb48LLeX6MkLeto/eowkE0UluZY1VSvqB1hom+Avkm99UsvP6kUl7Gieyi4gEicsesAGJvZnr69+s= 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: e691533f9cbb33d85b2187bba20d7102f098636d timestamp: 2024-04-01_20:08:13 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-04-07T14:22:59.310 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa; will attempt to use it 2024-04-07T14:22:59.311 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks 2024-04-07T14:22:59.311 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-04-07T14:22:59.312 INFO:teuthology.task.internal:Checking packages... 2024-04-07T14:22:59.332 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d' 2024-04-07T14:22:59.332 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-04-07T14:22:59.332 INFO:teuthology.packaging:ref: None 2024-04-07T14:22:59.333 INFO:teuthology.packaging:tag: None 2024-04-07T14:22:59.333 INFO:teuthology.packaging:branch: main 2024-04-07T14:22:59.333 INFO:teuthology.packaging:sha1: e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:22:59.333 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2024-04-07T14:22:59.611 INFO:teuthology.task.internal:Found packages for ceph version 19.0.0-2778.ga971fd5f 2024-04-07T14:22:59.613 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-04-07T14:22:59.619 INFO:teuthology.task.internal:no buildpackages task found 2024-04-07T14:22:59.619 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-04-07T14:22:59.625 INFO:teuthology.task.internal:Saving configuration 2024-04-07T14:22:59.637 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-04-07T14:22:59.643 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:22:59.669 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi062.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202', '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-07 14:17:29.741872', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKbIaKQIElrCVqd1PhKc6+Tqa4imt2DvHjMuJ7GXt0+DkOcbVikSCNVJWlQ3Q+BDtjmf3ghE6e1BYkwj2VnTHKg='} 2024-04-07T14:22:59.691 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi076.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202', '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-07 14:17:29.743374', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBp4vrWfKnjUI/zuvCEOToEHlm4w9NcJSWmUmoY2KCWWs7nrRmVF1X7yVeFr+wBt9yh3mqdRDXfwVG1xhnWd9YA='} 2024-04-07T14:22:59.713 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi111.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202', '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-07 14:17:29.744746', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEEI4MIKMKWb48LLeX6MkLeto/eowkE0UluZY1VSvqB1hom+Avkm99UsvP6kUl7Gieyi4gEicsesAGJvZnr69+s='} 2024-04-07T14:22:59.713 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-04-07T14:22:59.719 INFO:teuthology.task.internal:roles: ubuntu@smithi062.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-04-07T14:22:59.719 INFO:teuthology.task.internal:roles: ubuntu@smithi076.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-04-07T14:22:59.719 INFO:teuthology.task.internal:roles: ubuntu@smithi111.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-04-07T14:22:59.719 INFO:teuthology.run_tasks:Running task console_log... 2024-04-07T14:22:59.812 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fe23b53bf70>, signals=[15]) 2024-04-07T14:22:59.812 INFO:teuthology.run_tasks:Running task internal.connect... 2024-04-07T14:22:59.818 INFO:teuthology.task.internal:Opening connections... 2024-04-07T14:22:59.819 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi062.front.sepia.ceph.com 2024-04-07T14:22:59.820 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:22:59.924 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi076.front.sepia.ceph.com 2024-04-07T14:22:59.925 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:23:00.011 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi111.front.sepia.ceph.com 2024-04-07T14:23:00.011 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:23:00.099 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-04-07T14:23:00.106 DEBUG:teuthology.orchestra.run.smithi062:> uname -m 2024-04-07T14:23:00.124 INFO:teuthology.orchestra.run.smithi062.stdout:x86_64 2024-04-07T14:23:00.124 DEBUG:teuthology.orchestra.run.smithi062:> cat /etc/os-release 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:NAME="CentOS Stream" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION="9" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:ID="centos" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:ID_LIKE="rhel fedora" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:VERSION_ID="9" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:PLATFORM_ID="platform:el9" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:ANSI_COLOR="0;31" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:LOGO="fedora-logo-icon" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T14:23:00.181 INFO:teuthology.orchestra.run.smithi062.stdout:HOME_URL="https://centos.org/" 2024-04-07T14:23:00.182 INFO:teuthology.orchestra.run.smithi062.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T14:23:00.182 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T14:23:00.182 INFO:teuthology.orchestra.run.smithi062.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T14:23:00.182 INFO:teuthology.lock.ops:Updating smithi062.front.sepia.ceph.com on lock server 2024-04-07T14:23:00.205 DEBUG:teuthology.orchestra.run.smithi076:> uname -m 2024-04-07T14:23:00.223 INFO:teuthology.orchestra.run.smithi076.stdout:x86_64 2024-04-07T14:23:00.223 DEBUG:teuthology.orchestra.run.smithi076:> cat /etc/os-release 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:NAME="CentOS Stream" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:VERSION="9" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:ID="centos" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:ID_LIKE="rhel fedora" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:VERSION_ID="9" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:PLATFORM_ID="platform:el9" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:ANSI_COLOR="0;31" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:LOGO="fedora-logo-icon" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T14:23:00.279 INFO:teuthology.orchestra.run.smithi076.stdout:HOME_URL="https://centos.org/" 2024-04-07T14:23:00.280 INFO:teuthology.orchestra.run.smithi076.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T14:23:00.280 INFO:teuthology.orchestra.run.smithi076.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T14:23:00.280 INFO:teuthology.orchestra.run.smithi076.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T14:23:00.280 INFO:teuthology.lock.ops:Updating smithi076.front.sepia.ceph.com on lock server 2024-04-07T14:23:00.297 DEBUG:teuthology.orchestra.run.smithi111:> uname -m 2024-04-07T14:23:00.314 INFO:teuthology.orchestra.run.smithi111.stdout:x86_64 2024-04-07T14:23:00.314 DEBUG:teuthology.orchestra.run.smithi111:> cat /etc/os-release 2024-04-07T14:23:00.371 INFO:teuthology.orchestra.run.smithi111.stdout:NAME="CentOS Stream" 2024-04-07T14:23:00.371 INFO:teuthology.orchestra.run.smithi111.stdout:VERSION="9" 2024-04-07T14:23:00.371 INFO:teuthology.orchestra.run.smithi111.stdout:ID="centos" 2024-04-07T14:23:00.371 INFO:teuthology.orchestra.run.smithi111.stdout:ID_LIKE="rhel fedora" 2024-04-07T14:23:00.371 INFO:teuthology.orchestra.run.smithi111.stdout:VERSION_ID="9" 2024-04-07T14:23:00.371 INFO:teuthology.orchestra.run.smithi111.stdout:PLATFORM_ID="platform:el9" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:PRETTY_NAME="CentOS Stream 9" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:ANSI_COLOR="0;31" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:LOGO="fedora-logo-icon" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:HOME_URL="https://centos.org/" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-04-07T14:23:00.372 INFO:teuthology.orchestra.run.smithi111.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-04-07T14:23:00.372 INFO:teuthology.lock.ops:Updating smithi111.front.sepia.ceph.com on lock server 2024-04-07T14:23:00.396 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-04-07T14:23:00.405 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-04-07T14:23:00.470 INFO:teuthology.task.internal:Checking for old test directory... 2024-04-07T14:23:00.470 DEBUG:teuthology.orchestra.run.smithi062:> test '!' -e /home/ubuntu/cephtest 2024-04-07T14:23:00.472 DEBUG:teuthology.orchestra.run.smithi076:> test '!' -e /home/ubuntu/cephtest 2024-04-07T14:23:00.475 DEBUG:teuthology.orchestra.run.smithi111:> test '!' -e /home/ubuntu/cephtest 2024-04-07T14:23:00.491 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-04-07T14:23:00.497 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-04-07T14:23:00.497 DEBUG:teuthology.orchestra.run.smithi062:> test -z $(ls -A /var/lib/ceph) 2024-04-07T14:23:00.530 DEBUG:teuthology.orchestra.run.smithi076:> test -z $(ls -A /var/lib/ceph) 2024-04-07T14:23:00.533 DEBUG:teuthology.orchestra.run.smithi111:> test -z $(ls -A /var/lib/ceph) 2024-04-07T14:23:00.644 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-04-07T14:23:00.709 INFO:teuthology.run_tasks:Running task kernel... 2024-04-07T14:23:00.722 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-04-07T14:23:00.722 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}, 'host.c': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2024-04-07T14:23:00.722 DEBUG:teuthology.orchestra.run.smithi062:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T14:23:00.723 DEBUG:teuthology.orchestra.run.smithi076:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T14:23:00.723 DEBUG:teuthology.orchestra.run.smithi111:> test -f /run/.containerenv -o -f /.dockerenv 2024-04-07T14:23:00.740 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:23:00.740 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:23:00.740 DEBUG:teuthology.orchestra.run.smithi076:> uname -r 2024-04-07T14:23:00.741 DEBUG:teuthology.orchestra.run.smithi111:> uname -r 2024-04-07T14:23:00.741 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:23:00.742 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2024-04-07T14:23:00.798 INFO:teuthology.orchestra.run.smithi076.stdout:5.14.0-361.el9.x86_64 2024-04-07T14:23:00.799 INFO:teuthology.orchestra.run.smithi111.stdout:5.14.0-361.el9.x86_64 2024-04-07T14:23:00.799 INFO:teuthology.task.kernel:Running kernel on smithi076: 5.14.0-361.el9.x86_64 2024-04-07T14:23:00.799 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum install -y kernel 2024-04-07T14:23:00.799 INFO:teuthology.task.kernel:Running kernel on smithi111: 5.14.0-361.el9.x86_64 2024-04-07T14:23:00.799 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum install -y kernel 2024-04-07T14:23:00.800 INFO:teuthology.orchestra.run.smithi062.stdout:5.14.0-361.el9.x86_64 2024-04-07T14:23:00.801 INFO:teuthology.task.kernel:Running kernel on smithi062: 5.14.0-361.el9.x86_64 2024-04-07T14:23:00.801 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum install -y kernel 2024-04-07T14:23:02.943 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS-9 - AppStream 16 MB/s | 8.1 MB 00:00 2024-04-07T14:23:03.056 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS-9 - AppStream 14 MB/s | 8.1 MB 00:00 2024-04-07T14:23:03.071 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS-9 - AppStream 14 MB/s | 8.1 MB 00:00 2024-04-07T14:23:04.577 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS-9 - BaseOS 7.9 MB/s | 2.5 MB 00:00 2024-04-07T14:23:04.765 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS-9 - BaseOS 6.5 MB/s | 2.5 MB 00:00 2024-04-07T14:23:04.804 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS-9 - BaseOS 7.0 MB/s | 2.5 MB 00:00 2024-04-07T14:23:05.764 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.0 MB 00:00 2024-04-07T14:23:06.028 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.0 MB 00:00 2024-04-07T14:23:06.884 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - BaseOS 4.3 MB/s | 8.0 MB 00:01 2024-04-07T14:23:09.498 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - AppStream 7.1 MB/s | 19 MB 00:02 2024-04-07T14:23:11.619 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - AppStream 5.2 MB/s | 19 MB 00:03 2024-04-07T14:23:16.705 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - CRB 4.0 MB/s | 6.1 MB 00:01 2024-04-07T14:23:17.143 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - CRB 1.5 MB/s | 6.1 MB 00:04 2024-04-07T14:23:18.320 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - Extras packages 34 kB/s | 16 kB 00:00 2024-04-07T14:23:18.574 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - Extras packages 58 kB/s | 16 kB 00:00 2024-04-07T14:23:19.600 INFO:teuthology.orchestra.run.smithi111.stdout:Extra Packages for Enterprise Linux 23 MB/s | 21 MB 00:00 2024-04-07T14:23:20.680 INFO:teuthology.orchestra.run.smithi076.stdout:Extra Packages for Enterprise Linux 9.3 MB/s | 21 MB 00:02 2024-04-07T14:23:24.634 INFO:teuthology.orchestra.run.smithi111.stdout:lab-extras 15 kB/s | 1.7 kB 00:00 2024-04-07T14:23:25.639 INFO:teuthology.orchestra.run.smithi076.stdout:lab-extras 14 kB/s | 1.7 kB 00:00 2024-04-07T14:23:26.736 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:23:26.736 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:23:26.736 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:23:26.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.744 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:23:26.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:23:26.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.149 INFO:teuthology.orchestra.run.smithi111.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T14:23:27.149 INFO:teuthology.orchestra.run.smithi111.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T14:23:27.245 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:23:27.256 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:23:27.256 INFO:teuthology.orchestra.run.smithi111.stdout: Package Architecture Version Repository Size 2024-04-07T14:23:27.256 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout:Install 4 Packages 2024-04-07T14:23:27.257 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:23:27.258 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 76 M 2024-04-07T14:23:27.258 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 123 M 2024-04-07T14:23:27.258 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:23:27.485 INFO:teuthology.orchestra.run.smithi111.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 592 kB/s | 66 kB 00:00 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:23:27.762 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.763 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.764 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.765 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.766 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:23:27.767 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.768 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.769 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:23:27.810 INFO:teuthology.orchestra.run.smithi111.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 34 MB/s | 15 MB 00:00 2024-04-07T14:23:28.171 INFO:teuthology.orchestra.run.smithi076.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T14:23:28.171 INFO:teuthology.orchestra.run.smithi076.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T14:23:28.227 INFO:teuthology.orchestra.run.smithi111.stdout:(3/4): kernel-modules-core-5.14.0-432.el9.x86_6 37 MB/s | 27 MB 00:00 2024-04-07T14:23:28.271 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:23:28.276 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:23:28.276 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-04-07T14:23:28.276 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:23:28.276 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:23:28.276 INFO:teuthology.orchestra.run.smithi076.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout:Install 4 Packages 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:23:28.277 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 76 M 2024-04-07T14:23:28.278 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 123 M 2024-04-07T14:23:28.278 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:23:28.544 INFO:teuthology.orchestra.run.smithi111.stdout:(4/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 29 MB/s | 33 MB 00:01 2024-04-07T14:23:28.544 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:23:28.544 INFO:teuthology.orchestra.run.smithi111.stdout:Total 59 MB/s | 76 MB 00:01 2024-04-07T14:23:28.673 INFO:teuthology.orchestra.run.smithi076.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 553 kB/s | 66 kB 00:00 2024-04-07T14:23:29.091 INFO:teuthology.orchestra.run.smithi076.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 28 MB/s | 15 MB 00:00 2024-04-07T14:23:29.207 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:23:29.474 INFO:teuthology.orchestra.run.smithi076.stdout:(3/4): kernel-modules-core-5.14.0-432.el9.x86_6 34 MB/s | 27 MB 00:00 2024-04-07T14:23:29.556 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:23:29.556 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:23:29.808 INFO:teuthology.orchestra.run.smithi076.stdout:(4/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 27 MB/s | 33 MB 00:01 2024-04-07T14:23:29.808 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:23:29.808 INFO:teuthology.orchestra.run.smithi076.stdout:Total 50 MB/s | 76 MB 00:01 2024-04-07T14:23:30.472 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:23:30.578 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:23:30.578 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:23:30.627 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - AppStream 824 kB/s | 19 MB 00:23 2024-04-07T14:23:30.866 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:23:30.866 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:23:31.891 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:23:31.892 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:23:33.035 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:23:33.646 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:23:33.728 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:23:34.382 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:23:34.811 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - CRB 14 MB/s | 6.1 MB 00:00 2024-04-07T14:23:35.013 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:23:35.097 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:23:36.446 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:23:36.680 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:23:37.395 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - Extras packages 12 kB/s | 16 kB 00:01 2024-04-07T14:23:37.833 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:23:37.987 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:23:39.312 INFO:teuthology.orchestra.run.smithi062.stdout:Extra Packages for Enterprise Linux 12 MB/s | 21 MB 00:01 2024-04-07T14:23:41.366 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:23:41.489 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:23:42.722 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:23:42.763 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:23:44.504 INFO:teuthology.orchestra.run.smithi062.stdout:lab-extras 39 kB/s | 1.7 kB 00:00 2024-04-07T14:23:46.216 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:23:46.726 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:23:46.727 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:23:46.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:23:46.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:23:46.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:23:46.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:23:46.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:23:47.237 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-04-07T14:23:47.237 INFO:teuthology.orchestra.run.smithi062.stdout:Package kernel-5.14.0-361.el9.x86_64 is already installed. 2024-04-07T14:23:47.333 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:23:47.338 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout: kernel x86_64 5.14.0-432.el9 baseos 66 k 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-core x86_64 5.14.0-432.el9 baseos 15 M 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules x86_64 5.14.0-432.el9 baseos 33 M 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-core x86_64 5.14.0-432.el9 baseos 27 M 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:23:47.339 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:23:47.340 INFO:teuthology.orchestra.run.smithi062.stdout:Install 4 Packages 2024-04-07T14:23:47.340 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:23:47.340 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 76 M 2024-04-07T14:23:47.340 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 123 M 2024-04-07T14:23:47.340 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:23:47.501 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:23:47.605 INFO:teuthology.orchestra.run.smithi062.stdout:(1/4): kernel-5.14.0-432.el9.x86_64.rpm 550 kB/s | 66 kB 00:00 2024-04-07T14:23:47.973 INFO:teuthology.orchestra.run.smithi062.stdout:(2/4): kernel-core-5.14.0-432.el9.x86_64.rpm 31 MB/s | 15 MB 00:00 2024-04-07T14:23:48.323 INFO:teuthology.orchestra.run.smithi062.stdout:(3/4): kernel-modules-core-5.14.0-432.el9.x86_6 38 MB/s | 27 MB 00:00 2024-04-07T14:23:48.624 INFO:teuthology.orchestra.run.smithi062.stdout:(4/4): kernel-modules-5.14.0-432.el9.x86_64.rpm 29 MB/s | 33 MB 00:01 2024-04-07T14:23:48.624 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:23:48.624 INFO:teuthology.orchestra.run.smithi062.stdout:Total 59 MB/s | 76 MB 00:01 2024-04-07T14:23:49.323 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:23:49.798 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:23:49.798 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:23:50.852 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:23:50.853 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:23:53.486 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:23:54.124 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-modules-core-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:23:54.206 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:23:57.100 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:23:57.233 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:24:02.332 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:24:02.375 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:07.502 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:15.791 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:15.792 INFO:teuthology.orchestra.run.smithi111.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T14:24:15.792 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:24:15.835 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:16.182 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:16.182 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:24:16.182 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:24:16.182 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:24:16.599 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:24:16.600 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:24:16.943 DEBUG:teuthology.orchestra.run.smithi111:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:24:17.047 INFO:teuthology.orchestra.run.smithi111.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:17.047 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:24:17.047 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-432.el9.x86_64 2024-04-07T14:24:17.047 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T14:24:17.047 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T14:24:17.047 INFO:teuthology.task.kernel:Installing distro kernel on host.c... 2024-04-07T14:24:17.047 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi111.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T14:24:17.048 DEBUG:teuthology.orchestra.run.smithi111:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:24:17.127 INFO:teuthology.orchestra.run.smithi111.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:17.127 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:24:17.127 DEBUG:teuthology.orchestra.run.smithi111:> sudo rpm -qi grub2-tools 2024-04-07T14:24:17.160 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:17.160 INFO:teuthology.orchestra.run.smithi076.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T14:24:17.160 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Name : grub2-tools 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Epoch : 1 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Version : 2.06 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Release : 68.el9 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Architecture: x86_64 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Group : Unspecified 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Size : 8264254 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:License : GPLv3+ 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T14:24:17.161 INFO:teuthology.orchestra.run.smithi111.stdout:Packager : builder@centos.org 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:Vendor : CentOS 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:Summary : Support tools for GRUB. 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:Description : 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:hardware devices. 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:24:17.162 INFO:teuthology.orchestra.run.smithi111.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T14:24:17.163 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T14:24:17.163 INFO:teuthology.task.kernel:Updating grub on smithi111 to boot 5.14.0-432.el9.x86_64 2024-04-07T14:24:17.163 DEBUG:teuthology.orchestra.run.smithi111:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T14:24:17.204 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:17.559 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:17.559 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:24:17.559 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:24:17.560 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:24:17.786 INFO:teuthology.orchestra.run.smithi111.stderr:Generating grub configuration file ... 2024-04-07T14:24:18.026 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:24:18.027 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:24:18.387 DEBUG:teuthology.orchestra.run.smithi076:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:24:18.503 INFO:teuthology.orchestra.run.smithi076.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:18.503 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:24:18.503 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-432.el9.x86_64 2024-04-07T14:24:18.503 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T14:24:18.504 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T14:24:18.504 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-04-07T14:24:18.504 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi076.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T14:24:18.504 DEBUG:teuthology.orchestra.run.smithi076:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:24:18.583 INFO:teuthology.orchestra.run.smithi076.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:18.584 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:24:18.584 DEBUG:teuthology.orchestra.run.smithi076:> sudo rpm -qi grub2-tools 2024-04-07T14:24:18.626 INFO:teuthology.orchestra.run.smithi076.stdout:Name : grub2-tools 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Epoch : 1 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Version : 2.06 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Release : 68.el9 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Architecture: x86_64 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Group : Unspecified 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Size : 8264254 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:License : GPLv3+ 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T14:24:18.627 INFO:teuthology.orchestra.run.smithi076.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:Packager : builder@centos.org 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:Vendor : CentOS 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:Summary : Support tools for GRUB. 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:Description : 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:hardware devices. 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:24:18.628 INFO:teuthology.orchestra.run.smithi076.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T14:24:18.629 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T14:24:18.629 INFO:teuthology.task.kernel:Updating grub on smithi076 to boot 5.14.0-432.el9.x86_64 2024-04-07T14:24:18.629 DEBUG:teuthology.orchestra.run.smithi076:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T14:24:19.117 INFO:teuthology.orchestra.run.smithi111.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T14:24:19.165 INFO:teuthology.orchestra.run.smithi111.stderr:done 2024-04-07T14:24:19.167 DEBUG:teuthology.orchestra.run.smithi111:> mktemp 2024-04-07T14:24:19.182 INFO:teuthology.orchestra.run.smithi111.stdout:/tmp/tmp.RKONnE98lZ 2024-04-07T14:24:19.182 DEBUG:teuthology.orchestra.run.smithi111:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.RKONnE98lZ 2024-04-07T14:24:19.250 DEBUG:teuthology.orchestra.run.smithi111:> sudo chmod 0666 /tmp/tmp.RKONnE98lZ 2024-04-07T14:24:19.262 INFO:teuthology.orchestra.run.smithi076.stderr:Generating grub configuration file ... 2024-04-07T14:24:19.386 DEBUG:teuthology.orchestra.remote:smithi111:/tmp/tmp.RKONnE98lZ is 6KB 2024-04-07T14:24:19.435 DEBUG:teuthology.orchestra.run.smithi111:> rm -fr /tmp/tmp.RKONnE98lZ 2024-04-07T14:24:19.449 DEBUG:teuthology.orchestra.run.smithi111:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T14:24:19.522 INFO:teuthology.orchestra.run.smithi111.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T14:24:19.522 INFO:teuthology.orchestra.run.smithi111.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T14:24:19.522 INFO:teuthology.orchestra.run.smithi111.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T14:24:19.522 INFO:teuthology.orchestra.run.smithi111.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T14:24:19.523 DEBUG:teuthology.orchestra.run.smithi111:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T14:24:19.672 DEBUG:teuthology.orchestra.run.smithi111:> sudo shutdown -r now 2024-04-07T14:24:20.613 INFO:teuthology.orchestra.run.smithi076.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T14:24:20.631 INFO:teuthology.orchestra.run.smithi076.stderr:done 2024-04-07T14:24:20.633 DEBUG:teuthology.orchestra.run.smithi076:> mktemp 2024-04-07T14:24:20.648 INFO:teuthology.orchestra.run.smithi076.stdout:/tmp/tmp.yZXsxFC788 2024-04-07T14:24:20.648 DEBUG:teuthology.orchestra.run.smithi076:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.yZXsxFC788 2024-04-07T14:24:20.718 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod 0666 /tmp/tmp.yZXsxFC788 2024-04-07T14:24:20.855 DEBUG:teuthology.orchestra.remote:smithi076:/tmp/tmp.yZXsxFC788 is 6KB 2024-04-07T14:24:20.904 DEBUG:teuthology.orchestra.run.smithi076:> rm -fr /tmp/tmp.yZXsxFC788 2024-04-07T14:24:20.918 DEBUG:teuthology.orchestra.run.smithi076:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T14:24:20.982 INFO:teuthology.orchestra.run.smithi076.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T14:24:20.982 INFO:teuthology.orchestra.run.smithi076.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T14:24:20.982 INFO:teuthology.orchestra.run.smithi076.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T14:24:20.982 INFO:teuthology.orchestra.run.smithi076.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T14:24:20.983 DEBUG:teuthology.orchestra.run.smithi076:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T14:24:21.118 DEBUG:teuthology.orchestra.run.smithi076:> sudo shutdown -r now 2024-04-07T14:24:38.503 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:38.503 INFO:teuthology.orchestra.run.smithi062.stdout:dracut: Disabling early microcode, because kernel does not support it. CONFIG_MICROCODE_[AMD|INTEL]!=y 2024-04-07T14:24:38.503 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:24:38.549 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-modules-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:38.878 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: kernel-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:38.878 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-5.14.0-432.el9.x86_64 1/4 2024-04-07T14:24:38.878 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-core-5.14.0-432.el9.x86_64 2/4 2024-04-07T14:24:38.879 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-modules-5.14.0-432.el9.x86_64 3/4 2024-04-07T14:24:39.318 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : kernel-modules-core-5.14.0-432.el9.x86_64 4/4 2024-04-07T14:24:39.318 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-core-5.14.0-432.el9.x86_64 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-5.14.0-432.el9.x86_64 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout: kernel-modules-core-5.14.0-432.el9.x86_64 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:24:39.319 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:24:39.647 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:24:39.758 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:39.758 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:24:39.759 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.14.0-361.el9.x86_64 Expected: 5.14.0-432.el9.x86_64 2024-04-07T14:24:39.759 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-04-07T14:24:39.759 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-04-07T14:24:39.759 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-04-07T14:24:39.759 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi062.front.sepia.ceph.com, path=None, version=distro) 2024-04-07T14:24:39.759 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q kernel | sort -rV | head -n 1 2024-04-07T14:24:39.841 INFO:teuthology.orchestra.run.smithi062.stdout:kernel-5.14.0-432.el9.x86_64 2024-04-07T14:24:39.842 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-432.el9.x86_64 2024-04-07T14:24:39.842 DEBUG:teuthology.orchestra.run.smithi062:> sudo rpm -qi grub2-tools 2024-04-07T14:24:39.885 INFO:teuthology.orchestra.run.smithi062.stdout:Name : grub2-tools 2024-04-07T14:24:39.885 INFO:teuthology.orchestra.run.smithi062.stdout:Epoch : 1 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Version : 2.06 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Release : 68.el9 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Architecture: x86_64 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Install Date: Fri 01 Sep 2023 09:14:30 PM UTC 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Group : Unspecified 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Size : 8264254 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:License : GPLv3+ 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Signature : RSA/SHA256, Mon 07 Aug 2023 01:57:16 PM UTC, Key ID 05b555b38483c65d 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Source RPM : grub2-2.06-68.el9.src.rpm 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Build Date : Wed 02 Aug 2023 03:15:48 PM UTC 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Build Host : x86-05.stream.rdu2.redhat.com 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Packager : builder@centos.org 2024-04-07T14:24:39.886 INFO:teuthology.orchestra.run.smithi062.stdout:Vendor : CentOS 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:URL : http://www.gnu.org/software/grub/ 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:Summary : Support tools for GRUB. 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:Description : 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:customizable bootloader with modular architecture. It supports a rich 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:variety of kernel formats, file systems, computer architectures and 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:hardware devices. 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:24:39.887 INFO:teuthology.orchestra.run.smithi062.stdout:This subpackage provides tools for support of all platforms. 2024-04-07T14:24:39.888 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2024-04-07T14:24:39.888 INFO:teuthology.task.kernel:Updating grub on smithi062 to boot 5.14.0-432.el9.x86_64 2024-04-07T14:24:39.888 DEBUG:teuthology.orchestra.run.smithi062:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2024-04-07T14:24:40.415 INFO:teuthology.orchestra.run.smithi062.stderr:Generating grub configuration file ... 2024-04-07T14:24:41.773 INFO:teuthology.orchestra.run.smithi062.stderr:Adding boot menu entry for UEFI Firmware Settings ... 2024-04-07T14:24:41.802 INFO:teuthology.orchestra.run.smithi062.stderr:done 2024-04-07T14:24:41.805 DEBUG:teuthology.orchestra.run.smithi062:> mktemp 2024-04-07T14:24:41.820 INFO:teuthology.orchestra.run.smithi062.stdout:/tmp/tmp.L9byxYtApy 2024-04-07T14:24:41.820 DEBUG:teuthology.orchestra.run.smithi062:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.L9byxYtApy 2024-04-07T14:24:41.893 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 0666 /tmp/tmp.L9byxYtApy 2024-04-07T14:24:42.039 DEBUG:teuthology.orchestra.remote:smithi062:/tmp/tmp.L9byxYtApy is 6KB 2024-04-07T14:24:42.087 DEBUG:teuthology.orchestra.run.smithi062:> rm -fr /tmp/tmp.L9byxYtApy 2024-04-07T14:24:42.101 DEBUG:teuthology.orchestra.run.smithi062:> sudo /bin/ls /boot/loader/entries || true 2024-04-07T14:24:42.169 INFO:teuthology.orchestra.run.smithi062.stdout:15949e3c88704300882482eddfd7baae-0-rescue.conf 2024-04-07T14:24:42.169 INFO:teuthology.orchestra.run.smithi062.stdout:15949e3c88704300882482eddfd7baae-5.14.0-239.el9.x86_64.conf 2024-04-07T14:24:42.169 INFO:teuthology.orchestra.run.smithi062.stdout:15949e3c88704300882482eddfd7baae-5.14.0-361.el9.x86_64.conf 2024-04-07T14:24:42.169 INFO:teuthology.orchestra.run.smithi062.stdout:15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64.conf 2024-04-07T14:24:42.171 DEBUG:teuthology.orchestra.run.smithi062:> sudo grub2-set-default 15949e3c88704300882482eddfd7baae-5.14.0-432.el9.x86_64 2024-04-07T14:24:42.322 DEBUG:teuthology.orchestra.run.smithi062:> sudo shutdown -r now 2024-04-07T14:24:49.679 INFO:teuthology.task.kernel:Checking client host.c for new kernel version... 2024-04-07T14:24:49.679 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:24:49.680 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:24:51.123 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-04-07T14:24:51.123 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:24:51.124 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:08.127 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.111 2024-04-07T14:25:09.665 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.76 2024-04-07T14:25:12.328 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-04-07T14:25:12.329 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:25:12.329 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:17.132 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:25:17.133 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:18.667 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:25:18.668 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:20.190 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.111 2024-04-07T14:25:21.726 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.76 2024-04-07T14:25:30.654 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.62 2024-04-07T14:25:32.192 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:25:32.193 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:33.729 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:25:33.730 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:35.262 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.111 2024-04-07T14:25:36.798 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.76 2024-04-07T14:25:39.659 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:25:39.659 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:42.722 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.62 2024-04-07T14:25:50.270 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:25:50.271 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:51.801 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:25:51.802 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:25:54.726 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:25:54.727 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:26:08.799 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.111 2024-04-07T14:26:13.150 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.62 2024-04-07T14:26:23.665 DEBUG:teuthology.orchestra.run.smithi076:> true 2024-04-07T14:26:24.028 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:26:24.028 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.14.0-432.el9.x86_64"... 2024-04-07T14:26:24.029 DEBUG:teuthology.orchestra.run.smithi076:> uname -r 2024-04-07T14:26:24.043 INFO:teuthology.orchestra.run.smithi076.stdout:5.14.0-432.el9.x86_64 2024-04-07T14:26:24.044 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-432.el9.x86_64 vs 5.14.0-432.el9.x86_64 2024-04-07T14:26:24.044 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T14:26:24.044 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T14:26:25.044 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-04-07T14:26:25.045 DEBUG:teuthology.orchestra.run.smithi076:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T14:26:25.105 INFO:teuthology.orchestra.run.smithi076.stdout:ttyS1 2024-04-07T14:26:25.142 DEBUG:teuthology.parallel:result is None 2024-04-07T14:26:26.799 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:26:26.800 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:26:27.070 DEBUG:teuthology.orchestra.run.smithi111:> true 2024-04-07T14:26:27.439 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:26:27.440 INFO:teuthology.task.kernel:Checking kernel version of host.c, want "5.14.0-432.el9.x86_64"... 2024-04-07T14:26:27.440 DEBUG:teuthology.orchestra.run.smithi111:> uname -r 2024-04-07T14:26:27.454 INFO:teuthology.orchestra.run.smithi111.stdout:5.14.0-432.el9.x86_64 2024-04-07T14:26:27.454 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-432.el9.x86_64 vs 5.14.0-432.el9.x86_64 2024-04-07T14:26:27.454 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T14:26:27.454 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T14:26:28.151 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:26:28.152 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:26:28.455 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-04-07T14:26:28.456 DEBUG:teuthology.orchestra.run.smithi111:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T14:26:28.523 INFO:teuthology.orchestra.run.smithi111.stdout:ttyS1 2024-04-07T14:26:28.528 DEBUG:teuthology.orchestra.run.smithi062:> true 2024-04-07T14:26:28.553 DEBUG:teuthology.parallel:result is None 2024-04-07T14:26:28.946 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:26:28.946 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.14.0-432.el9.x86_64"... 2024-04-07T14:26:28.946 DEBUG:teuthology.orchestra.run.smithi062:> uname -r 2024-04-07T14:26:28.960 INFO:teuthology.orchestra.run.smithi062.stdout:5.14.0-432.el9.x86_64 2024-04-07T14:26:28.960 DEBUG:teuthology.task.kernel:current kernel version is 5.14.0-432.el9.x86_64 vs 5.14.0-432.el9.x86_64 2024-04-07T14:26:28.960 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-04-07T14:26:28.960 DEBUG:teuthology.task.kernel:Distro of this test job: centos 2024-04-07T14:26:29.961 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-04-07T14:26:29.961 DEBUG:teuthology.orchestra.run.smithi062:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-04-07T14:26:30.034 INFO:teuthology.orchestra.run.smithi062.stdout:ttyS1 2024-04-07T14:26:30.085 DEBUG:teuthology.parallel:result is None 2024-04-07T14:26:30.086 INFO:teuthology.run_tasks:Running task internal.base... 2024-04-07T14:26:30.093 INFO:teuthology.task.internal:Creating test directory... 2024-04-07T14:26:30.093 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T14:26:30.096 DEBUG:teuthology.orchestra.run.smithi076:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T14:26:30.098 DEBUG:teuthology.orchestra.run.smithi111:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-04-07T14:26:30.116 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-04-07T14:26:30.123 INFO:teuthology.run_tasks:Running task internal.archive... 2024-04-07T14:26:30.132 INFO:teuthology.task.internal:Creating archive directory... 2024-04-07T14:26:30.132 DEBUG:teuthology.orchestra.run.smithi062:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T14:26:30.149 DEBUG:teuthology.orchestra.run.smithi076:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T14:26:30.155 DEBUG:teuthology.orchestra.run.smithi111:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-04-07T14:26:30.294 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-04-07T14:26:30.301 INFO:teuthology.task.internal:Enabling coredump saving... 2024-04-07T14:26:30.301 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:26:30.306 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:26:30.308 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:26:30.333 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:26:30.345 INFO:teuthology.orchestra.run.smithi111.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:26:30.346 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:26:30.349 INFO:teuthology.orchestra.run.smithi076.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:26:30.359 INFO:teuthology.orchestra.run.smithi111.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:26:30.364 INFO:teuthology.orchestra.run.smithi076.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-04-07T14:26:30.366 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-04-07T14:26:30.373 INFO:teuthology.task.internal:Configuring sudo... 2024-04-07T14:26:30.373 DEBUG:teuthology.orchestra.run.smithi062:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T14:26:30.389 DEBUG:teuthology.orchestra.run.smithi076:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T14:26:30.409 DEBUG:teuthology.orchestra.run.smithi111:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-04-07T14:26:30.438 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-04-07T14:26:30.447 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-04-07T14:26:30.447 DEBUG:teuthology.orchestra.run.smithi062:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T14:26:30.456 DEBUG:teuthology.orchestra.run.smithi076:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T14:26:30.479 DEBUG:teuthology.orchestra.run.smithi111:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-04-07T14:26:30.495 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:26:30.553 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:26:30.606 DEBUG:teuthology.orchestra.run.smithi062:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:26:30.687 DEBUG:teuthology.orchestra.run.smithi062:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:26:30.729 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:26:30.729 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T14:26:30.796 DEBUG:teuthology.orchestra.run.smithi076:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:26:30.839 DEBUG:teuthology.orchestra.run.smithi076:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:26:30.894 DEBUG:teuthology.orchestra.run.smithi076:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:26:30.978 DEBUG:teuthology.orchestra.run.smithi076:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:26:31.025 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-04-07T14:26:31.025 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T14:26:31.095 DEBUG:teuthology.orchestra.run.smithi111:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:26:31.140 DEBUG:teuthology.orchestra.run.smithi111:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-04-07T14:26:31.204 DEBUG:teuthology.orchestra.run.smithi111:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:26:31.248 DEBUG:teuthology.orchestra.run.smithi111:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-04-07T14:26:31.292 DEBUG:teuthology.orchestra.run.smithi111:> set -ex 2024-04-07T14:26:31.292 DEBUG:teuthology.orchestra.run.smithi111:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-04-07T14:26:31.362 DEBUG:teuthology.orchestra.run.smithi062:> sudo service rsyslog restart 2024-04-07T14:26:31.364 DEBUG:teuthology.orchestra.run.smithi076:> sudo service rsyslog restart 2024-04-07T14:26:31.366 DEBUG:teuthology.orchestra.run.smithi111:> sudo service rsyslog restart 2024-04-07T14:26:31.424 INFO:teuthology.orchestra.run.smithi076.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:26:31.435 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:26:31.451 INFO:teuthology.orchestra.run.smithi111.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:26:31.926 INFO:teuthology.run_tasks:Running task internal.timer... 2024-04-07T14:26:31.935 INFO:teuthology.task.internal:Starting timer... 2024-04-07T14:26:31.935 INFO:teuthology.run_tasks:Running task pcp... 2024-04-07T14:26:31.944 INFO:teuthology.run_tasks:Running task selinux... 2024-04-07T14:26:31.953 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-04-07T14:26:31.953 DEBUG:teuthology.orchestra.run.smithi062:> sudo service auditd rotate 2024-04-07T14:26:32.046 INFO:teuthology.orchestra.run.smithi062.stdout:Rotating logs: 2024-04-07T14:26:32.051 DEBUG:teuthology.orchestra.run.smithi076:> sudo service auditd rotate 2024-04-07T14:26:32.103 INFO:teuthology.orchestra.run.smithi076.stdout:Rotating logs: 2024-04-07T14:26:32.105 DEBUG:teuthology.orchestra.run.smithi111:> sudo service auditd rotate 2024-04-07T14:26:32.158 INFO:teuthology.orchestra.run.smithi111.stdout:Rotating logs: 2024-04-07T14:26:32.158 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-04-07T14:26:32.158 DEBUG:teuthology.orchestra.run.smithi062:> /usr/sbin/getenforce 2024-04-07T14:26:32.188 INFO:teuthology.orchestra.run.smithi062.stdout:Permissive 2024-04-07T14:26:32.188 DEBUG:teuthology.orchestra.run.smithi076:> /usr/sbin/getenforce 2024-04-07T14:26:32.224 INFO:teuthology.orchestra.run.smithi076.stdout:Permissive 2024-04-07T14:26:32.224 DEBUG:teuthology.orchestra.run.smithi111:> /usr/sbin/getenforce 2024-04-07T14:26:32.244 INFO:teuthology.orchestra.run.smithi111.stdout:Permissive 2024-04-07T14:26:32.244 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi062.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi076.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi111.front.sepia.ceph.com': 'permissive'} 2024-04-07T14:26:32.244 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:26:32.272 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:26:32.273 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:26:32.301 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:26:32.301 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:26:32.330 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:26:32.330 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-04-07T14:26:32.331 DEBUG:teuthology.orchestra.run.smithi062:> sudo /usr/sbin/setenforce permissive 2024-04-07T14:26:32.364 DEBUG:teuthology.orchestra.run.smithi076:> sudo /usr/sbin/setenforce permissive 2024-04-07T14:26:32.400 DEBUG:teuthology.orchestra.run.smithi111:> sudo /usr/sbin/setenforce permissive 2024-04-07T14:26:32.429 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-04-07T14:26:32.440 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-04-07T14:26:32.456 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-07T14:26:32.457 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi062.front.sepia.ceph.com,smithi076.front.sepia.ceph.com,smithi111.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-04-07T14:31:02.037 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi062.front.sepia.ceph.com'), Remote(name='ubuntu@smithi076.front.sepia.ceph.com'), Remote(name='ubuntu@smithi111.front.sepia.ceph.com')] 2024-04-07T14:31:02.039 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:31:02.040 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi062.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:31:02.130 DEBUG:teuthology.orchestra.run.smithi062:> true 2024-04-07T14:31:02.208 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi062.front.sepia.ceph.com' 2024-04-07T14:31:02.209 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:31:02.209 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi076.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:31:02.298 DEBUG:teuthology.orchestra.run.smithi076:> true 2024-04-07T14:31:02.385 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi076.front.sepia.ceph.com' 2024-04-07T14:31:02.386 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:31:02.386 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi111.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-04-07T14:31:02.476 DEBUG:teuthology.orchestra.run.smithi111:> true 2024-04-07T14:31:02.553 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi111.front.sepia.ceph.com' 2024-04-07T14:31:02.554 INFO:teuthology.run_tasks:Running task clock... 2024-04-07T14:31:02.565 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-04-07T14:31:02.565 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T14:31:02.565 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:31:02.568 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T14:31:02.568 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:31:02.570 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-04-07T14:31:02.570 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:31:02.596 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T14:31:02.602 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T14:31:02.613 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T14:31:02.617 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T14:31:02.626 INFO:teuthology.orchestra.run.smithi111.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-04-07T14:31:02.642 INFO:teuthology.orchestra.run.smithi062.stderr:sudo: ntpd: command not found 2024-04-07T14:31:02.642 INFO:teuthology.orchestra.run.smithi111.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-04-07T14:31:02.647 INFO:teuthology.orchestra.run.smithi076.stderr:sudo: ntpd: command not found 2024-04-07T14:31:02.655 INFO:teuthology.orchestra.run.smithi062.stdout:506 Cannot talk to daemon 2024-04-07T14:31:02.661 INFO:teuthology.orchestra.run.smithi076.stdout:506 Cannot talk to daemon 2024-04-07T14:31:02.671 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T14:31:02.672 INFO:teuthology.orchestra.run.smithi111.stderr:sudo: ntpd: command not found 2024-04-07T14:31:02.678 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T14:31:02.686 INFO:teuthology.orchestra.run.smithi111.stdout:506 Cannot talk to daemon 2024-04-07T14:31:02.687 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T14:31:02.694 INFO:teuthology.orchestra.run.smithi076.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T14:31:02.702 INFO:teuthology.orchestra.run.smithi111.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-04-07T14:31:02.718 INFO:teuthology.orchestra.run.smithi111.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-04-07T14:31:02.752 INFO:teuthology.orchestra.run.smithi062.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:31:02.755 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:31:02.755 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2024-04-07T14:31:02.755 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.755 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.756 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.756 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.757 INFO:teuthology.orchestra.run.smithi076.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:31:02.760 INFO:teuthology.orchestra.run.smithi076.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:31:02.761 INFO:teuthology.orchestra.run.smithi076.stdout:=============================================================================== 2024-04-07T14:31:02.761 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.761 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.761 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.761 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.768 INFO:teuthology.orchestra.run.smithi111.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:31:02.772 INFO:teuthology.orchestra.run.smithi111.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:31:02.772 INFO:teuthology.orchestra.run.smithi111.stdout:=============================================================================== 2024-04-07T14:31:02.772 INFO:teuthology.orchestra.run.smithi111.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.772 INFO:teuthology.orchestra.run.smithi111.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.772 INFO:teuthology.orchestra.run.smithi111.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.773 INFO:teuthology.orchestra.run.smithi111.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:31:02.773 INFO:teuthology.run_tasks:Running task pexec... 2024-04-07T14:31:02.782 INFO:teuthology.task.pexec:Executing custom commands... 2024-04-07T14:31:02.783 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi062.front.sepia.ceph.com 2024-04-07T14:31:02.783 DEBUG:teuthology.orchestra.run.smithi062:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-07T14:31:02.783 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi076.front.sepia.ceph.com 2024-04-07T14:31:02.784 DEBUG:teuthology.orchestra.run.smithi076:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-07T14:31:02.784 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi111.front.sepia.ceph.com 2024-04-07T14:31:02.784 DEBUG:teuthology.orchestra.run.smithi111:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-04-07T14:31:03.416 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:04 ago on Sun 07 Apr 2024 02:29:59 PM UTC. 2024-04-07T14:31:03.427 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:51 ago on Sun 07 Apr 2024 02:30:12 PM UTC. 2024-04-07T14:31:03.432 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:04 ago on Sun 07 Apr 2024 02:29:59 PM UTC. 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:31:03.702 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:31:03.703 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.704 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:31:03.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:31:03.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:31:03.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:31:03.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:31:03.721 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.722 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:31:03.723 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:31:03.724 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:31:03.728 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:31:03.729 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:31:03.730 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:31:03.731 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.732 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:31:03.733 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.734 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.735 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:31:03.736 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.736 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.736 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.736 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:31:03.768 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:31:03.770 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:31:03.770 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-04-07T14:31:03.770 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:31:03.770 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:31:03.770 INFO:teuthology.orchestra.run.smithi076.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-07T14:31:03.770 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 3.1 M 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 9.8 M 2024-04-07T14:31:03.771 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:31:03.786 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:31:03.795 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:31:03.797 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:31:03.798 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:03.798 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 3.1 M 2024-04-07T14:31:03.798 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 9.8 M 2024-04-07T14:31:03.798 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout: Package Architecture Version Repository Size 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout: runc x86_64 4:1.1.12-2.el9 appstream 3.1 M 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:31:03.801 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:31:03.802 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:03.802 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 3.1 M 2024-04-07T14:31:03.802 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 9.8 M 2024-04-07T14:31:03.802 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:31:04.589 INFO:teuthology.orchestra.run.smithi076.stdout:runc-1.1.12-2.el9.x86_64.rpm 6.4 MB/s | 3.1 MB 00:00 2024-04-07T14:31:04.589 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:31:04.590 INFO:teuthology.orchestra.run.smithi076.stdout:Total 3.8 MB/s | 3.1 MB 00:00 2024-04-07T14:31:04.625 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:31:04.631 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:31:04.631 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:31:04.711 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:31:04.712 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:31:04.836 INFO:teuthology.orchestra.run.smithi062.stdout:runc-1.1.12-2.el9.x86_64.rpm 3.4 MB/s | 3.1 MB 00:00 2024-04-07T14:31:04.836 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:31:04.836 INFO:teuthology.orchestra.run.smithi062.stdout:Total 3.0 MB/s | 3.1 MB 00:01 2024-04-07T14:31:04.874 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:31:04.880 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:31:04.880 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:31:04.926 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:31:04.964 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:31:04.964 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:31:05.034 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:05.188 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:31:05.283 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:05.575 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:05.797 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:05.873 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:05.873 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:31:05.873 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:31:05.873 INFO:teuthology.orchestra.run.smithi076.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-07T14:31:05.873 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:31:05.873 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:31:06.097 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:06.098 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:06.098 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:31:06.098 INFO:teuthology.orchestra.run.smithi062.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-07T14:31:06.098 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:06.098 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:31:06.144 DEBUG:teuthology.parallel:result is None 2024-04-07T14:31:06.325 DEBUG:teuthology.parallel:result is None 2024-04-07T14:31:09.410 INFO:teuthology.orchestra.run.smithi111.stdout:runc-1.1.12-2.el9.x86_64.rpm 578 kB/s | 3.1 MB 00:05 2024-04-07T14:31:09.411 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:31:09.411 INFO:teuthology.orchestra.run.smithi111.stdout:Total 571 kB/s | 3.1 MB 00:05 2024-04-07T14:31:09.449 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:31:09.456 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:31:09.456 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:31:09.539 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:31:09.539 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:31:09.767 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:31:09.947 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:10.389 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:10.700 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : runc-4:1.1.12-2.el9.x86_64 1/1 2024-04-07T14:31:10.701 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:10.701 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:31:10.701 INFO:teuthology.orchestra.run.smithi111.stdout: runc-4:1.1.12-2.el9.x86_64 2024-04-07T14:31:10.701 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:10.701 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:31:10.961 DEBUG:teuthology.parallel:result is None 2024-04-07T14:31:10.961 INFO:teuthology.run_tasks:Running task install... 2024-04-07T14:31:10.971 DEBUG:teuthology.task.install:project ceph 2024-04-07T14:31:10.971 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'}} 2024-04-07T14:31:10.972 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'} 2024-04-07T14:31:10.972 INFO:teuthology.task.install:Using flavor: default 2024-04-07T14:31:10.977 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-07T14:31:10.977 INFO:teuthology.task.install:extra packages: [] 2024-04-07T14:31:10.977 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': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', 'tag': None, 'wait_for_package': False} 2024-04-07T14:31:10.978 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:31:10.980 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': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', 'tag': None, 'wait_for_package': False} 2024-04-07T14:31:10.980 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:31:10.981 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': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', 'tag': None, 'wait_for_package': False} 2024-04-07T14:31:10.981 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:31:11.137 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/ 2024-04-07T14:31:11.137 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2578.ge5c885fe 2024-04-07T14:31:11.214 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/ 2024-04-07T14:31:11.214 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2578.ge5c885fe 2024-04-07T14:31:11.218 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/ 2024-04-07T14:31:11.218 INFO:teuthology.task.install.rpm:Package version is 19.0.0-2578.ge5c885fe 2024-04-07T14:31:11.255 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/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/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/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/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-07T14:31:11.256 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:31:11.256 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-07T14:31:11.288 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-07T14:31:11.288 DEBUG:teuthology.orchestra.run.smithi062:> 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/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-07T14:31:11.328 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/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/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/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/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-07T14:31:11.329 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-04-07T14:31:11.329 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-07T14:31:11.360 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:31:11.361 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-07T14:31:11.361 DEBUG:teuthology.orchestra.run.smithi076:> 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/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-07T14:31:11.393 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/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/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/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/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-04-07T14:31:11.393 DEBUG:teuthology.orchestra.run.smithi111:> set -ex 2024-04-07T14:31:11.393 DEBUG:teuthology.orchestra.run.smithi111:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-04-07T14:31:11.422 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-07T14:31:11.422 DEBUG:teuthology.orchestra.run.smithi111:> 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/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-04-07T14:31:11.433 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:31:11.442 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:31:11.505 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:31:11.510 INFO:teuthology.orchestra.run.smithi062.stdout:check_obsoletes = 1 2024-04-07T14:31:11.512 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum clean all 2024-04-07T14:31:11.518 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:31:11.546 INFO:teuthology.orchestra.run.smithi076.stdout:check_obsoletes = 1 2024-04-07T14:31:11.548 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum clean all 2024-04-07T14:31:11.584 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:31:11.651 INFO:teuthology.orchestra.run.smithi111.stdout:check_obsoletes = 1 2024-04-07T14:31:11.653 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum clean all 2024-04-07T14:31:11.774 INFO:teuthology.orchestra.run.smithi062.stdout:74 files removed 2024-04-07T14:31:11.798 INFO:teuthology.orchestra.run.smithi076.stdout:74 files removed 2024-04-07T14:31:11.803 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-radosgw 2024-04-07T14:31:11.825 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-radosgw 2024-04-07T14:31:11.904 INFO:teuthology.orchestra.run.smithi111.stdout:74 files removed 2024-04-07T14:31:11.931 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-radosgw 2024-04-07T14:31:12.843 INFO:teuthology.orchestra.run.smithi076.stdout:ceph packages for x86_64 116 kB/s | 83 kB 00:00 2024-04-07T14:31:12.867 INFO:teuthology.orchestra.run.smithi111.stdout:ceph packages for x86_64 130 kB/s | 83 kB 00:00 2024-04-07T14:31:13.018 INFO:teuthology.orchestra.run.smithi062.stdout:ceph packages for x86_64 92 kB/s | 83 kB 00:00 2024-04-07T14:31:13.261 INFO:teuthology.orchestra.run.smithi076.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-07T14:31:13.292 INFO:teuthology.orchestra.run.smithi111.stdout:ceph noarch packages 31 kB/s | 11 kB 00:00 2024-04-07T14:31:13.360 INFO:teuthology.orchestra.run.smithi062.stdout:ceph noarch packages 40 kB/s | 11 kB 00:00 2024-04-07T14:31:13.619 INFO:teuthology.orchestra.run.smithi076.stdout:ceph source packages 5.9 kB/s | 1.9 kB 00:00 2024-04-07T14:31:13.719 INFO:teuthology.orchestra.run.smithi062.stdout:ceph source packages 6.0 kB/s | 1.9 kB 00:00 2024-04-07T14:31:13.726 INFO:teuthology.orchestra.run.smithi111.stdout:ceph source packages 4.8 kB/s | 1.9 kB 00:00 2024-04-07T14:31:14.097 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS-9 - AppStream 18 MB/s | 8.1 MB 00:00 2024-04-07T14:31:14.262 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS-9 - AppStream 16 MB/s | 8.1 MB 00:00 2024-04-07T14:31:14.262 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS-9 - AppStream 16 MB/s | 8.1 MB 00:00 2024-04-07T14:31:15.706 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS-9 - BaseOS 8.6 MB/s | 2.5 MB 00:00 2024-04-07T14:31:15.887 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS-9 - BaseOS 8.5 MB/s | 2.5 MB 00:00 2024-04-07T14:31:15.971 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS-9 - BaseOS 8.0 MB/s | 2.5 MB 00:00 2024-04-07T14:31:17.011 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.0 MB 00:00 2024-04-07T14:31:17.362 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - BaseOS 8.7 MB/s | 8.0 MB 00:00 2024-04-07T14:31:17.829 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - BaseOS 4.8 MB/s | 8.0 MB 00:01 2024-04-07T14:31:25.821 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - AppStream 2.6 MB/s | 19 MB 00:07 2024-04-07T14:31:29.989 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - CRB 15 MB/s | 6.1 MB 00:00 2024-04-07T14:31:31.499 INFO:teuthology.orchestra.run.smithi062.stdout:CentOS Stream 9 - Extras packages 57 kB/s | 16 kB 00:00 2024-04-07T14:31:31.919 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - AppStream 1.4 MB/s | 19 MB 00:13 2024-04-07T14:31:34.674 INFO:teuthology.orchestra.run.smithi062.stdout:Extra Packages for Enterprise Linux 6.9 MB/s | 21 MB 00:03 2024-04-07T14:31:36.338 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - CRB 7.2 MB/s | 6.1 MB 00:00 2024-04-07T14:31:36.595 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - AppStream 1.1 MB/s | 19 MB 00:17 2024-04-07T14:31:37.781 INFO:teuthology.orchestra.run.smithi111.stdout:CentOS Stream 9 - Extras packages 58 kB/s | 16 kB 00:00 2024-04-07T14:31:39.441 INFO:teuthology.orchestra.run.smithi111.stdout:Extra Packages for Enterprise Linux 14 MB/s | 21 MB 00:01 2024-04-07T14:31:39.941 INFO:teuthology.orchestra.run.smithi062.stdout:lab-extras 44 kB/s | 1.7 kB 00:00 2024-04-07T14:31:40.873 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - CRB 8.4 MB/s | 6.1 MB 00:00 2024-04-07T14:31:42.205 INFO:teuthology.orchestra.run.smithi076.stdout:CentOS Stream 9 - Extras packages 87 kB/s | 16 kB 00:00 2024-04-07T14:31:42.463 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:31:42.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:31:42.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:31:42.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:31:42.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:31:43.015 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-radosgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 9.8 M 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout:Upgrading: 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout: librados2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.4 M 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout: librbd1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:31:43.018 INFO:teuthology.orchestra.run.smithi062.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-base x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.4 M 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 21 M 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-selinux x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 25 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: libcephfs2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 746 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: libradosstriper1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 500 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: librgw2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.1 M 2024-04-07T14:31:43.019 INFO:teuthology.orchestra.run.smithi062.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-argparse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 45 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 134 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cephfs x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 161 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rados x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 320 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 299 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 99 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout:Installing weak dependencies: 2024-04-07T14:31:43.020 INFO:teuthology.orchestra.run.smithi062.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout:Install 30 Packages 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout:Upgrade 2 Packages 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 59 M 2024-04-07T14:31:43.021 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:31:43.826 INFO:teuthology.orchestra.run.smithi062.stdout:(1/32): ceph-base-19.0.0-2578.ge5c885fe.el9.x86 9.2 MB/s | 5.4 MB 00:00 2024-04-07T14:31:43.885 INFO:teuthology.orchestra.run.smithi062.stdout:(2/32): ceph-selinux-19.0.0-2578.ge5c885fe.el9. 431 kB/s | 25 kB 00:00 2024-04-07T14:31:43.985 INFO:teuthology.orchestra.run.smithi062.stdout:(3/32): libcephfs2-19.0.0-2578.ge5c885fe.el9.x8 7.3 MB/s | 746 kB 00:00 2024-04-07T14:31:44.060 INFO:teuthology.orchestra.run.smithi062.stdout:(4/32): libradosstriper1-19.0.0-2578.ge5c885fe. 6.5 MB/s | 500 kB 00:00 2024-04-07T14:31:44.457 INFO:teuthology.orchestra.run.smithi111.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-04-07T14:31:44.535 INFO:teuthology.orchestra.run.smithi062.stdout:(5/32): librgw2-19.0.0-2578.ge5c885fe.el9.x86_6 11 MB/s | 5.1 MB 00:00 2024-04-07T14:31:44.602 INFO:teuthology.orchestra.run.smithi062.stdout:(6/32): python3-ceph-argparse-19.0.0-2578.ge5c8 678 kB/s | 45 kB 00:00 2024-04-07T14:31:44.669 INFO:teuthology.orchestra.run.smithi062.stdout:(7/32): python3-ceph-common-19.0.0-2578.ge5c885 2.0 MB/s | 134 kB 00:00 2024-04-07T14:31:44.744 INFO:teuthology.orchestra.run.smithi062.stdout:(8/32): python3-cephfs-19.0.0-2578.ge5c885fe.el 2.1 MB/s | 161 kB 00:00 2024-04-07T14:31:44.828 INFO:teuthology.orchestra.run.smithi062.stdout:(9/32): python3-rados-19.0.0-2578.ge5c885fe.el9 3.8 MB/s | 320 kB 00:00 2024-04-07T14:31:44.912 INFO:teuthology.orchestra.run.smithi062.stdout:(10/32): python3-rbd-19.0.0-2578.ge5c885fe.el9. 3.5 MB/s | 299 kB 00:00 2024-04-07T14:31:44.978 INFO:teuthology.orchestra.run.smithi062.stdout:(11/32): python3-rgw-19.0.0-2578.ge5c885fe.el9. 1.5 MB/s | 99 kB 00:00 2024-04-07T14:31:45.096 INFO:teuthology.orchestra.run.smithi062.stdout:(12/32): boost-program-options-1.75.0-8.el9.x86 915 kB/s | 107 kB 00:00 2024-04-07T14:31:45.296 INFO:teuthology.orchestra.run.smithi062.stdout:(13/32): ceph-common-19.0.0-2578.ge5c885fe.el9. 10 MB/s | 21 MB 00:02 2024-04-07T14:31:45.321 INFO:teuthology.orchestra.run.smithi062.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 710 kB/s | 160 kB 00:00 2024-04-07T14:31:45.388 INFO:teuthology.orchestra.run.smithi062.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 492 kB/s | 45 kB 00:00 2024-04-07T14:31:45.413 INFO:teuthology.orchestra.run.smithi062.stdout:(16/32): librdkafka-1.6.1-102.el9.x86_64.rpm 7.1 MB/s | 662 kB 00:00 2024-04-07T14:31:45.442 INFO:teuthology.orchestra.run.smithi076.stdout:Extra Packages for Enterprise Linux 6.7 MB/s | 21 MB 00:03 2024-04-07T14:31:45.447 INFO:teuthology.orchestra.run.smithi062.stdout:(17/32): python3-prettytable-0.7.2-27.el9.noarc 1.2 MB/s | 42 kB 00:00 2024-04-07T14:31:45.472 INFO:teuthology.orchestra.run.smithi062.stdout:(18/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.4 MB/s | 292 kB 00:00 2024-04-07T14:31:45.498 INFO:teuthology.orchestra.run.smithi062.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 4.3 MB/s | 221 kB 00:00 2024-04-07T14:31:45.514 INFO:teuthology.orchestra.run.smithi062.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 861 kB/s | 36 kB 00:00 2024-04-07T14:31:45.531 INFO:teuthology.orchestra.run.smithi062.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 1.4 MB/s | 47 kB 00:00 2024-04-07T14:31:45.899 INFO:teuthology.orchestra.run.smithi062.stdout:(22/32): ceph-radosgw-19.0.0-2578.ge5c885fe.el9 3.7 MB/s | 9.8 MB 00:02 2024-04-07T14:31:45.941 INFO:teuthology.orchestra.run.smithi062.stdout:(23/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 725 kB/s | 309 kB 00:00 2024-04-07T14:31:46.033 INFO:teuthology.orchestra.run.smithi062.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 529 kB/s | 49 kB 00:00 2024-04-07T14:31:46.125 INFO:teuthology.orchestra.run.smithi062.stdout:(25/32): libunwind-1.6.2-1.el9.x86_64.rpm 735 kB/s | 67 kB 00:00 2024-04-07T14:31:46.142 INFO:teuthology.orchestra.run.smithi062.stdout:(26/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 107 kB/s | 26 kB 00:00 2024-04-07T14:31:46.300 INFO:teuthology.orchestra.run.smithi062.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 4.7 MB/s | 838 kB 00:00 2024-04-07T14:31:46.367 INFO:teuthology.orchestra.run.smithi062.stdout:(28/32): libarrow-9.0.0-10.el9.x86_64.rpm 5.3 MB/s | 4.4 MB 00:00 2024-04-07T14:31:46.400 INFO:teuthology.orchestra.run.smithi062.stdout:(29/32): re2-20211101-3.el9.x86_64.rpm 740 kB/s | 192 kB 00:00 2024-04-07T14:31:46.476 INFO:teuthology.orchestra.run.smithi062.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 9.0 MB/s | 1.6 MB 00:00 2024-04-07T14:31:46.859 INFO:teuthology.orchestra.run.smithi062.stdout:(31/32): librados2-19.0.0-2578.ge5c885fe.el9.x8 6.9 MB/s | 3.4 MB 00:00 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:31:46.883 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:31:46.884 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:31:46.885 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.886 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.887 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:31:46.888 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.889 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:31:46.890 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:31:46.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:31:46.934 INFO:teuthology.orchestra.run.smithi062.stdout:(32/32): librbd1-19.0.0-2578.ge5c885fe.el9.x86_ 5.9 MB/s | 3.1 MB 00:00 2024-04-07T14:31:46.938 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:31:46.938 INFO:teuthology.orchestra.run.smithi062.stdout:Total 15 MB/s | 59 MB 00:03 2024-04-07T14:31:47.039 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:31:47.078 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:31:47.078 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:31:47.392 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:31:47.394 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:31:47.394 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:31:47.394 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-radosgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 9.8 M 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout:Upgrading: 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: librados2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.4 M 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: librbd1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-base x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.4 M 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 21 M 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-selinux x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 25 k 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-07T14:31:47.395 INFO:teuthology.orchestra.run.smithi111.stdout: libcephfs2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 746 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: libradosstriper1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 500 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: librgw2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.1 M 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: python3-ceph-argparse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 45 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: python3-ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 134 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cephfs x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 161 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-07T14:31:47.396 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rados x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 320 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 299 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 99 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout:Installing weak dependencies: 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout:Install 30 Packages 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout:Upgrade 2 Packages 2024-04-07T14:31:47.397 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:47.398 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 59 M 2024-04-07T14:31:47.398 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:31:47.587 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:31:47.588 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:31:48.858 INFO:teuthology.orchestra.run.smithi111.stdout:(1/32): ceph-base-19.0.0-2578.ge5c885fe.el9.x86 4.3 MB/s | 5.4 MB 00:01 2024-04-07T14:31:48.933 INFO:teuthology.orchestra.run.smithi111.stdout:(2/32): ceph-selinux-19.0.0-2578.ge5c885fe.el9. 336 kB/s | 25 kB 00:00 2024-04-07T14:31:49.109 INFO:teuthology.orchestra.run.smithi111.stdout:(3/32): libcephfs2-19.0.0-2578.ge5c885fe.el9.x8 4.2 MB/s | 746 kB 00:00 2024-04-07T14:31:49.161 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:31:49.255 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-07T14:31:49.298 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-07T14:31:49.325 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-07T14:31:49.342 INFO:teuthology.orchestra.run.smithi111.stdout:(4/32): ceph-common-19.0.0-2578.ge5c885fe.el9.x 12 MB/s | 21 MB 00:01 2024-04-07T14:31:49.346 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T14:31:49.362 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T14:31:49.392 INFO:teuthology.orchestra.run.smithi111.stdout:(5/32): libradosstriper1-19.0.0-2578.ge5c885fe. 1.7 MB/s | 500 kB 00:00 2024-04-07T14:31:49.476 INFO:teuthology.orchestra.run.smithi111.stdout:(6/32): python3-ceph-argparse-19.0.0-2578.ge5c8 541 kB/s | 45 kB 00:00 2024-04-07T14:31:49.504 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T14:31:49.560 INFO:teuthology.orchestra.run.smithi111.stdout:(7/32): python3-ceph-common-19.0.0-2578.ge5c885 1.6 MB/s | 134 kB 00:00 2024-04-07T14:31:49.561 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T14:31:49.635 INFO:teuthology.orchestra.run.smithi111.stdout:(8/32): python3-cephfs-19.0.0-2578.ge5c885fe.el 2.1 MB/s | 161 kB 00:00 2024-04-07T14:31:49.719 INFO:teuthology.orchestra.run.smithi111.stdout:(9/32): librgw2-19.0.0-2578.ge5c885fe.el9.x86_6 14 MB/s | 5.1 MB 00:00 2024-04-07T14:31:49.744 INFO:teuthology.orchestra.run.smithi111.stdout:(10/32): python3-rados-19.0.0-2578.ge5c885fe.el 2.9 MB/s | 320 kB 00:00 2024-04-07T14:31:49.769 INFO:teuthology.orchestra.run.smithi111.stdout:(11/32): python3-rbd-19.0.0-2578.ge5c885fe.el9. 5.9 MB/s | 299 kB 00:00 2024-04-07T14:31:49.803 INFO:teuthology.orchestra.run.smithi111.stdout:(12/32): python3-rgw-19.0.0-2578.ge5c885fe.el9. 1.7 MB/s | 99 kB 00:00 2024-04-07T14:31:49.906 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-07T14:31:49.958 INFO:teuthology.orchestra.run.smithi062.stdout: Upgrading : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:31:49.986 INFO:teuthology.orchestra.run.smithi111.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 493 kB/s | 107 kB 00:00 2024-04-07T14:31:50.045 INFO:teuthology.orchestra.run.smithi111.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 663 kB/s | 160 kB 00:00 2024-04-07T14:31:50.051 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:31:50.062 INFO:teuthology.orchestra.run.smithi111.stdout:(15/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 601 kB/s | 45 kB 00:00 2024-04-07T14:31:50.140 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 8/34 2024-04-07T14:31:50.162 INFO:teuthology.orchestra.run.smithi111.stdout:(16/32): librdkafka-1.6.1-102.el9.x86_64.rpm 5.5 MB/s | 662 kB 00:00 2024-04-07T14:31:50.168 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T14:31:50.187 INFO:teuthology.orchestra.run.smithi111.stdout:(17/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.3 MB/s | 292 kB 00:00 2024-04-07T14:31:50.221 INFO:teuthology.orchestra.run.smithi111.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 721 kB/s | 42 kB 00:00 2024-04-07T14:31:50.231 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T14:31:50.246 INFO:teuthology.orchestra.run.smithi111.stdout:(19/32): qatlib-24.02.0-1.el9.x86_64.rpm 3.7 MB/s | 221 kB 00:00 2024-04-07T14:31:50.260 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-07T14:31:50.304 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 11/34 2024-04-07T14:31:50.347 INFO:teuthology.orchestra.run.smithi111.stdout:(20/32): ceph-radosgw-19.0.0-2578.ge5c885fe.el9 3.6 MB/s | 9.8 MB 00:02 2024-04-07T14:31:50.364 INFO:teuthology.orchestra.run.smithi111.stdout:(21/32): qatlib-service-24.02.0-1.el9.x86_64.rp 252 kB/s | 36 kB 00:00 2024-04-07T14:31:50.376 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T14:31:50.397 INFO:teuthology.orchestra.run.smithi111.stdout:(22/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 315 kB/s | 47 kB 00:00 2024-04-07T14:31:50.404 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T14:31:50.476 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T14:31:50.511 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-07T14:31:50.557 INFO:teuthology.orchestra.run.smithi076.stdout:lab-extras 13 kB/s | 1.7 kB 00:00 2024-04-07T14:31:50.622 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-07T14:31:50.654 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-07T14:31:50.686 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-07T14:31:50.719 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-07T14:31:50.748 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-07T14:31:50.781 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-07T14:31:50.806 INFO:teuthology.orchestra.run.smithi111.stdout:(23/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 64 kB/s | 26 kB 00:00 2024-04-07T14:31:50.998 INFO:teuthology.orchestra.run.smithi111.stdout:(24/32): liboath-2.6.7-2.el9.x86_64.rpm 253 kB/s | 49 kB 00:00 2024-04-07T14:31:51.057 INFO:teuthology.orchestra.run.smithi111.stdout:(25/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 436 kB/s | 309 kB 00:00 2024-04-07T14:31:51.110 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-07T14:31:51.135 INFO:teuthology.orchestra.run.smithi062.stdout: Upgrading : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T14:31:51.148 INFO:teuthology.orchestra.run.smithi111.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 448 kB/s | 67 kB 00:00 2024-04-07T14:31:51.233 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T14:31:51.265 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 23/34 2024-04-07T14:31:51.310 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-07T14:31:51.349 INFO:teuthology.orchestra.run.smithi111.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 2.8 MB/s | 838 kB 00:00 2024-04-07T14:31:51.374 INFO:teuthology.orchestra.run.smithi111.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 851 kB/s | 192 kB 00:00 2024-04-07T14:31:51.449 INFO:teuthology.orchestra.run.smithi111.stdout:(29/32): libarrow-9.0.0-10.el9.x86_64.rpm 4.1 MB/s | 4.4 MB 00:01 2024-04-07T14:31:51.585 INFO:teuthology.orchestra.run.smithi111.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 6.8 MB/s | 1.6 MB 00:00 2024-04-07T14:31:51.797 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-07T14:31:51.816 INFO:teuthology.orchestra.run.smithi111.stdout:(31/32): librbd1-19.0.0-2578.ge5c885fe.el9.x86_ 8.6 MB/s | 3.1 MB 00:00 2024-04-07T14:31:51.821 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T14:31:51.893 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T14:31:51.983 INFO:teuthology.orchestra.run.smithi111.stdout:(32/32): librados2-19.0.0-2578.ge5c885fe.el9.x8 5.6 MB/s | 3.4 MB 00:00 2024-04-07T14:31:51.989 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:31:51.989 INFO:teuthology.orchestra.run.smithi111.stdout:Total 13 MB/s | 59 MB 00:04 2024-04-07T14:31:51.995 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 27/34 2024-04-07T14:31:52.032 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 28/34 2024-04-07T14:31:52.082 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:31:52.117 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:31:52.117 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:31:52.620 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:31:52.620 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:31:52.983 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:31:52.983 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:31:52.983 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:31:52.983 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.983 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:31:52.984 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:31:52.985 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:31:52.986 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:31:52.987 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:31:52.988 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.989 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.990 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.991 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:31:52.992 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:31:53.501 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:31:53.503 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:31:53.503 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:31:53.503 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-radosgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 9.8 M 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout:Upgrading: 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: librados2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.4 M 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: librbd1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-base x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.4 M 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 21 M 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-selinux x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 25 k 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: libarrow x86_64 9.0.0-10.el9 epel 4.4 M 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: libarrow-doc noarch 9.0.0-10.el9 epel 26 k 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 746 k 2024-04-07T14:31:53.504 INFO:teuthology.orchestra.run.smithi076.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: libradosstriper1 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 500 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: librgw2 x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 5.1 M 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: parquet-libs x86_64 9.0.0-10.el9 epel 838 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-argparse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 45 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-common x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 134 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cephfs x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 161 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rados x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 320 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 299 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rgw x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 99 k 2024-04-07T14:31:53.505 INFO:teuthology.orchestra.run.smithi076.stdout: qatlib x86_64 24.02.0-1.el9 appstream 221 k 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout: qatzip-libs x86_64 1.2.0-1.el9 appstream 47 k 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout:Installing weak dependencies: 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout: qatlib-service x86_64 24.02.0-1.el9 appstream 36 k 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout:Install 30 Packages 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout:Upgrade 2 Packages 2024-04-07T14:31:53.506 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:31:53.507 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 59 M 2024-04-07T14:31:53.507 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:31:54.035 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:31:54.109 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-07T14:31:54.147 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-07T14:31:54.172 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-07T14:31:54.195 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T14:31:54.212 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T14:31:54.371 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T14:31:54.375 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:31:54.403 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:31:54.425 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T14:31:54.591 INFO:teuthology.orchestra.run.smithi076.stdout:(1/32): ceph-base-19.0.0-2578.ge5c885fe.el9.x86 8.7 MB/s | 5.4 MB 00:00 2024-04-07T14:31:54.649 INFO:teuthology.orchestra.run.smithi076.stdout:(2/32): ceph-selinux-19.0.0-2578.ge5c885fe.el9. 434 kB/s | 25 kB 00:00 2024-04-07T14:31:54.741 INFO:teuthology.orchestra.run.smithi076.stdout:(3/32): libcephfs2-19.0.0-2578.ge5c885fe.el9.x8 8.0 MB/s | 746 kB 00:00 2024-04-07T14:31:54.810 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-07T14:31:54.816 INFO:teuthology.orchestra.run.smithi076.stdout:(4/32): libradosstriper1-19.0.0-2578.ge5c885fe. 6.5 MB/s | 500 kB 00:00 2024-04-07T14:31:54.857 INFO:teuthology.orchestra.run.smithi111.stdout: Upgrading : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:31:54.949 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:31:54.983 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:31:55.024 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T14:31:55.037 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 8/34 2024-04-07T14:31:55.075 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T14:31:55.083 INFO:teuthology.orchestra.run.smithi076.stdout:(5/32): ceph-radosgw-19.0.0-2578.ge5c885fe.el9. 8.9 MB/s | 9.8 MB 00:01 2024-04-07T14:31:55.097 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T14:31:55.097 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-07T14:31:55.097 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-07T14:31:55.097 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:31:55.134 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:31:55.137 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T14:31:55.167 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-07T14:31:55.200 INFO:teuthology.orchestra.run.smithi076.stdout:(6/32): librgw2-19.0.0-2578.ge5c885fe.el9.x86_6 13 MB/s | 5.1 MB 00:00 2024-04-07T14:31:55.210 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 11/34 2024-04-07T14:31:55.226 INFO:teuthology.orchestra.run.smithi076.stdout:(7/32): python3-ceph-argparse-19.0.0-2578.ge5c8 318 kB/s | 45 kB 00:00 2024-04-07T14:31:55.251 INFO:teuthology.orchestra.run.smithi076.stdout:(8/32): python3-ceph-common-19.0.0-2578.ge5c885 2.6 MB/s | 134 kB 00:00 2024-04-07T14:31:55.276 INFO:teuthology.orchestra.run.smithi076.stdout:(9/32): python3-cephfs-19.0.0-2578.ge5c885fe.el 3.2 MB/s | 161 kB 00:00 2024-04-07T14:31:55.278 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T14:31:55.303 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T14:31:55.309 INFO:teuthology.orchestra.run.smithi076.stdout:(10/32): python3-rados-19.0.0-2578.ge5c885fe.el 5.3 MB/s | 320 kB 00:00 2024-04-07T14:31:55.335 INFO:teuthology.orchestra.run.smithi076.stdout:(11/32): python3-rbd-19.0.0-2578.ge5c885fe.el9. 5.0 MB/s | 299 kB 00:00 2024-04-07T14:31:55.360 INFO:teuthology.orchestra.run.smithi076.stdout:(12/32): python3-rgw-19.0.0-2578.ge5c885fe.el9. 1.9 MB/s | 99 kB 00:00 2024-04-07T14:31:55.366 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T14:31:55.426 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-07T14:31:55.535 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-07T14:31:55.569 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-07T14:31:55.610 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-07T14:31:55.642 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-07T14:31:55.671 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-07T14:31:55.703 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-07T14:31:56.019 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-07T14:31:56.050 INFO:teuthology.orchestra.run.smithi111.stdout: Upgrading : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T14:31:56.110 INFO:teuthology.orchestra.run.smithi076.stdout:(13/32): boost-program-options-1.75.0-8.el9.x86 138 kB/s | 107 kB 00:00 2024-04-07T14:31:56.141 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T14:31:56.144 INFO:teuthology.orchestra.run.smithi076.stdout:(14/32): libpmemobj-1.12.1-1.el9.x86_64.rpm 204 kB/s | 160 kB 00:00 2024-04-07T14:31:56.172 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 23/34 2024-04-07T14:31:56.224 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-07T14:31:56.511 INFO:teuthology.orchestra.run.smithi076.stdout:(15/32): ceph-common-19.0.0-2578.ge5c885fe.el9. 8.1 MB/s | 21 MB 00:02 2024-04-07T14:31:56.685 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-07T14:31:56.711 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T14:31:56.782 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T14:31:56.844 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 27/34 2024-04-07T14:31:56.872 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 28/34 2024-04-07T14:31:56.961 INFO:teuthology.orchestra.run.smithi076.stdout:(16/32): librabbitmq-0.11.0-7.el9.x86_64.rpm 53 kB/s | 45 kB 00:00 2024-04-07T14:31:57.503 INFO:teuthology.orchestra.run.smithi076.stdout:(17/32): lttng-ust-2.12.0-6.el9.x86_64.rpm 310 kB/s | 292 kB 00:00 2024-04-07T14:31:57.578 INFO:teuthology.orchestra.run.smithi076.stdout:(18/32): python3-prettytable-0.7.2-27.el9.noarc 69 kB/s | 42 kB 00:00 2024-04-07T14:31:57.778 INFO:teuthology.orchestra.run.smithi076.stdout:(19/32): librdkafka-1.6.1-102.el9.x86_64.rpm 405 kB/s | 662 kB 00:01 2024-04-07T14:31:58.179 INFO:teuthology.orchestra.run.smithi076.stdout:(20/32): qatlib-service-24.02.0-1.el9.x86_64.rp 60 kB/s | 36 kB 00:00 2024-04-07T14:31:58.404 INFO:teuthology.orchestra.run.smithi076.stdout:(21/32): qatzip-libs-1.2.0-1.el9.x86_64.rpm 76 kB/s | 47 kB 00:00 2024-04-07T14:31:58.445 INFO:teuthology.orchestra.run.smithi076.stdout:(22/32): qatlib-24.02.0-1.el9.x86_64.rpm 234 kB/s | 221 kB 00:00 2024-04-07T14:31:58.604 INFO:teuthology.orchestra.run.smithi076.stdout:(23/32): gperftools-libs-2.9.1-2.el9.x86_64.rpm 727 kB/s | 309 kB 00:00 2024-04-07T14:31:58.688 INFO:teuthology.orchestra.run.smithi076.stdout:(24/32): libarrow-doc-9.0.0-10.el9.noarch.rpm 107 kB/s | 26 kB 00:00 2024-04-07T14:31:58.713 INFO:teuthology.orchestra.run.smithi076.stdout:(25/32): liboath-2.6.7-2.el9.x86_64.rpm 448 kB/s | 49 kB 00:00 2024-04-07T14:31:58.830 INFO:teuthology.orchestra.run.smithi076.stdout:(26/32): libunwind-1.6.2-1.el9.x86_64.rpm 475 kB/s | 67 kB 00:00 2024-04-07T14:31:58.905 INFO:teuthology.orchestra.run.smithi076.stdout:(27/32): parquet-libs-9.0.0-10.el9.x86_64.rpm 4.3 MB/s | 838 kB 00:00 2024-04-07T14:31:58.980 INFO:teuthology.orchestra.run.smithi076.stdout:(28/32): re2-20211101-3.el9.x86_64.rpm 1.2 MB/s | 192 kB 00:00 2024-04-07T14:31:59.056 INFO:teuthology.orchestra.run.smithi076.stdout:(29/32): libarrow-9.0.0-10.el9.x86_64.rpm 6.8 MB/s | 4.4 MB 00:00 2024-04-07T14:31:59.097 INFO:teuthology.orchestra.run.smithi076.stdout:(30/32): thrift-0.15.0-2.el9.x86_64.rpm 8.2 MB/s | 1.6 MB 00:00 2024-04-07T14:31:59.145 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:31:59.186 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:31:59.315 INFO:teuthology.orchestra.run.smithi076.stdout:(31/32): librados2-19.0.0-2578.ge5c885fe.el9.x8 10 MB/s | 3.4 MB 00:00 2024-04-07T14:31:59.498 INFO:teuthology.orchestra.run.smithi076.stdout:(32/32): librbd1-19.0.0-2578.ge5c885fe.el9.x86_ 7.1 MB/s | 3.1 MB 00:00 2024-04-07T14:31:59.503 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:31:59.503 INFO:teuthology.orchestra.run.smithi076.stdout:Total 9.8 MB/s | 59 MB 00:05 2024-04-07T14:31:59.593 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:31:59.629 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:31:59.629 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:31:59.750 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:31:59.788 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T14:31:59.881 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T14:31:59.881 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-07T14:31:59.881 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-07T14:31:59.881 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:31:59.915 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:00.126 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:32:00.126 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:32:01.557 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:32:01.645 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/34 2024-04-07T14:32:01.678 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/34 2024-04-07T14:32:01.711 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/34 2024-04-07T14:32:01.734 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T14:32:01.751 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: qatlib-service-24.02.0-1.el9.x86_64 4/34 2024-04-07T14:32:02.102 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T14:32:02.156 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : qatlib-24.02.0-1.el9.x86_64 5/34 2024-04-07T14:32:02.542 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : thrift-0.15.0-2.el9.x86_64 6/34 2024-04-07T14:32:02.596 INFO:teuthology.orchestra.run.smithi076.stdout: Upgrading : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:32:02.671 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:32:02.758 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 8/34 2024-04-07T14:32:02.789 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T14:32:02.845 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 9/34 2024-04-07T14:32:02.872 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : liboath-2.6.7-2.el9.x86_64 10/34 2024-04-07T14:32:02.915 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 11/34 2024-04-07T14:32:02.984 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T14:32:03.008 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T14:32:03.063 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 13/34 2024-04-07T14:32:03.097 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : qatzip-libs-1.2.0-1.el9.x86_64 14/34 2024-04-07T14:32:03.205 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : re2-1:20211101-3.el9.x86_64 15/34 2024-04-07T14:32:03.249 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libarrow-9.0.0-10.el9.x86_64 16/34 2024-04-07T14:32:03.289 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/34 2024-04-07T14:32:03.321 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 18/34 2024-04-07T14:32:03.342 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libarrow-doc-9.0.0-10.el9.noarch 19/34 2024-04-07T14:32:03.367 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 20/34 2024-04-07T14:32:03.683 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 21/34 2024-04-07T14:32:03.713 INFO:teuthology.orchestra.run.smithi076.stdout: Upgrading : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T14:32:03.811 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 22/34 2024-04-07T14:32:03.842 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 23/34 2024-04-07T14:32:03.887 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 24/34 2024-04-07T14:32:04.356 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : parquet-libs-9.0.0-10.el9.x86_64 25/34 2024-04-07T14:32:04.382 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T14:32:04.461 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 26/34 2024-04-07T14:32:04.530 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 27/34 2024-04-07T14:32:04.559 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 28/34 2024-04-07T14:32:05.236 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:05.236 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /sys 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /proc 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /mnt 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /var/tmp 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /home 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /root 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout:skipping the directory /tmp 2024-04-07T14:32:05.237 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:06.196 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T14:32:06.221 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T14:32:06.221 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:06.221 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-07T14:32:06.221 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T14:32:06.221 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T14:32:06.221 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:06.224 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T14:32:06.308 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T14:32:06.308 INFO:teuthology.orchestra.run.smithi062.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:06.733 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:32:06.799 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:32:07.353 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 29/34 2024-04-07T14:32:07.391 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T14:32:07.472 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 30/34 2024-04-07T14:32:07.472 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-04-07T14:32:07.472 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-04-07T14:32:07.473 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:07.497 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:07.497 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/34 2024-04-07T14:32:07.497 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/34 2024-04-07T14:32:07.497 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/34 2024-04-07T14:32:07.497 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/34 2024-04-07T14:32:07.497 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 6/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 8/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 9/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 10/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 11/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 13/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-07T14:32:07.498 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-07T14:32:07.499 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/34 2024-04-07T14:32:07.517 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:08.720 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:08.720 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:08.720 INFO:teuthology.orchestra.run.smithi062.stdout:Upgraded: 2024-04-07T14:32:08.720 INFO:teuthology.orchestra.run.smithi062.stdout: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.721 INFO:teuthology.orchestra.run.smithi062.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-07T14:32:08.722 INFO:teuthology.orchestra.run.smithi062.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-07T14:32:08.723 INFO:teuthology.orchestra.run.smithi062.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-07T14:32:08.723 INFO:teuthology.orchestra.run.smithi062.stdout: re2-1:20211101-3.el9.x86_64 2024-04-07T14:32:08.723 INFO:teuthology.orchestra.run.smithi062.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-07T14:32:08.723 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:08.723 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:08.999 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-test 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /sys 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /proc 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /mnt 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /var/tmp 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /home 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /root 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout:skipping the directory /tmp 2024-04-07T14:32:09.571 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:09.601 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:30 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:09.903 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:09.903 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:09.903 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.904 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:09.905 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:09.906 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:09.907 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:09.908 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.909 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.910 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.911 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.912 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.913 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:09.983 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:09.983 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-test x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 48 M 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: libcephsqlite x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 163 k 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-07T14:32:09.984 INFO:teuthology.orchestra.run.smithi062.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout:Install 6 Packages 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 49 M 2024-04-07T14:32:09.985 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 206 M 2024-04-07T14:32:09.986 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:32:10.437 INFO:teuthology.orchestra.run.smithi062.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 965 kB/s | 187 kB 00:00 2024-04-07T14:32:10.471 INFO:teuthology.orchestra.run.smithi062.stdout:(2/6): libcephsqlite-19.0.0-2578.ge5c885fe.el9. 717 kB/s | 163 kB 00:00 2024-04-07T14:32:10.518 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T14:32:10.521 INFO:teuthology.orchestra.run.smithi062.stdout:(3/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 2.5 MB/s | 218 kB 00:00 2024-04-07T14:32:10.542 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T14:32:10.543 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:10.543 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-07T14:32:10.543 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T14:32:10.543 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T14:32:10.543 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:10.545 INFO:teuthology.orchestra.run.smithi111.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T14:32:10.629 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T14:32:10.629 INFO:teuthology.orchestra.run.smithi111.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:10.747 INFO:teuthology.orchestra.run.smithi062.stdout:(4/6): socat-1.7.4.1-5.el9.x86_64.rpm 1.1 MB/s | 305 kB 00:00 2024-04-07T14:32:10.771 INFO:teuthology.orchestra.run.smithi062.stdout:(5/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 254 kB/s | 64 kB 00:00 2024-04-07T14:32:11.795 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:11.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/34 2024-04-07T14:32:11.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/34 2024-04-07T14:32:11.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/34 2024-04-07T14:32:11.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 6/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 8/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 9/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 10/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 11/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 13/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-07T14:32:11.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-07T14:32:11.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-07T14:32:11.798 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-07T14:32:11.798 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-07T14:32:11.798 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:11.798 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-07T14:32:11.798 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/34 2024-04-07T14:32:12.797 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:12.797 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:12.797 INFO:teuthology.orchestra.run.smithi111.stdout:Upgraded: 2024-04-07T14:32:12.797 INFO:teuthology.orchestra.run.smithi111.stdout: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-07T14:32:12.798 INFO:teuthology.orchestra.run.smithi111.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-07T14:32:12.799 INFO:teuthology.orchestra.run.smithi111.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-07T14:32:12.800 INFO:teuthology.orchestra.run.smithi111.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-07T14:32:12.800 INFO:teuthology.orchestra.run.smithi111.stdout: re2-1:20211101-3.el9.x86_64 2024-04-07T14:32:12.800 INFO:teuthology.orchestra.run.smithi111.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-07T14:32:12.800 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:12.800 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:13.147 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-test 2024-04-07T14:32:13.756 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:00:29 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:14.047 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:14.047 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:14.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:14.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:14.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.051 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:14.052 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.053 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.054 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:14.115 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:14.116 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:14.116 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:32:14.116 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:14.116 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-test x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 48 M 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: libcephsqlite x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 163 k 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout:Install 6 Packages 2024-04-07T14:32:14.117 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:14.118 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 49 M 2024-04-07T14:32:14.118 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 206 M 2024-04-07T14:32:14.118 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:32:14.333 INFO:teuthology.orchestra.run.smithi111.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 1.3 MB/s | 187 kB 00:00 2024-04-07T14:32:14.392 INFO:teuthology.orchestra.run.smithi111.stdout:(2/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 3.7 MB/s | 218 kB 00:00 2024-04-07T14:32:14.459 INFO:teuthology.orchestra.run.smithi111.stdout:(3/6): libcephsqlite-19.0.0-2578.ge5c885fe.el9. 623 kB/s | 163 kB 00:00 2024-04-07T14:32:14.667 INFO:teuthology.orchestra.run.smithi111.stdout:(4/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 345 kB/s | 64 kB 00:00 2024-04-07T14:32:14.692 INFO:teuthology.orchestra.run.smithi111.stdout:(5/6): socat-1.7.4.1-5.el9.x86_64.rpm 1.0 MB/s | 305 kB 00:00 2024-04-07T14:32:15.397 INFO:teuthology.orchestra.run.smithi062.stdout:(6/6): ceph-test-19.0.0-2578.ge5c885fe.el9.x86_ 9.2 MB/s | 48 MB 00:05 2024-04-07T14:32:15.398 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:15.398 INFO:teuthology.orchestra.run.smithi062.stdout:Total 9.0 MB/s | 49 MB 00:05 2024-04-07T14:32:15.444 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:32:15.464 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:32:15.464 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:32:15.863 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:32:15.863 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:32:16.452 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:32:16.539 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-07T14:32:16.578 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-07T14:32:16.618 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-07T14:32:16.664 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-07T14:32:16.692 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /sys 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /proc 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /mnt 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /var/tmp 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /home 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /root 2024-04-07T14:32:17.047 INFO:teuthology.orchestra.run.smithi076.stdout:skipping the directory /tmp 2024-04-07T14:32:17.048 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:17.990 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T14:32:18.014 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/34 2024-04-07T14:32:18.014 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:18.014 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-04-07T14:32:18.014 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T14:32:18.014 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-04-07T14:32:18.015 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:18.016 INFO:teuthology.orchestra.run.smithi076.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T14:32:18.101 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 33/34 2024-04-07T14:32:18.101 INFO:teuthology.orchestra.run.smithi076.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:18.659 INFO:teuthology.orchestra.run.smithi111.stdout:(6/6): ceph-test-19.0.0-2578.ge5c885fe.el9.x86_ 11 MB/s | 48 MB 00:04 2024-04-07T14:32:18.662 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:18.663 INFO:teuthology.orchestra.run.smithi111.stdout:Total 11 MB/s | 49 MB 00:04 2024-04-07T14:32:18.707 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:32:18.726 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:32:18.727 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:32:19.121 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:32:19.121 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/34 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/34 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/34 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/34 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/34 2024-04-07T14:32:19.216 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_6 6/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 7/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9. 8/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x8 9/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 10/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 11/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 12/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 13/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/34 2024-04-07T14:32:19.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : qatlib-24.02.0-1.el9.x86_64 20/34 2024-04-07T14:32:19.218 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : qatlib-service-24.02.0-1.el9.x86_64 21/34 2024-04-07T14:32:19.218 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : qatzip-libs-1.2.0-1.el9.x86_64 22/34 2024-04-07T14:32:19.218 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 23/34 2024-04-07T14:32:19.218 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libarrow-9.0.0-10.el9.x86_64 24/34 2024-04-07T14:32:19.218 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libarrow-doc-9.0.0-10.el9.noarch 25/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 26/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 27/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : parquet-libs-9.0.0-10.el9.x86_64 28/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : re2-1:20211101-3.el9.x86_64 29/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 30/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 31/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 32/34 2024-04-07T14:32:19.219 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/34 2024-04-07T14:32:19.689 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:32:19.764 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-07T14:32:19.806 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-07T14:32:19.839 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-07T14:32:19.884 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-07T14:32:19.912 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T14:32:20.217 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 34/34 2024-04-07T14:32:20.217 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout:Upgraded: 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-radosgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-selinux-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: libarrow-9.0.0-10.el9.x86_64 2024-04-07T14:32:20.218 INFO:teuthology.orchestra.run.smithi076.stdout: libarrow-doc-9.0.0-10.el9.noarch 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: liboath-2.6.7-2.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: libradosstriper1-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: librgw2-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: libunwind-1.6.2-1.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: parquet-libs-9.0.0-10.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-argparse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ceph-common-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.219 INFO:teuthology.orchestra.run.smithi076.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: qatlib-24.02.0-1.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: qatlib-service-24.02.0-1.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: qatzip-libs-1.2.0-1.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: re2-1:20211101-3.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: thrift-0.15.0-2.el9.x86_64 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:20.220 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:20.508 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-test 2024-04-07T14:32:21.101 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:31 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:21.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:21.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:21.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.400 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.401 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:21.467 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T14:32:21.469 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-test x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 48 M 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout: jq x86_64 1.6-16.el9 baseos 187 k 2024-04-07T14:32:21.470 INFO:teuthology.orchestra.run.smithi076.stdout: libcephsqlite x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 163 k 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout: oniguruma x86_64 6.9.6-1.el9.5 baseos 218 k 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout: socat x86_64 1.7.4.1-5.el9 appstream 305 k 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout:Install 6 Packages 2024-04-07T14:32:21.471 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:21.472 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 49 M 2024-04-07T14:32:21.472 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 206 M 2024-04-07T14:32:21.472 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:32:21.553 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T14:32:21.796 INFO:teuthology.orchestra.run.smithi076.stdout:(1/6): jq-1.6-16.el9.x86_64.rpm 1.1 MB/s | 187 kB 00:00 2024-04-07T14:32:21.863 INFO:teuthology.orchestra.run.smithi076.stdout:(2/6): oniguruma-6.9.6-1.el9.5.x86_64.rpm 3.2 MB/s | 218 kB 00:00 2024-04-07T14:32:22.072 INFO:teuthology.orchestra.run.smithi076.stdout:(3/6): libcephsqlite-19.0.0-2578.ge5c885fe.el9. 368 kB/s | 163 kB 00:00 2024-04-07T14:32:22.339 INFO:teuthology.orchestra.run.smithi076.stdout:(4/6): socat-1.7.4.1-5.el9.x86_64.rpm 641 kB/s | 305 kB 00:00 2024-04-07T14:32:22.389 INFO:teuthology.orchestra.run.smithi076.stdout:(5/6): xmlstarlet-1.6.1-20.el9.x86_64.rpm 201 kB/s | 64 kB 00:00 2024-04-07T14:32:23.931 INFO:teuthology.orchestra.run.smithi076.stdout:(6/6): ceph-test-19.0.0-2578.ge5c885fe.el9.x86_ 21 MB/s | 48 MB 00:02 2024-04-07T14:32:23.933 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:23.933 INFO:teuthology.orchestra.run.smithi076.stdout:Total 20 MB/s | 49 MB 00:02 2024-04-07T14:32:23.944 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T14:32:23.944 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/6 2024-04-07T14:32:23.944 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/6 2024-04-07T14:32:23.944 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-07T14:32:23.944 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-07T14:32:23.944 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-07T14:32:23.985 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:32:24.006 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:32:24.006 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:32:24.392 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:32:24.392 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: jq-1.6-16.el9.x86_64 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-07T14:32:24.395 INFO:teuthology.orchestra.run.smithi062.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-07T14:32:24.396 INFO:teuthology.orchestra.run.smithi062.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-07T14:32:24.396 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:24.396 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:24.494 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T14:32:24.570 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T14:32:24.642 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph 2024-04-07T14:32:24.961 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:32:25.051 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/6 2024-04-07T14:32:25.093 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : socat-1.7.4.1-5.el9.x86_64 2/6 2024-04-07T14:32:25.126 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : oniguruma-6.9.6-1.el9.5.x86_64 3/6 2024-04-07T14:32:25.165 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : jq-1.6-16.el9.x86_64 4/6 2024-04-07T14:32:25.192 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T14:32:25.248 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:00:46 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:25.548 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.549 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.550 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.551 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:25.553 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.554 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.555 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.556 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:25.557 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.558 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:25.559 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.559 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.559 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.559 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:25.625 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:25.627 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: ceph x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 6.6 k 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mds x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 2.4 M 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 1.5 M 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 249 k 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mon x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 4.7 M 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-osd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 17 M 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-07T14:32:25.628 INFO:teuthology.orchestra.run.smithi062.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-collections 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-07T14:32:25.629 INFO:teuthology.orchestra.run.smithi062.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-07T14:32:25.630 INFO:teuthology.orchestra.run.smithi062.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout:Install 36 Packages 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 30 M 2024-04-07T14:32:25.631 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 108 M 2024-04-07T14:32:25.632 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:32:26.318 INFO:teuthology.orchestra.run.smithi062.stdout:(1/36): ceph-19.0.0-2578.ge5c885fe.el9.x86_64.r 33 kB/s | 6.6 kB 00:00 2024-04-07T14:32:26.519 INFO:teuthology.orchestra.run.smithi062.stdout:(2/36): ceph-mds-19.0.0-2578.ge5c885fe.el9.x86_ 5.9 MB/s | 2.4 MB 00:00 2024-04-07T14:32:27.016 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T14:32:27.016 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/6 2024-04-07T14:32:27.017 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/6 2024-04-07T14:32:27.017 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-07T14:32:27.017 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-07T14:32:27.017 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-07T14:32:27.227 INFO:teuthology.orchestra.run.smithi062.stdout:(3/36): ceph-mgr-19.0.0-2578.ge5c885fe.el9.x86_ 1.4 MB/s | 1.5 MB 00:01 2024-04-07T14:32:27.419 INFO:teuthology.orchestra.run.smithi062.stdout:(4/36): ceph-osd-19.0.0-2578.ge5c885fe.el9.x86_ 19 MB/s | 17 MB 00:00 2024-04-07T14:32:27.444 INFO:teuthology.orchestra.run.smithi062.stdout:(5/36): ceph-mgr-modules-core-19.0.0-2578.ge5c8 1.1 MB/s | 249 kB 00:00 2024-04-07T14:32:27.466 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-07T14:32:27.466 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: jq-1.6-16.el9.x86_64 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:27.467 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:27.595 INFO:teuthology.orchestra.run.smithi062.stdout:(6/36): ceph-mon-19.0.0-2578.ge5c885fe.el9.x86_ 3.7 MB/s | 4.7 MB 00:01 2024-04-07T14:32:27.620 INFO:teuthology.orchestra.run.smithi062.stdout:(7/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.2 MB/s | 253 kB 00:00 2024-04-07T14:32:27.670 INFO:teuthology.orchestra.run.smithi062.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 2.6 MB/s | 135 kB 00:00 2024-04-07T14:32:27.673 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph 2024-04-07T14:32:27.721 INFO:teuthology.orchestra.run.smithi062.stdout:(9/36): python3-cryptography-36.0.1-4.el9.x86_6 4.4 MB/s | 1.2 MB 00:00 2024-04-07T14:32:27.746 INFO:teuthology.orchestra.run.smithi062.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 1.6 MB/s | 125 kB 00:00 2024-04-07T14:32:27.771 INFO:teuthology.orchestra.run.smithi062.stdout:(11/36): python3-ply-3.11-14.el9.noarch.rpm 605 kB/s | 106 kB 00:00 2024-04-07T14:32:27.798 INFO:teuthology.orchestra.run.smithi062.stdout:(12/36): python3-urllib3-1.26.5-5.el9.noarch.rp 2.8 MB/s | 215 kB 00:00 2024-04-07T14:32:27.972 INFO:teuthology.orchestra.run.smithi062.stdout:(13/36): python3-markupsafe-1.1.1-12.el9.x86_64 199 kB/s | 35 kB 00:00 2024-04-07T14:32:28.013 INFO:teuthology.orchestra.run.smithi062.stdout:(14/36): python3-mako-1.1.4-6.el9.noarch.rpm 711 kB/s | 172 kB 00:00 2024-04-07T14:32:28.047 INFO:teuthology.orchestra.run.smithi062.stdout:(15/36): python3-pytz-2021.1-5.el9.noarch.rpm 678 kB/s | 51 kB 00:00 2024-04-07T14:32:28.089 INFO:teuthology.orchestra.run.smithi062.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 553 kB/s | 42 kB 00:00 2024-04-07T14:32:28.115 INFO:teuthology.orchestra.run.smithi062.stdout:(17/36): lua-devel-5.4.4-4.el9.x86_64.rpm 332 kB/s | 22 kB 00:00 2024-04-07T14:32:28.140 INFO:teuthology.orchestra.run.smithi062.stdout:(18/36): lua-5.4.4-4.el9.x86_64.rpm 479 kB/s | 188 kB 00:00 2024-04-07T14:32:28.269 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:00:44 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:28.440 INFO:teuthology.orchestra.run.smithi062.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 134 kB/s | 43 kB 00:00 2024-04-07T14:32:28.540 INFO:teuthology.orchestra.run.smithi062.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 335 kB/s | 151 kB 00:00 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.557 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:28.558 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.559 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:28.560 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.561 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:28.562 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.563 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.564 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.565 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.566 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:28.617 INFO:teuthology.orchestra.run.smithi062.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 361 kB/s | 172 kB 00:00 2024-04-07T14:32:28.629 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:28.631 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: ceph x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 6.6 k 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mds x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 2.4 M 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 1.5 M 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 249 k 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mon x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 4.7 M 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-osd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 17 M 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-07T14:32:28.632 INFO:teuthology.orchestra.run.smithi111.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-collections 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-07T14:32:28.633 INFO:teuthology.orchestra.run.smithi111.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-07T14:32:28.634 INFO:teuthology.orchestra.run.smithi111.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout:Install 36 Packages 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:28.635 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 30 M 2024-04-07T14:32:28.636 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 108 M 2024-04-07T14:32:28.636 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:32:28.649 INFO:teuthology.orchestra.run.smithi062.stdout:(22/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 98 kB/s | 11 kB 00:00 2024-04-07T14:32:28.716 INFO:teuthology.orchestra.run.smithi062.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 176 kB/s | 18 kB 00:00 2024-04-07T14:32:28.750 INFO:teuthology.orchestra.run.smithi062.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 231 kB/s | 23 kB 00:00 2024-04-07T14:32:28.816 INFO:teuthology.orchestra.run.smithi062.stdout:(25/36): python3-cherrypy-18.6.1-2.el9.noarch.r 953 kB/s | 358 kB 00:00 2024-04-07T14:32:28.842 INFO:teuthology.orchestra.run.smithi062.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 155 kB/s | 19 kB 00:00 2024-04-07T14:32:28.859 INFO:teuthology.orchestra.run.smithi062.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 180 kB/s | 20 kB 00:00 2024-04-07T14:32:28.951 INFO:teuthology.orchestra.run.smithi062.stdout:(28/36): python3-logutils-0.3.5-21.el9.noarch.r 345 kB/s | 46 kB 00:00 2024-04-07T14:32:28.967 INFO:teuthology.orchestra.run.smithi062.stdout:(29/36): python3-more-itertools-8.12.0-2.el9.no 627 kB/s | 79 kB 00:00 2024-04-07T14:32:29.085 INFO:teuthology.orchestra.run.smithi062.stdout:(30/36): python3-portend-3.1.0-2.el9.noarch.rpm 123 kB/s | 16 kB 00:00 2024-04-07T14:32:29.110 INFO:teuthology.orchestra.run.smithi062.stdout:(31/36): python3-pecan-1.4.2-3.el9.noarch.rpm 1.1 MB/s | 272 kB 00:00 2024-04-07T14:32:29.135 INFO:teuthology.orchestra.run.smithi062.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 537 kB/s | 90 kB 00:00 2024-04-07T14:32:29.210 INFO:teuthology.orchestra.run.smithi062.stdout:(33/36): python3-tempora-5.0.0-2.el9.noarch.rpm 285 kB/s | 36 kB 00:00 2024-04-07T14:32:29.244 INFO:teuthology.orchestra.run.smithi062.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 1.7 MB/s | 230 kB 00:00 2024-04-07T14:32:29.319 INFO:teuthology.orchestra.run.smithi062.stdout:(35/36): python3-zc-lockfile-2.0-10.el9.noarch. 184 kB/s | 20 kB 00:00 2024-04-07T14:32:29.394 INFO:teuthology.orchestra.run.smithi062.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 1.6 MB/s | 427 kB 00:00 2024-04-07T14:32:29.398 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:29.398 INFO:teuthology.orchestra.run.smithi062.stdout:Total 8.0 MB/s | 30 MB 00:03 2024-04-07T14:32:29.413 INFO:teuthology.orchestra.run.smithi111.stdout:(1/36): ceph-19.0.0-2578.ge5c885fe.el9.x86_64.r 28 kB/s | 6.6 kB 00:00 2024-04-07T14:32:29.539 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:32:29.579 INFO:teuthology.orchestra.run.smithi111.stdout:(2/36): ceph-mds-19.0.0-2578.ge5c885fe.el9.x86_ 5.9 MB/s | 2.4 MB 00:00 2024-04-07T14:32:29.581 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:32:29.581 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:32:29.722 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/6 2024-04-07T14:32:29.801 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T14:32:30.023 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:32:30.023 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:32:30.063 INFO:teuthology.orchestra.run.smithi111.stdout:(3/36): ceph-mgr-19.0.0-2578.ge5c885fe.el9.x86_ 1.7 MB/s | 1.5 MB 00:00 2024-04-07T14:32:30.413 INFO:teuthology.orchestra.run.smithi111.stdout:(4/36): ceph-osd-19.0.0-2578.ge5c885fe.el9.x86_ 20 MB/s | 17 MB 00:00 2024-04-07T14:32:30.438 INFO:teuthology.orchestra.run.smithi111.stdout:(5/36): ceph-mgr-modules-core-19.0.0-2578.ge5c8 663 kB/s | 249 kB 00:00 2024-04-07T14:32:30.714 INFO:teuthology.orchestra.run.smithi111.stdout:(6/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 844 kB/s | 253 kB 00:00 2024-04-07T14:32:30.772 INFO:teuthology.orchestra.run.smithi111.stdout:(7/36): python3-ply-3.11-14.el9.noarch.rpm 1.8 MB/s | 106 kB 00:00 2024-04-07T14:32:30.814 INFO:teuthology.orchestra.run.smithi111.stdout:(8/36): python3-cryptography-36.0.1-4.el9.x86_6 3.3 MB/s | 1.2 MB 00:00 2024-04-07T14:32:30.831 INFO:teuthology.orchestra.run.smithi111.stdout:(9/36): python3-pycparser-2.20-6.el9.noarch.rpm 2.3 MB/s | 135 kB 00:00 2024-04-07T14:32:30.874 INFO:teuthology.orchestra.run.smithi111.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 2.1 MB/s | 125 kB 00:00 2024-04-07T14:32:30.899 INFO:teuthology.orchestra.run.smithi111.stdout:(11/36): python3-urllib3-1.26.5-5.el9.noarch.rp 3.1 MB/s | 215 kB 00:00 2024-04-07T14:32:31.082 INFO:teuthology.orchestra.run.smithi111.stdout:(12/36): ceph-mon-19.0.0-2578.ge5c885fe.el9.x86 2.8 MB/s | 4.7 MB 00:01 2024-04-07T14:32:31.341 INFO:teuthology.orchestra.run.smithi111.stdout:(13/36): python3-markupsafe-1.1.1-12.el9.x86_64 134 kB/s | 35 kB 00:00 2024-04-07T14:32:31.341 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:32:31.374 INFO:teuthology.orchestra.run.smithi111.stdout:(14/36): lua-5.4.4-4.el9.x86_64.rpm 376 kB/s | 188 kB 00:00 2024-04-07T14:32:31.391 INFO:teuthology.orchestra.run.smithi111.stdout:(15/36): python3-mako-1.1.4-6.el9.noarch.rpm 349 kB/s | 172 kB 00:00 2024-04-07T14:32:31.414 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-07T14:32:31.457 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-07T14:32:31.475 INFO:teuthology.orchestra.run.smithi111.stdout:(16/36): python3-toml-0.10.2-6.el9.noarch.rpm 415 kB/s | 42 kB 00:00 2024-04-07T14:32:31.483 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-07T14:32:31.517 INFO:teuthology.orchestra.run.smithi111.stdout:(17/36): python3-pytz-2021.1-5.el9.noarch.rpm 290 kB/s | 51 kB 00:00 2024-04-07T14:32:31.549 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-07T14:32:31.599 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-07T14:32:31.632 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-07T14:32:31.727 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-07T14:32:31.805 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-07T14:32:31.842 INFO:teuthology.orchestra.run.smithi111.stdout:(18/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 134 kB/s | 43 kB 00:00 2024-04-07T14:32:31.852 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-07T14:32:31.867 INFO:teuthology.orchestra.run.smithi111.stdout:(19/36): luarocks-3.9.2-1.el9.noarch.rpm 385 kB/s | 151 kB 00:00 2024-04-07T14:32:31.886 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-07T14:32:31.916 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-07T14:32:31.950 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-07T14:32:31.983 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-07T14:32:31.984 INFO:teuthology.orchestra.run.smithi111.stdout:(20/36): lua-devel-5.4.4-4.el9.x86_64.rpm 38 kB/s | 22 kB 00:00 2024-04-07T14:32:32.025 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-07T14:32:32.026 INFO:teuthology.orchestra.run.smithi111.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 934 kB/s | 172 kB 00:00 2024-04-07T14:32:32.051 INFO:teuthology.orchestra.run.smithi111.stdout:(22/36): python3-cherrypy-18.6.1-2.el9.noarch.r 1.9 MB/s | 358 kB 00:00 2024-04-07T14:32:32.068 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-07T14:32:32.102 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-07T14:32:32.140 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-07T14:32:32.143 INFO:teuthology.orchestra.run.smithi111.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 151 kB/s | 18 kB 00:00 2024-04-07T14:32:32.169 INFO:teuthology.orchestra.run.smithi111.stdout:(24/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 58 kB/s | 11 kB 00:00 2024-04-07T14:32:32.204 INFO:teuthology.orchestra.run.smithi111.stdout:(25/36): python3-jaraco-collections-3.0.0-8.el9 152 kB/s | 23 kB 00:00 2024-04-07T14:32:32.216 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-07T14:32:32.244 INFO:teuthology.orchestra.run.smithi111.stdout:(26/36): python3-jaraco-functools-3.5.0-2.el9.n 193 kB/s | 19 kB 00:00 2024-04-07T14:32:32.253 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 6/6 2024-04-07T14:32:32.253 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/6 2024-04-07T14:32:32.253 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/6 2024-04-07T14:32:32.253 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : jq-1.6-16.el9.x86_64 3/6 2024-04-07T14:32:32.253 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : oniguruma-6.9.6-1.el9.5.x86_64 4/6 2024-04-07T14:32:32.253 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : socat-1.7.4.1-5.el9.x86_64 5/6 2024-04-07T14:32:32.269 INFO:teuthology.orchestra.run.smithi111.stdout:(27/36): python3-jaraco-text-3.2.0-6.el9.noarch 196 kB/s | 20 kB 00:00 2024-04-07T14:32:32.336 INFO:teuthology.orchestra.run.smithi111.stdout:(28/36): python3-more-itertools-8.12.0-2.el9.no 859 kB/s | 79 kB 00:00 2024-04-07T14:32:32.357 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-07T14:32:32.372 INFO:teuthology.orchestra.run.smithi111.stdout:(29/36): python3-logutils-0.3.5-21.el9.noarch.r 276 kB/s | 46 kB 00:00 2024-04-07T14:32:32.397 INFO:teuthology.orchestra.run.smithi111.stdout:(30/36): python3-pecan-1.4.2-3.el9.noarch.rpm 2.1 MB/s | 272 kB 00:00 2024-04-07T14:32:32.423 INFO:teuthology.orchestra.run.smithi111.stdout:(31/36): python3-portend-3.1.0-2.el9.noarch.rpm 190 kB/s | 16 kB 00:00 2024-04-07T14:32:32.443 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-07T14:32:32.481 INFO:teuthology.orchestra.run.smithi111.stdout:(32/36): python3-tempora-5.0.0-2.el9.noarch.rpm 428 kB/s | 36 kB 00:00 2024-04-07T14:32:32.494 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-07T14:32:32.532 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-07T14:32:32.540 INFO:teuthology.orchestra.run.smithi111.stdout:(33/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 537 kB/s | 90 kB 00:00 2024-04-07T14:32:32.565 INFO:teuthology.orchestra.run.smithi111.stdout:(34/36): python3-webob-1.8.7-6.el9.noarch.rpm 1.6 MB/s | 230 kB 00:00 2024-04-07T14:32:32.591 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-07T14:32:32.607 INFO:teuthology.orchestra.run.smithi111.stdout:(35/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 3.3 MB/s | 427 kB 00:00 2024-04-07T14:32:32.654 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-07T14:32:32.657 INFO:teuthology.orchestra.run.smithi111.stdout:(36/36): python3-zc-lockfile-2.0-10.el9.noarch. 217 kB/s | 20 kB 00:00 2024-04-07T14:32:32.659 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:32.659 INFO:teuthology.orchestra.run.smithi111.stdout:Total 7.5 MB/s | 30 MB 00:04 2024-04-07T14:32:32.769 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 6/6 2024-04-07T14:32:32.769 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:32.769 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:32:32.769 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-test-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:32.769 INFO:teuthology.orchestra.run.smithi076.stdout: jq-1.6-16.el9.x86_64 2024-04-07T14:32:32.770 INFO:teuthology.orchestra.run.smithi076.stdout: libcephsqlite-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:32.770 INFO:teuthology.orchestra.run.smithi076.stdout: oniguruma-6.9.6-1.el9.5.x86_64 2024-04-07T14:32:32.770 INFO:teuthology.orchestra.run.smithi076.stdout: socat-1.7.4.1-5.el9.x86_64 2024-04-07T14:32:32.770 INFO:teuthology.orchestra.run.smithi076.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-04-07T14:32:32.770 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:32.770 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:32.799 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:32:32.838 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:32:32.838 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:32:32.857 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-07T14:32:32.903 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-07T14:32:32.983 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-07T14:32:33.004 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph 2024-04-07T14:32:33.073 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-07T14:32:33.109 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-07T14:32:33.232 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-07T14:32:33.241 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:32:33.242 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:32:33.399 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 31/36 2024-04-07T14:32:33.428 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T14:32:33.453 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T14:32:33.453 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:33.453 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-07T14:32:33.453 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T14:32:33.453 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T14:32:33.453 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:33.602 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:43 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:33.891 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.892 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.893 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:33.894 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:33.895 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:33.896 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.897 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:33.898 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.899 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:33.900 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.900 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.900 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.900 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:33.962 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout: ceph x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 6.6 k 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mds x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 2.4 M 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 1.5 M 2024-04-07T14:32:33.965 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-modules-core noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 249 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mon x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 4.7 M 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-osd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 17 M 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: luarocks noarch 3.9.2-1.el9 epel 151 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-collections 2024-04-07T14:32:33.966 INFO:teuthology.orchestra.run.smithi076.stdout: noarch 3.0.0-8.el9 epel 23 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-04-07T14:32:33.967 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: python3-urllib3 noarch 1.26.5-5.el9 baseos 215 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout:Install 36 Packages 2024-04-07T14:32:33.968 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:33.969 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 30 M 2024-04-07T14:32:33.969 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 108 M 2024-04-07T14:32:33.969 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:32:34.476 INFO:teuthology.orchestra.run.smithi076.stdout:(1/36): ceph-19.0.0-2578.ge5c885fe.el9.x86_64.r 32 kB/s | 6.6 kB 00:00 2024-04-07T14:32:34.577 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:32:34.601 INFO:teuthology.orchestra.run.smithi076.stdout:(2/36): ceph-mgr-19.0.0-2578.ge5c885fe.el9.x86_ 4.5 MB/s | 1.5 MB 00:00 2024-04-07T14:32:34.643 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-07T14:32:34.682 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-07T14:32:34.712 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-07T14:32:34.783 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-07T14:32:34.828 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-07T14:32:34.861 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-07T14:32:34.953 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-07T14:32:34.971 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T14:32:34.997 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T14:32:34.997 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:34.997 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-07T14:32:34.997 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T14:32:34.998 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T14:32:34.998 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:35.022 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-07T14:32:35.064 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-07T14:32:35.098 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-07T14:32:35.128 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-07T14:32:35.163 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-07T14:32:35.196 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-07T14:32:35.235 INFO:teuthology.orchestra.run.smithi076.stdout:(3/36): ceph-mds-19.0.0-2578.ge5c885fe.el9.x86_ 2.5 MB/s | 2.4 MB 00:00 2024-04-07T14:32:35.236 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-07T14:32:35.272 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-07T14:32:35.306 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-07T14:32:35.335 INFO:teuthology.orchestra.run.smithi076.stdout:(4/36): ceph-mgr-modules-core-19.0.0-2578.ge5c8 2.4 MB/s | 249 kB 00:00 2024-04-07T14:32:35.344 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-07T14:32:35.417 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-07T14:32:35.463 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T14:32:35.486 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T14:32:35.486 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:35.486 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-07T14:32:35.486 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T14:32:35.486 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T14:32:35.486 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:35.552 INFO:teuthology.orchestra.run.smithi076.stdout:(5/36): ceph-osd-19.0.0-2578.ge5c885fe.el9.x86_ 18 MB/s | 17 MB 00:00 2024-04-07T14:32:35.563 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-07T14:32:35.644 INFO:teuthology.orchestra.run.smithi076.stdout:(6/36): python3-cffi-1.14.5-5.el9.x86_64.rpm 821 kB/s | 253 kB 00:00 2024-04-07T14:32:35.644 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-07T14:32:35.686 INFO:teuthology.orchestra.run.smithi076.stdout:(7/36): python3-ply-3.11-14.el9.noarch.rpm 2.5 MB/s | 106 kB 00:00 2024-04-07T14:32:35.697 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-07T14:32:35.722 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T14:32:35.736 INFO:teuthology.orchestra.run.smithi076.stdout:(8/36): python3-pycparser-2.20-6.el9.noarch.rpm 2.7 MB/s | 135 kB 00:00 2024-04-07T14:32:35.736 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-07T14:32:35.745 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T14:32:35.745 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:35.745 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-07T14:32:35.745 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T14:32:35.745 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T14:32:35.745 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:35.786 INFO:teuthology.orchestra.run.smithi076.stdout:(9/36): python3-cryptography-36.0.1-4.el9.x86_6 5.2 MB/s | 1.2 MB 00:00 2024-04-07T14:32:35.792 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-07T14:32:35.811 INFO:teuthology.orchestra.run.smithi076.stdout:(10/36): python3-requests-2.25.1-8.el9.noarch.r 1.6 MB/s | 125 kB 00:00 2024-04-07T14:32:35.814 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T14:32:35.837 INFO:teuthology.orchestra.run.smithi076.stdout:(11/36): python3-urllib3-1.26.5-5.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-04-07T14:32:35.849 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-07T14:32:35.904 INFO:teuthology.orchestra.run.smithi076.stdout:(12/36): ceph-mon-19.0.0-2578.ge5c885fe.el9.x86 3.3 MB/s | 4.7 MB 00:01 2024-04-07T14:32:35.996 INFO:teuthology.orchestra.run.smithi076.stdout:(13/36): lua-5.4.4-4.el9.x86_64.rpm 1.0 MB/s | 188 kB 00:00 2024-04-07T14:32:36.021 INFO:teuthology.orchestra.run.smithi076.stdout:(14/36): python3-markupsafe-1.1.1-12.el9.x86_64 296 kB/s | 35 kB 00:00 2024-04-07T14:32:36.038 INFO:teuthology.orchestra.run.smithi076.stdout:(15/36): python3-mako-1.1.4-6.el9.noarch.rpm 856 kB/s | 172 kB 00:00 2024-04-07T14:32:36.044 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-07T14:32:36.064 INFO:teuthology.orchestra.run.smithi076.stdout:(16/36): python3-pytz-2021.1-5.el9.noarch.rpm 756 kB/s | 51 kB 00:00 2024-04-07T14:32:36.089 INFO:teuthology.orchestra.run.smithi076.stdout:(17/36): lua-devel-5.4.4-4.el9.x86_64.rpm 443 kB/s | 22 kB 00:00 2024-04-07T14:32:36.090 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-07T14:32:36.114 INFO:teuthology.orchestra.run.smithi076.stdout:(18/36): python3-toml-0.10.2-6.el9.noarch.rpm 450 kB/s | 42 kB 00:00 2024-04-07T14:32:36.168 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-07T14:32:36.257 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-07T14:32:36.297 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-07T14:32:36.413 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-07T14:32:36.579 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 31/36 2024-04-07T14:32:36.608 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T14:32:36.633 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T14:32:36.633 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:36.633 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-07T14:32:36.633 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T14:32:36.633 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T14:32:36.633 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:36.664 INFO:teuthology.orchestra.run.smithi076.stdout:(19/36): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 75 kB/s | 43 kB 00:00 2024-04-07T14:32:36.823 INFO:teuthology.orchestra.run.smithi076.stdout:(20/36): luarocks-3.9.2-1.el9.noarch.rpm 199 kB/s | 151 kB 00:00 2024-04-07T14:32:36.848 INFO:teuthology.orchestra.run.smithi076.stdout:(21/36): python3-cheroot-8.6.0-4.el9.noarch.rpm 234 kB/s | 172 kB 00:00 2024-04-07T14:32:36.940 INFO:teuthology.orchestra.run.smithi076.stdout:(22/36): python3-jaraco-8.2.1-3.el9.noarch.rpm 91 kB/s | 11 kB 00:00 2024-04-07T14:32:36.966 INFO:teuthology.orchestra.run.smithi076.stdout:(23/36): python3-jaraco-classes-3.2.1-5.el9.noa 151 kB/s | 18 kB 00:00 2024-04-07T14:32:37.049 INFO:teuthology.orchestra.run.smithi076.stdout:(24/36): python3-jaraco-collections-3.0.0-8.el9 213 kB/s | 23 kB 00:00 2024-04-07T14:32:37.074 INFO:teuthology.orchestra.run.smithi076.stdout:(25/36): python3-jaraco-functools-3.5.0-2.el9.n 179 kB/s | 19 kB 00:00 2024-04-07T14:32:37.149 INFO:teuthology.orchestra.run.smithi076.stdout:(26/36): python3-jaraco-text-3.2.0-6.el9.noarch 196 kB/s | 20 kB 00:00 2024-04-07T14:32:37.175 INFO:teuthology.orchestra.run.smithi076.stdout:(27/36): python3-logutils-0.3.5-21.el9.noarch.r 460 kB/s | 46 kB 00:00 2024-04-07T14:32:37.225 INFO:teuthology.orchestra.run.smithi076.stdout:(28/36): python3-cherrypy-18.6.1-2.el9.noarch.r 639 kB/s | 358 kB 00:00 2024-04-07T14:32:37.326 INFO:teuthology.orchestra.run.smithi076.stdout:(29/36): python3-portend-3.1.0-2.el9.noarch.rpm 164 kB/s | 16 kB 00:00 2024-04-07T14:32:37.351 INFO:teuthology.orchestra.run.smithi076.stdout:(30/36): python3-more-itertools-8.12.0-2.el9.no 392 kB/s | 79 kB 00:00 2024-04-07T14:32:37.459 INFO:teuthology.orchestra.run.smithi076.stdout:(31/36): python3-tempora-5.0.0-2.el9.noarch.rpm 330 kB/s | 36 kB 00:00 2024-04-07T14:32:37.507 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 6/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-07T14:32:37.508 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-07T14:32:37.509 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-07T14:32:37.510 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-07T14:32:37.511 INFO:teuthology.orchestra.run.smithi076.stdout:(32/36): python3-pyOpenSSL-21.0.0-1.el9.noarch. 489 kB/s | 90 kB 00:00 2024-04-07T14:32:37.618 INFO:teuthology.orchestra.run.smithi076.stdout:(33/36): python3-pecan-1.4.2-3.el9.noarch.rpm 615 kB/s | 272 kB 00:00 2024-04-07T14:32:37.718 INFO:teuthology.orchestra.run.smithi076.stdout:(34/36): python3-zc-lockfile-2.0-10.el9.noarch. 200 kB/s | 20 kB 00:00 2024-04-07T14:32:37.802 INFO:teuthology.orchestra.run.smithi076.stdout:(35/36): python3-webob-1.8.7-6.el9.noarch.rpm 671 kB/s | 230 kB 00:00 2024-04-07T14:32:38.067 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T14:32:38.094 INFO:teuthology.orchestra.run.smithi076.stdout:(36/36): python3-werkzeug-2.0.3-3.el9.1.noarch. 732 kB/s | 427 kB 00:00 2024-04-07T14:32:38.094 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T14:32:38.094 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:38.094 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-07T14:32:38.095 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T14:32:38.095 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T14:32:38.095 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:38.098 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:38.098 INFO:teuthology.orchestra.run.smithi076.stdout:Total 7.3 MB/s | 30 MB 00:04 2024-04-07T14:32:38.234 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:32:38.274 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:32:38.274 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:38.500 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: lua-5.4.4-4.el9.x86_64 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-07T14:32:38.501 INFO:teuthology.orchestra.run.smithi062.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-ply-3.11-14.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-07T14:32:38.502 INFO:teuthology.orchestra.run.smithi062.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-07T14:32:38.503 INFO:teuthology.orchestra.run.smithi062.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-07T14:32:38.503 INFO:teuthology.orchestra.run.smithi062.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-07T14:32:38.503 INFO:teuthology.orchestra.run.smithi062.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-07T14:32:38.503 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:38.503 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:38.543 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T14:32:38.567 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T14:32:38.567 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:38.567 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-07T14:32:38.567 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T14:32:38.567 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T14:32:38.567 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:38.712 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:32:38.713 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:32:38.802 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T14:32:38.825 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T14:32:38.825 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:38.825 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-07T14:32:38.825 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T14:32:38.825 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T14:32:38.826 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:38.832 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-base 2024-04-07T14:32:38.883 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T14:32:39.458 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:00 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:39.767 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:39.768 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.769 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:39.770 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:39.771 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:39.772 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.773 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:39.774 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.775 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.776 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:39.776 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.776 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.776 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.776 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:39.776 INFO:teuthology.orchestra.run.smithi062.stdout:Package ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:32:39.840 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:39.841 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:32:39.841 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:39.913 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install cephadm 2024-04-07T14:32:40.066 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:32:40.121 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/36 2024-04-07T14:32:40.154 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/36 2024-04-07T14:32:40.182 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/36 2024-04-07T14:32:40.253 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 4/36 2024-04-07T14:32:40.306 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : luarocks-3.9.2-1.el9.noarch 5/36 2024-04-07T14:32:40.339 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 6/36 2024-04-07T14:32:40.431 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 7/36 2024-04-07T14:32:40.509 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 8/36 2024-04-07T14:32:40.513 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:01 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:40.550 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 9/36 2024-04-07T14:32:40.585 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 10/36 2024-04-07T14:32:40.615 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 11/36 2024-04-07T14:32:40.641 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 12/36 2024-04-07T14:32:40.674 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 13/36 2024-04-07T14:32:40.715 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/36 2024-04-07T14:32:40.749 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 15/36 2024-04-07T14:32:40.784 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 16/36 2024-04-07T14:32:40.793 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T14:32:40.793 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/36 2024-04-07T14:32:40.793 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 6/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-07T14:32:40.794 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-07T14:32:40.795 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-07T14:32:40.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-07T14:32:40.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-07T14:32:40.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-07T14:32:40.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-07T14:32:40.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-07T14:32:40.796 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.821 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:40.822 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:40.823 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.824 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:40.825 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.826 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.827 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:40.828 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:40.829 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 17/36 2024-04-07T14:32:40.892 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:40.893 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:40.893 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:32:40.893 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:40.893 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:32:40.893 INFO:teuthology.orchestra.run.smithi062.stdout: cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 762 k 2024-04-07T14:32:40.893 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 762 k 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 768 k 2024-04-07T14:32:40.894 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:32:40.895 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 18/36 2024-04-07T14:32:41.032 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 19/36 2024-04-07T14:32:41.114 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 20/36 2024-04-07T14:32:41.167 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-urllib3-1.26.5-5.el9.noarch 21/36 2024-04-07T14:32:41.206 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 22/36 2024-04-07T14:32:41.254 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/36 2024-04-07T14:32:41.310 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/36 2024-04-07T14:32:41.321 INFO:teuthology.orchestra.run.smithi062.stdout:cephadm-19.0.0-2578.ge5c885fe.el9.noarch.rpm 1.7 MB/s | 762 kB 00:00 2024-04-07T14:32:41.321 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:41.322 INFO:teuthology.orchestra.run.smithi062.stdout:Total 1.7 MB/s | 762 kB 00:00 2024-04-07T14:32:41.322 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:32:41.327 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:32:41.327 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:32:41.333 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:32:41.334 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:32:41.408 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:32:41.497 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/36 2024-04-07T14:32:41.552 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 26/36 2024-04-07T14:32:41.630 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/36 2024-04-07T14:32:41.718 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 28/36 2024-04-07T14:32:41.759 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/36 2024-04-07T14:32:41.836 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:41.875 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/36 2024-04-07T14:32:41.877 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-07T14:32:41.877 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:41.877 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:32:41.877 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: lua-5.4.4-4.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-07T14:32:41.878 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-ply-3.11-14.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-07T14:32:41.879 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:41.880 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:41.919 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:42.041 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 31/36 2024-04-07T14:32:42.070 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T14:32:42.094 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 32/36 2024-04-07T14:32:42.094 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:42.094 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-04-07T14:32:42.094 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T14:32:42.094 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-04-07T14:32:42.094 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:42.263 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-base 2024-04-07T14:32:42.303 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:42.649 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:42.649 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:42.649 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:32:42.649 INFO:teuthology.orchestra.run.smithi062.stdout: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:42.649 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:42.650 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:42.855 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:00:58 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:42.862 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-immutable-object-cache 2024-04-07T14:32:43.144 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:43.144 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.145 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:43.146 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:43.147 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:43.148 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:43.149 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:43.150 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.151 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.152 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:43.153 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.153 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.153 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.153 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.153 INFO:teuthology.orchestra.run.smithi111.stdout:Package ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:32:43.211 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:43.212 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:32:43.212 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:43.276 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install cephadm 2024-04-07T14:32:43.469 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:04 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:43.529 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T14:32:43.555 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 33/36 2024-04-07T14:32:43.555 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:43.555 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-04-07T14:32:43.556 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T14:32:43.556 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-04-07T14:32:43.556 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:43.777 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:43.777 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:43.777 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:43.777 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.777 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:43.777 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.778 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.779 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.780 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.781 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:43.782 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.783 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:43.784 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.785 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:43.786 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.786 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.786 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.786 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:43.848 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repo Size 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 145 k 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:43.849 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:32:43.850 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:43.850 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 145 k 2024-04-07T14:32:43.850 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 435 k 2024-04-07T14:32:43.850 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:32:43.867 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:00:59 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:44.005 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T14:32:44.028 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 34/36 2024-04-07T14:32:44.028 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:44.028 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-04-07T14:32:44.028 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T14:32:44.028 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-04-07T14:32:44.028 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:44.158 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:44.158 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:44.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:44.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:44.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.167 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:44.169 INFO:teuthology.orchestra.run.smithi062.stdout:ceph-immutable-object-cache-19.0.0-2578.ge5c885 454 kB/s | 145 kB 00:00 2024-04-07T14:32:44.169 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:44.170 INFO:teuthology.orchestra.run.smithi062.stdout:Total 452 kB/s | 145 kB 00:00 2024-04-07T14:32:44.170 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:32:44.178 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:32:44.178 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:32:44.228 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:44.229 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:44.229 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:32:44.229 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:44.229 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:32:44.229 INFO:teuthology.orchestra.run.smithi111.stdout: cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 762 k 2024-04-07T14:32:44.229 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 762 k 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 768 k 2024-04-07T14:32:44.230 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:32:44.233 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:32:44.233 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:32:44.256 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T14:32:44.279 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 35/36 2024-04-07T14:32:44.279 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:44.279 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-04-07T14:32:44.279 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T14:32:44.279 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-04-07T14:32:44.279 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:44.345 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T14:32:44.376 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:32:44.437 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:44.461 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:44.461 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:44.461 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-07T14:32:44.461 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:44.651 INFO:teuthology.orchestra.run.smithi111.stdout:cephadm-19.0.0-2578.ge5c885fe.el9.noarch.rpm 1.8 MB/s | 762 kB 00:00 2024-04-07T14:32:44.652 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:44.652 INFO:teuthology.orchestra.run.smithi111.stdout:Total 1.8 MB/s | 762 kB 00:00 2024-04-07T14:32:44.652 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:32:44.657 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:32:44.657 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:32:44.663 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:32:44.663 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:32:44.741 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:32:45.164 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:45.256 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:45.400 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:45.400 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:45.400 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:32:45.400 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:45.400 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:45.400 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:45.650 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:45.674 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-mgr 2024-04-07T14:32:45.947 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:45.947 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:45.947 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:32:45.947 INFO:teuthology.orchestra.run.smithi111.stdout: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:45.947 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:45.947 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:46.123 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 36/36 2024-04-07T14:32:46.123 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/36 2024-04-07T14:32:46.123 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 3/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 4/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 5/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9. 6/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-urllib3-1.26.5-5.el9.noarch 12/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : lua-5.4.4-4.el9.x86_64 13/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 14/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 15/36 2024-04-07T14:32:46.124 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 16/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 17/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 18/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : luarocks-3.9.2-1.el9.noarch 19/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 20/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 21/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 22/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 23/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 24/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 25/36 2024-04-07T14:32:46.125 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 26/36 2024-04-07T14:32:46.126 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 27/36 2024-04-07T14:32:46.126 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 28/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 29/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 30/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 31/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 32/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 33/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 34/36 2024-04-07T14:32:46.127 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 35/36 2024-04-07T14:32:46.212 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-immutable-object-cache 2024-04-07T14:32:46.282 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:07 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:46.586 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:46.586 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:46.586 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:46.586 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.586 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.587 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.588 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.589 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:46.590 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.591 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.592 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:46.593 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.594 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:46.595 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.595 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.595 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.595 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:46.595 INFO:teuthology.orchestra.run.smithi062.stdout:Package ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:32:46.661 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:46.663 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:32:46.663 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:46.731 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-mgr-dashboard 2024-04-07T14:32:46.820 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:02 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:47.098 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 36/36 2024-04-07T14:32:47.098 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:47.098 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:32:47.098 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:47.098 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mds-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-modules-core-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mon-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-osd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: lua-5.4.4-4.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: lua-devel-5.4.4-4.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: luarocks-3.9.2-1.el9.noarch 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-04-07T14:32:47.099 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-mako-1.1.4-6.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-ply-3.11-14.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-portend-3.1.0-2.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pycparser-2.20-6.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pytz-2021.1-5.el9.noarch 2024-04-07T14:32:47.100 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests-2.25.1-8.el9.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: python3-toml-0.10.2-6.el9.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: python3-urllib3-1.26.5-5.el9.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: python3-webob-1.8.7-6.el9.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:47.101 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:47.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:47.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:47.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:47.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:47.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:47.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:47.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.179 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:47.198 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:47.198 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repo Size 2024-04-07T14:32:47.198 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:47.198 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:32:47.198 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 145 k 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 145 k 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 435 k 2024-04-07T14:32:47.199 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:32:47.340 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:08 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:47.399 INFO:teuthology.orchestra.run.smithi111.stdout:ceph-immutable-object-cache-19.0.0-2578.ge5c885 665 kB/s | 145 kB 00:00 2024-04-07T14:32:47.400 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:47.400 INFO:teuthology.orchestra.run.smithi111.stdout:Total 660 kB/s | 145 kB 00:00 2024-04-07T14:32:47.400 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:32:47.408 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:32:47.408 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:32:47.460 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:32:47.460 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:32:47.506 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-base 2024-04-07T14:32:47.597 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:32:47.643 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:47.643 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:47.643 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:47.643 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.643 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.644 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:47.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:47.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:47.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:47.658 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:47.683 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:47.683 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:47.683 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-07T14:32:47.683 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:47.715 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:47.717 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:47.717 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:32:47.717 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:47.717 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:32:47.717 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 3.5 M 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 34 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 16 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-07T14:32:47.718 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:32:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:32:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:Install 12 Packages 2024-04-07T14:32:47.719 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 8.6 M 2024-04-07T14:32:47.719 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 104 M 2024-04-07T14:32:47.720 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:32:48.099 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:58 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.388 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:48.389 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.390 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:48.390 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.390 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:48.390 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.390 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:48.390 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.391 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:48.391 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.391 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:48.391 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.391 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:48.391 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:48.392 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.393 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.394 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:48.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:48.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:48.395 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.395 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.396 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.397 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.398 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.399 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.400 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:48.401 INFO:teuthology.orchestra.run.smithi076.stdout:Package ceph-base-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:32:48.455 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:48.457 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:32:48.457 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:48.545 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install cephadm 2024-04-07T14:32:48.715 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:48.715 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:48.716 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:32:48.716 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:48.716 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:48.716 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:48.723 INFO:teuthology.orchestra.run.smithi062.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2578.ge5c 67 kB/s | 16 kB 00:00 2024-04-07T14:32:48.766 INFO:teuthology.orchestra.run.smithi062.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2578.ge5 118 kB/s | 34 kB 00:00 2024-04-07T14:32:48.932 INFO:teuthology.orchestra.run.smithi062.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2578.ge5c885f 7.8 MB/s | 3.5 MB 00:00 2024-04-07T14:32:48.969 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-mgr 2024-04-07T14:32:49.172 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:00:59 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:49.374 INFO:teuthology.orchestra.run.smithi062.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 442 kB/s | 269 kB 00:00 2024-04-07T14:32:49.495 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:49.496 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:49.497 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.498 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:49.499 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:49.500 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.501 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.502 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.503 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.504 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.541 INFO:teuthology.orchestra.run.smithi062.stdout:(5/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.2 MB/s | 1.0 MB 00:00 2024-04-07T14:32:49.565 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:05 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:49.566 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:49.566 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout: cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 762 k 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:32:49.567 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:49.568 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 762 k 2024-04-07T14:32:49.568 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 768 k 2024-04-07T14:32:49.568 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:32:49.675 INFO:teuthology.orchestra.run.smithi062.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 146 kB/s | 19 kB 00:00 2024-04-07T14:32:49.700 INFO:teuthology.orchestra.run.smithi062.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.6 MB/s | 548 kB 00:00 2024-04-07T14:32:49.742 INFO:teuthology.orchestra.run.smithi062.stdout:(8/12): protobuf-compiler-3.14.0-13.el9.x86_64. 1.0 MB/s | 863 kB 00:00 2024-04-07T14:32:49.776 INFO:teuthology.orchestra.run.smithi062.stdout:(9/12): python3-grpcio-tools-1.46.7-10.el9.x86_ 1.9 MB/s | 144 kB 00:00 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.853 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:49.854 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:49.855 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.856 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:49.857 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.858 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:49.859 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.860 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.861 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:49.862 INFO:teuthology.orchestra.run.smithi062.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.2 MB/s | 188 kB 00:00 2024-04-07T14:32:49.862 INFO:teuthology.orchestra.run.smithi111.stdout:Package ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:32:49.884 INFO:teuthology.orchestra.run.smithi062.stdout:(11/12): python3-repoze-lru-0.7-16.el9.noarch.r 216 kB/s | 31 kB 00:00 2024-04-07T14:32:49.919 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:49.921 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:32:49.921 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:49.983 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-mgr-dashboard 2024-04-07T14:32:50.000 INFO:teuthology.orchestra.run.smithi076.stdout:cephadm-19.0.0-2578.ge5c885fe.el9.noarch.rpm 1.7 MB/s | 762 kB 00:00 2024-04-07T14:32:50.001 INFO:teuthology.orchestra.run.smithi062.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 6.2 MB/s | 2.0 MB 00:00 2024-04-07T14:32:50.001 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:50.002 INFO:teuthology.orchestra.run.smithi076.stdout:Total 1.7 MB/s | 762 kB 00:00 2024-04-07T14:32:50.002 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:32:50.002 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:50.002 INFO:teuthology.orchestra.run.smithi062.stdout:Total 3.8 MB/s | 8.6 MB 00:02 2024-04-07T14:32:50.006 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:32:50.006 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:32:50.012 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:32:50.013 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:32:50.052 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:32:50.071 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:32:50.071 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:32:50.085 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:32:50.283 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:32:50.283 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:32:50.513 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:50.593 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:06 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:50.605 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:50.877 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:50.903 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:50.904 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.905 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:50.906 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.907 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.908 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.909 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.910 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.911 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:50.961 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-07T14:32:50.974 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:50.975 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:50.975 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:32:50.975 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:50.975 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:32:50.975 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 3.5 M 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 34 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 16 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:50.976 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:32:50.977 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:32:50.977 INFO:teuthology.orchestra.run.smithi111.stdout:Install 12 Packages 2024-04-07T14:32:50.977 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:50.977 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 8.6 M 2024-04-07T14:32:50.977 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 104 M 2024-04-07T14:32:50.977 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:32:50.996 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-07T14:32:51.002 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:51.043 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-07T14:32:51.072 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-07T14:32:51.177 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-07T14:32:51.311 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-07T14:32:51.311 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/1 2024-04-07T14:32:51.311 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:51.312 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:32:51.312 INFO:teuthology.orchestra.run.smithi076.stdout: cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:51.312 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:51.312 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:51.403 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-07T14:32:51.444 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-07T14:32:51.472 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-07T14:32:51.505 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 10/12 2024-04-07T14:32:51.536 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-immutable-object-cache 2024-04-07T14:32:51.686 INFO:teuthology.orchestra.run.smithi111.stdout:(1/12): ceph-prometheus-alerts-19.0.0-2578.ge5c 68 kB/s | 16 kB 00:00 2024-04-07T14:32:51.703 INFO:teuthology.orchestra.run.smithi111.stdout:(2/12): ceph-grafana-dashboards-19.0.0-2578.ge5 132 kB/s | 34 kB 00:00 2024-04-07T14:32:51.895 INFO:teuthology.orchestra.run.smithi111.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2578.ge5c885f 7.9 MB/s | 3.5 MB 00:00 2024-04-07T14:32:52.145 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:02 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:52.162 INFO:teuthology.orchestra.run.smithi111.stdout:(4/12): protobuf-compiler-3.14.0-13.el9.x86_64. 3.2 MB/s | 863 kB 00:00 2024-04-07T14:32:52.287 INFO:teuthology.orchestra.run.smithi111.stdout:(5/12): python3-protobuf-3.14.0-13.el9.noarch.r 461 kB/s | 269 kB 00:00 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.430 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.431 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:52.432 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.433 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.434 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.435 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.436 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:52.437 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.438 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:52.471 INFO:teuthology.orchestra.run.smithi111.stdout:(6/12): protobuf-3.14.0-13.el9.x86_64.rpm 1.3 MB/s | 1.0 MB 00:00 2024-04-07T14:32:52.497 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-immutable-object-cache x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 145 k 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:52.498 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:32:52.499 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:52.499 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:32:52.499 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:52.499 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 145 k 2024-04-07T14:32:52.499 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 435 k 2024-04-07T14:32:52.499 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:32:52.530 INFO:teuthology.orchestra.run.smithi111.stdout:(7/12): grpc-data-1.46.7-10.el9.noarch.rpm 81 kB/s | 19 kB 00:00 2024-04-07T14:32:52.605 INFO:teuthology.orchestra.run.smithi111.stdout:(8/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.2 MB/s | 548 kB 00:00 2024-04-07T14:32:52.610 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 11/12 2024-04-07T14:32:52.647 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T14:32:52.680 INFO:teuthology.orchestra.run.smithi111.stdout:(9/12): python3-repoze-lru-0.7-16.el9.noarch.rp 409 kB/s | 31 kB 00:00 2024-04-07T14:32:52.707 INFO:teuthology.orchestra.run.smithi076.stdout:ceph-immutable-object-cache-19.0.0-2578.ge5c885 699 kB/s | 145 kB 00:00 2024-04-07T14:32:52.707 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:52.708 INFO:teuthology.orchestra.run.smithi076.stdout:Total 695 kB/s | 145 kB 00:00 2024-04-07T14:32:52.708 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:32:52.715 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:32:52.715 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:32:52.764 INFO:teuthology.orchestra.run.smithi111.stdout:(10/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.2 MB/s | 188 kB 00:00 2024-04-07T14:32:52.767 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:32:52.767 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:32:52.789 INFO:teuthology.orchestra.run.smithi111.stdout:(11/12): python3-grpcio-tools-1.46.7-10.el9.x86 615 kB/s | 144 kB 00:00 2024-04-07T14:32:52.914 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:32:52.974 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:52.998 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:52.998 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:32:52.999 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-04-07T14:32:52.999 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:53.056 INFO:teuthology.orchestra.run.smithi111.stdout:(12/12): python3-grpcio-1.46.7-10.el9.x86_64.rp 3.5 MB/s | 2.0 MB 00:00 2024-04-07T14:32:53.060 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:53.060 INFO:teuthology.orchestra.run.smithi111.stdout:Total 4.2 MB/s | 8.6 MB 00:02 2024-04-07T14:32:53.107 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:32:53.125 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:32:53.125 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:32:53.311 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:32:53.311 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:32:53.836 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:32:53.915 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-07T14:32:53.939 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T14:32:53.939 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 1/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 2/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 3/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-07T14:32:53.940 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-07T14:32:53.958 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-07T14:32:54.005 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-07T14:32:54.019 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe. 1/1 2024-04-07T14:32:54.019 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:54.019 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:32:54.019 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-immutable-object-cache-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:32:54.019 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:54.019 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:54.044 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-07T14:32:54.146 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-07T14:32:54.269 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:54.307 INFO:teuthology.orchestra.run.smithi062.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:54.308 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:32:54.327 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr 2024-04-07T14:32:54.362 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-07T14:32:54.406 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-07T14:32:54.436 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-07T14:32:54.467 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 10/12 2024-04-07T14:32:54.554 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-07T14:32:54.935 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:04 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:55.157 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:16 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:32:55.224 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:55.224 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:55.224 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:55.224 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.224 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:55.224 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.225 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:55.226 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:55.227 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:55.228 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.229 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.230 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.231 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.232 INFO:teuthology.orchestra.run.smithi076.stdout:Package ceph-mgr-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:32:55.292 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:55.293 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:32:55.293 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:32:55.372 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-dashboard 2024-04-07T14:32:55.464 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:32:55.464 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:32:55.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:32:55.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:32:55.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.473 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:55.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:55.513 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 11/12 2024-04-07T14:32:55.537 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:32:55.538 INFO:teuthology.orchestra.run.smithi062.stdout:======================================================================================= 2024-04-07T14:32:55.538 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:32:55.538 INFO:teuthology.orchestra.run.smithi062.stdout:======================================================================================= 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 7.4 M 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-07T14:32:55.539 INFO:teuthology.orchestra.run.smithi062.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout:======================================================================================= 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout:Install 12 Packages 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 38 M 2024-04-07T14:32:55.540 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 209 M 2024-04-07T14:32:55.541 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:32:55.551 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T14:32:55.958 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:05 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:32:55.967 INFO:teuthology.orchestra.run.smithi062.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 793 kB/s | 195 kB 00:00 2024-04-07T14:32:56.034 INFO:teuthology.orchestra.run.smithi062.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 490 kB/s | 33 kB 00:00 2024-04-07T14:32:56.068 INFO:teuthology.orchestra.run.smithi062.stdout:(3/12): libgfortran-11.4.1-3.el9.x86_64.rpm 2.3 MB/s | 803 kB 00:00 2024-04-07T14:32:56.118 INFO:teuthology.orchestra.run.smithi062.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 363 kB/s | 18 kB 00:00 2024-04-07T14:32:56.177 INFO:teuthology.orchestra.run.smithi062.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 604 kB/s | 35 kB 00:00 2024-04-07T14:32:56.251 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:32:56.251 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:32:56.251 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:32:56.251 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:32:56.252 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:32:56.253 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.254 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:32:56.255 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.256 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.257 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.258 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.259 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.260 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.260 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:56.260 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.260 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.260 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.260 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:56.302 INFO:teuthology.orchestra.run.smithi062.stdout:(6/12): ceph-mgr-diskprediction-local-19.0.0-25 13 MB/s | 7.4 MB 00:00 2024-04-07T14:32:56.320 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:32:56.321 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:56.321 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:32:56.321 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:56.321 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-dashboard noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 3.5 M 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: abseil-cpp x86_64 20211102.0-3.el9 epel 548 k 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-grafana-dashboards noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 34 k 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-prometheus-alerts noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 16 k 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: protobuf x86_64 3.14.0-13.el9 appstream 1.0 M 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: protobuf-compiler x86_64 3.14.0-13.el9 crb 863 k 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2024-04-07T14:32:56.322 INFO:teuthology.orchestra.run.smithi076.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout: python3-protobuf noarch 3.14.0-13.el9 appstream 269 k 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout:Install 12 Packages 2024-04-07T14:32:56.323 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:32:56.324 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 8.6 M 2024-04-07T14:32:56.324 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 104 M 2024-04-07T14:32:56.324 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:32:56.462 INFO:teuthology.orchestra.run.smithi062.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 1.5 MB/s | 245 kB 00:00 2024-04-07T14:32:56.661 INFO:teuthology.orchestra.run.smithi062.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 4.8 MB/s | 3.0 MB 00:00 2024-04-07T14:32:56.745 INFO:teuthology.orchestra.run.smithi062.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.9 MB/s | 250 kB 00:00 2024-04-07T14:32:56.870 INFO:teuthology.orchestra.run.smithi062.stdout:(10/12): openblas-openmp-0.3.21-2.el9.x86_64.rp 6.8 MB/s | 4.7 MB 00:00 2024-04-07T14:32:56.901 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 1/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 2/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 3/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-07T14:32:56.902 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-07T14:32:56.919 INFO:teuthology.orchestra.run.smithi076.stdout:(1/12): ceph-grafana-dashboards-19.0.0-2578.ge5 168 kB/s | 34 kB 00:00 2024-04-07T14:32:56.936 INFO:teuthology.orchestra.run.smithi076.stdout:(2/12): ceph-prometheus-alerts-19.0.0-2578.ge5c 75 kB/s | 16 kB 00:00 2024-04-07T14:32:57.153 INFO:teuthology.orchestra.run.smithi076.stdout:(3/12): ceph-mgr-dashboard-19.0.0-2578.ge5c885f 8.1 MB/s | 3.5 MB 00:00 2024-04-07T14:32:57.178 INFO:teuthology.orchestra.run.smithi076.stdout:(4/12): python3-protobuf-3.14.0-13.el9.noarch.r 1.1 MB/s | 269 kB 00:00 2024-04-07T14:32:57.204 INFO:teuthology.orchestra.run.smithi062.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 6.9 MB/s | 5.1 MB 00:00 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:32:57.302 INFO:teuthology.orchestra.run.smithi111.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:57.303 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:32:57.337 INFO:teuthology.orchestra.run.smithi076.stdout:(5/12): protobuf-3.14.0-13.el9.x86_64.rpm 2.4 MB/s | 1.0 MB 00:00 2024-04-07T14:32:57.454 INFO:teuthology.orchestra.run.smithi076.stdout:(6/12): grpc-data-1.46.7-10.el9.noarch.rpm 167 kB/s | 19 kB 00:00 2024-04-07T14:32:57.479 INFO:teuthology.orchestra.run.smithi076.stdout:(7/12): abseil-cpp-20211102.0-3.el9.x86_64.rpm 1.8 MB/s | 548 kB 00:00 2024-04-07T14:32:57.513 INFO:teuthology.orchestra.run.smithi076.stdout:(8/12): protobuf-compiler-3.14.0-13.el9.x86_64. 2.3 MB/s | 863 kB 00:00 2024-04-07T14:32:57.554 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-07T14:32:57.645 INFO:teuthology.orchestra.run.smithi062.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 18 MB/s | 16 MB 00:00 2024-04-07T14:32:57.646 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:57.647 INFO:teuthology.orchestra.run.smithi062.stdout:Total 18 MB/s | 38 MB 00:02 2024-04-07T14:32:57.655 INFO:teuthology.orchestra.run.smithi076.stdout:(9/12): python3-grpcio-1.46.7-10.el9.x86_64.rpm 10 MB/s | 2.0 MB 00:00 2024-04-07T14:32:57.680 INFO:teuthology.orchestra.run.smithi076.stdout:(10/12): python3-grpcio-tools-1.46.7-10.el9.x86 720 kB/s | 144 kB 00:00 2024-04-07T14:32:57.697 INFO:teuthology.orchestra.run.smithi076.stdout:(11/12): python3-repoze-lru-0.7-16.el9.noarch.r 168 kB/s | 31 kB 00:00 2024-04-07T14:32:57.722 INFO:teuthology.orchestra.run.smithi076.stdout:(12/12): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-04-07T14:32:57.724 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:32:57.725 INFO:teuthology.orchestra.run.smithi076.stdout:Total 6.2 MB/s | 8.6 MB 00:01 2024-04-07T14:32:57.772 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:32:57.789 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:32:57.789 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:32:57.981 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:32:57.982 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:32:58.012 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:32:58.040 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:32:58.040 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:32:58.143 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:14 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:32:58.428 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:32:58.429 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.430 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.431 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:32:58.432 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.433 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.434 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.435 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.436 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.437 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:32:58.499 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout:======================================================================================= 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout:======================================================================================= 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 7.4 M 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-07T14:32:58.500 INFO:teuthology.orchestra.run.smithi111.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout:======================================================================================= 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout:Install 12 Packages 2024-04-07T14:32:58.501 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:32:58.502 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:32:58.502 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:32:58.503 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 38 M 2024-04-07T14:32:58.503 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 209 M 2024-04-07T14:32:58.503 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:32:58.503 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:32:58.589 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : protobuf-3.14.0-13.el9.x86_64 1/12 2024-04-07T14:32:58.625 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : protobuf-compiler-3.14.0-13.el9.x86_64 2/12 2024-04-07T14:32:58.671 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 3/12 2024-04-07T14:32:58.702 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 4/12 2024-04-07T14:32:58.799 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 5/12 2024-04-07T14:32:58.889 INFO:teuthology.orchestra.run.smithi111.stdout:(1/12): libquadmath-11.4.1-3.el9.x86_64.rpm 1.2 MB/s | 195 kB 00:00 2024-04-07T14:32:58.918 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : abseil-cpp-20211102.0-3.el9.x86_64 6/12 2024-04-07T14:32:58.939 INFO:teuthology.orchestra.run.smithi111.stdout:(2/12): libgfortran-11.4.1-3.el9.x86_64.rpm 3.8 MB/s | 803 kB 00:00 2024-04-07T14:32:59.013 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 7/12 2024-04-07T14:32:59.039 INFO:teuthology.orchestra.run.smithi111.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 218 kB/s | 33 kB 00:00 2024-04-07T14:32:59.056 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-protobuf-3.14.0-13.el9.noarch 8/12 2024-04-07T14:32:59.085 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/12 2024-04-07T14:32:59.089 INFO:teuthology.orchestra.run.smithi111.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 364 kB/s | 18 kB 00:00 2024-04-07T14:32:59.117 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 10/12 2024-04-07T14:32:59.165 INFO:teuthology.orchestra.run.smithi111.stdout:(5/12): openblas-0.3.21-2.el9.x86_64.rpm 469 kB/s | 35 kB 00:00 2024-04-07T14:32:59.281 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:32:59.348 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-07T14:32:59.386 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-07T14:32:59.491 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-07T14:32:59.528 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-07T14:32:59.713 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-07T14:32:59.743 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-07T14:32:59.799 INFO:teuthology.orchestra.run.smithi111.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.5 MB/s | 3.0 MB 00:00 2024-04-07T14:32:59.831 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-07T14:32:59.882 INFO:teuthology.orchestra.run.smithi111.stdout:(7/12): python3-devel-3.9.17-2.el9.x86_64.rpm 2.9 MB/s | 245 kB 00:00 2024-04-07T14:33:00.180 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 11/12 2024-04-07T14:33:00.217 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T14:33:00.241 INFO:teuthology.orchestra.run.smithi111.stdout:(8/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 4.4 MB/s | 4.7 MB 00:01 2024-04-07T14:33:00.324 INFO:teuthology.orchestra.run.smithi111.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.9 MB/s | 250 kB 00:00 2024-04-07T14:33:00.525 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-07T14:33:00.652 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-07T14:33:00.749 INFO:teuthology.orchestra.run.smithi111.stdout:(10/12): ceph-mgr-diskprediction-local-19.0.0-2 3.7 MB/s | 7.4 MB 00:02 2024-04-07T14:33:00.916 INFO:teuthology.orchestra.run.smithi111.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 4.9 MB/s | 5.1 MB 00:01 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 12/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el 1/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noa 2/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9 3/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : protobuf-3.14.0-13.el9.x86_64 4/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-protobuf-3.14.0-13.el9.noarch 5/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : protobuf-compiler-3.14.0-13.el9.x86_64 6/12 2024-04-07T14:33:01.573 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : abseil-cpp-20211102.0-3.el9.x86_64 7/12 2024-04-07T14:33:01.574 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 8/12 2024-04-07T14:33:01.574 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 9/12 2024-04-07T14:33:01.574 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/12 2024-04-07T14:33:01.574 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 11/12 2024-04-07T14:33:01.949 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 12/12 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: abseil-cpp-20211102.0-3.el9.x86_64 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-grafana-dashboards-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-dashboard-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-prometheus-alerts-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: grpc-data-1.46.7-10.el9.noarch 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: protobuf-3.14.0-13.el9.x86_64 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: protobuf-compiler-3.14.0-13.el9.x86_64 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: python3-protobuf-3.14.0-13.el9.noarch 2024-04-07T14:33:01.950 INFO:teuthology.orchestra.run.smithi076.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-04-07T14:33:01.951 INFO:teuthology.orchestra.run.smithi076.stdout: python3-routes-2.5.1-5.el9.noarch 2024-04-07T14:33:01.951 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:01.951 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:01.952 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T14:33:02.227 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-diskprediction-local 2024-04-07T14:33:02.813 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:12 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:03.037 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-07T14:33:03.059 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T14:33:03.098 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:03.098 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:03.099 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.100 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.101 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.102 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:03.103 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.104 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.105 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.106 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.107 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:03.168 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:03.169 INFO:teuthology.orchestra.run.smithi076.stdout:======================================================================================= 2024-04-07T14:33:03.169 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:33:03.169 INFO:teuthology.orchestra.run.smithi076.stdout:======================================================================================= 2024-04-07T14:33:03.169 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:03.169 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-diskprediction-local noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 7.4 M 2024-04-07T14:33:03.169 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: libgfortran x86_64 11.4.1-3.el9 baseos 803 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: libquadmath x86_64 11.4.1-3.el9 baseos 195 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: openblas x86_64 0.3.21-2.el9 appstream 35 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: openblas-openmp x86_64 0.3.21-2.el9 appstream 4.7 M 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: python3-devel x86_64 3.9.17-2.el9 appstream 245 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-04-07T14:33:03.170 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:03.171 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:03.171 INFO:teuthology.orchestra.run.smithi076.stdout:======================================================================================= 2024-04-07T14:33:03.171 INFO:teuthology.orchestra.run.smithi076.stdout:Install 12 Packages 2024-04-07T14:33:03.171 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:03.171 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 38 M 2024-04-07T14:33:03.171 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 209 M 2024-04-07T14:33:03.172 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:03.350 INFO:teuthology.orchestra.run.smithi111.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 5.4 MB/s | 16 MB 00:03 2024-04-07T14:33:03.351 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:03.351 INFO:teuthology.orchestra.run.smithi111.stdout:Total 7.8 MB/s | 38 MB 00:04 2024-04-07T14:33:03.701 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:03.728 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:03.728 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:03.906 INFO:teuthology.orchestra.run.smithi076.stdout:(1/12): ceph-mgr-diskprediction-local-19.0.0-25 13 MB/s | 7.4 MB 00:00 2024-04-07T14:33:03.922 INFO:teuthology.orchestra.run.smithi076.stdout:(2/12): libquadmath-11.4.1-3.el9.x86_64.rpm 329 kB/s | 195 kB 00:00 2024-04-07T14:33:04.123 INFO:teuthology.orchestra.run.smithi076.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 151 kB/s | 33 kB 00:00 2024-04-07T14:33:04.148 INFO:teuthology.orchestra.run.smithi076.stdout:(4/12): libgfortran-11.4.1-3.el9.x86_64.rpm 981 kB/s | 803 kB 00:00 2024-04-07T14:33:04.166 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:04.166 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:04.190 INFO:teuthology.orchestra.run.smithi076.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 273 kB/s | 18 kB 00:00 2024-04-07T14:33:04.215 INFO:teuthology.orchestra.run.smithi076.stdout:(6/12): openblas-0.3.21-2.el9.x86_64.rpm 526 kB/s | 35 kB 00:00 2024-04-07T14:33:04.299 INFO:teuthology.orchestra.run.smithi076.stdout:(7/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 7.9 MB/s | 3.0 MB 00:00 2024-04-07T14:33:04.349 INFO:teuthology.orchestra.run.smithi076.stdout:(8/12): python3-devel-3.9.17-2.el9.x86_64.rpm 1.8 MB/s | 245 kB 00:00 2024-04-07T14:33:04.458 INFO:teuthology.orchestra.run.smithi076.stdout:(9/12): openblas-openmp-0.3.21-2.el9.x86_64.rpm 18 MB/s | 4.7 MB 00:00 2024-04-07T14:33:04.483 INFO:teuthology.orchestra.run.smithi076.stdout:(10/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 1.8 MB/s | 250 kB 00:00 2024-04-07T14:33:04.642 INFO:teuthology.orchestra.run.smithi076.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 15 MB/s | 5.1 MB 00:00 2024-04-07T14:33:04.925 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:04.986 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-07T14:33:05.022 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-07T14:33:05.108 INFO:teuthology.orchestra.run.smithi076.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 25 MB/s | 16 MB 00:00 2024-04-07T14:33:05.109 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:05.110 INFO:teuthology.orchestra.run.smithi076.stdout:Total 20 MB/s | 38 MB 00:01 2024-04-07T14:33:05.123 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-07T14:33:05.165 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-07T14:33:05.342 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-07T14:33:05.372 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-07T14:33:05.448 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-07T14:33:05.458 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:05.485 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:05.485 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 1/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-07T14:33:05.542 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-07T14:33:05.543 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T14:33:05.543 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-07T14:33:05.912 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:05.913 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:06.034 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-07T14:33:06.035 INFO:teuthology.orchestra.run.smithi062.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-07T14:33:06.036 INFO:teuthology.orchestra.run.smithi062.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-07T14:33:06.036 INFO:teuthology.orchestra.run.smithi062.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-07T14:33:06.036 INFO:teuthology.orchestra.run.smithi062.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-07T14:33:06.036 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:06.036 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:06.100 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-07T14:33:06.227 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-07T14:33:06.437 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-mgr-rook 2024-04-07T14:33:06.668 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:06.736 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-04-07T14:33:06.773 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libquadmath-11.4.1-3.el9.x86_64 2/12 2024-04-07T14:33:06.880 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libgfortran-11.4.1-3.el9.x86_64 3/12 2024-04-07T14:33:06.916 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-devel-3.9.17-2.el9.x86_64 4/12 2024-04-07T14:33:07.046 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:28 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:07.093 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : openblas-0.3.21-2.el9.x86_64 5/12 2024-04-07T14:33:07.123 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : openblas-openmp-0.3.21-2.el9.x86_64 6/12 2024-04-07T14:33:07.208 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.350 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:07.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:07.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.353 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:07.354 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.355 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:07.356 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.357 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.358 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:07.423 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-rook noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 49 k 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-07T14:33:07.425 INFO:teuthology.orchestra.run.smithi062.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:07.426 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:07.427 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:07.427 INFO:teuthology.orchestra.run.smithi062.stdout:Install 13 Packages 2024-04-07T14:33:07.427 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:07.427 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 2.2 M 2024-04-07T14:33:07.427 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 26 M 2024-04-07T14:33:07.427 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:07.465 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T14:33:07.858 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-04-07T14:33:07.960 INFO:teuthology.orchestra.run.smithi062.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 231 kB/s | 26 kB 00:00 2024-04-07T14:33:07.976 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-04-07T14:33:07.976 INFO:teuthology.orchestra.run.smithi062.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 150 kB/s | 19 kB 00:00 2024-04-07T14:33:08.035 INFO:teuthology.orchestra.run.smithi062.stdout:(3/13): ceph-mgr-rook-19.0.0-2578.ge5c885fe.el9 264 kB/s | 49 kB 00:00 2024-04-07T14:33:08.094 INFO:teuthology.orchestra.run.smithi062.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.6 MB/s | 222 kB 00:00 2024-04-07T14:33:08.119 INFO:teuthology.orchestra.run.smithi062.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.1 MB/s | 159 kB 00:00 2024-04-07T14:33:08.144 INFO:teuthology.orchestra.run.smithi062.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 1.0 MB/s | 54 kB 00:00 2024-04-07T14:33:08.203 INFO:teuthology.orchestra.run.smithi062.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.6 MB/s | 279 kB 00:00 2024-04-07T14:33:08.336 INFO:teuthology.orchestra.run.smithi062.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 148 kB/s | 32 kB 00:00 2024-04-07T14:33:08.378 INFO:teuthology.orchestra.run.smithi062.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 64 kB/s | 15 kB 00:00 2024-04-07T14:33:08.478 INFO:teuthology.orchestra.run.smithi062.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 591 kB/s | 59 kB 00:00 2024-04-07T14:33:08.492 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-07T14:33:08.521 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T14:33:08.537 INFO:teuthology.orchestra.run.smithi062.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 654 kB/s | 203 kB 00:00 2024-04-07T14:33:08.571 INFO:teuthology.orchestra.run.smithi062.stdout:(12/13): python3-kubernetes-26.1.0-2.el9.noarch 4.4 MB/s | 1.0 MB 00:00 2024-04-07T14:33:08.596 INFO:teuthology.orchestra.run.smithi062.stdout:(13/13): python3-websocket-client-1.2.3-2.el9.n 767 kB/s | 90 kB 00:00 2024-04-07T14:33:08.598 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:08.598 INFO:teuthology.orchestra.run.smithi062.stdout:Total 1.9 MB/s | 2.2 MB 00:01 2024-04-07T14:33:08.661 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:08.676 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:08.676 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:08.776 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:08.776 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:09.215 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T14:33:09.309 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:09.485 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-07T14:33:09.540 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-07T14:33:09.596 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-07T14:33:09.632 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-07T14:33:09.674 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-07T14:33:09.772 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-07T14:33:09.883 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-07T14:33:09.934 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-07T14:33:10.243 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-04-07T14:33:10.273 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T14:33:10.702 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-07T14:33:10.755 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-07T14:33:10.789 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-07T14:33:10.838 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-07T14:33:10.866 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T14:33:10.981 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T14:33:10.981 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 1/12 2024-04-07T14:33:10.981 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-07T14:33:10.981 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T14:33:10.982 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-07T14:33:11.462 INFO:teuthology.orchestra.run.smithi111.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:11.463 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:11.627 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 1/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-07T14:33:11.628 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-07T14:33:11.903 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-mgr-rook 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-07T14:33:12.014 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:12.015 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:12.258 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-mgr-cephadm 2024-04-07T14:33:12.503 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:28 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.792 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.793 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:12.794 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:12.795 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.796 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:12.797 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.798 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.799 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:12.800 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.801 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.801 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.801 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:12.860 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-rook noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 49 k 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-07T14:33:12.862 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout:Install 13 Packages 2024-04-07T14:33:12.863 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:12.864 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 2.2 M 2024-04-07T14:33:12.864 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 26 M 2024-04-07T14:33:12.864 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:12.864 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:33 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:12.877 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 12/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c88 1/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libgfortran-11.4.1-3.el9.x86_64 2/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libquadmath-11.4.1-3.el9.x86_64 3/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : openblas-0.3.21-2.el9.x86_64 7/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : openblas-openmp-0.3.21-2.el9.x86_64 8/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-devel-3.9.17-2.el9.x86_64 9/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-04-07T14:33:12.878 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:13.168 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.169 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.170 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:13.171 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:13.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:13.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:13.243 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:13.243 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:13.243 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 141 k 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:13.244 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:13.245 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:13.245 INFO:teuthology.orchestra.run.smithi062.stdout:Install 6 Packages 2024-04-07T14:33:13.245 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:13.245 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 7.0 M 2024-04-07T14:33:13.245 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 33 M 2024-04-07T14:33:13.245 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:13.296 INFO:teuthology.orchestra.run.smithi111.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 347 kB/s | 26 kB 00:00 2024-04-07T14:33:13.321 INFO:teuthology.orchestra.run.smithi111.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 193 kB/s | 19 kB 00:00 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-diskprediction-local-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-04-07T14:33:13.385 INFO:teuthology.orchestra.run.smithi076.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: libgfortran-11.4.1-3.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: libquadmath-11.4.1-3.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: openblas-0.3.21-2.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: openblas-openmp-0.3.21-2.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: python3-devel-3.9.17-2.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:13.386 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:13.388 INFO:teuthology.orchestra.run.smithi111.stdout:(3/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 2.4 MB/s | 159 kB 00:00 2024-04-07T14:33:13.422 INFO:teuthology.orchestra.run.smithi111.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.2 MB/s | 222 kB 00:00 2024-04-07T14:33:13.438 INFO:teuthology.orchestra.run.smithi111.stdout:(5/13): ceph-mgr-rook-19.0.0-2578.ge5c885fe.el9 227 kB/s | 49 kB 00:00 2024-04-07T14:33:13.480 INFO:teuthology.orchestra.run.smithi111.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 917 kB/s | 54 kB 00:00 2024-04-07T14:33:13.506 INFO:teuthology.orchestra.run.smithi111.stdout:(7/13): python3-pyasn1-modules-0.4.8-6.el9.noar 2.3 MB/s | 279 kB 00:00 2024-04-07T14:33:13.723 INFO:teuthology.orchestra.run.smithi111.stdout:(8/13): python3-cachetools-4.2.4-1.el9.noarch.r 113 kB/s | 32 kB 00:00 2024-04-07T14:33:13.739 INFO:teuthology.orchestra.run.smithi111.stdout:(9/13): python3-certifi-2021.10.8-2.el9.noarch. 58 kB/s | 15 kB 00:00 2024-04-07T14:33:13.773 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-rook 2024-04-07T14:33:13.814 INFO:teuthology.orchestra.run.smithi062.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.1 MB/s | 248 kB 00:00 2024-04-07T14:33:13.931 INFO:teuthology.orchestra.run.smithi062.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 4.6 MB/s | 548 kB 00:00 2024-04-07T14:33:13.956 INFO:teuthology.orchestra.run.smithi062.stdout:(3/6): ceph-mgr-cephadm-19.0.0-2578.ge5c885fe.e 394 kB/s | 141 kB 00:00 2024-04-07T14:33:13.956 INFO:teuthology.orchestra.run.smithi111.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 273 kB/s | 59 kB 00:00 2024-04-07T14:33:13.981 INFO:teuthology.orchestra.run.smithi062.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2024-04-07T14:33:13.982 INFO:teuthology.orchestra.run.smithi111.stdout:(11/13): python3-google-auth-2.28.2-1.el9.noarc 426 kB/s | 203 kB 00:00 2024-04-07T14:33:14.040 INFO:teuthology.orchestra.run.smithi062.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 609 kB/s | 51 kB 00:00 2024-04-07T14:33:14.132 INFO:teuthology.orchestra.run.smithi111.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 512 kB/s | 90 kB 00:00 2024-04-07T14:33:14.266 INFO:teuthology.orchestra.run.smithi111.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 1.9 MB/s | 1.0 MB 00:00 2024-04-07T14:33:14.266 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:14.267 INFO:teuthology.orchestra.run.smithi111.stdout:Total 1.6 MB/s | 2.2 MB 00:01 2024-04-07T14:33:14.333 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:14.349 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:14.349 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:14.375 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:24 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:14.444 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:14.444 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:14.662 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:14.662 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:14.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:14.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:14.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:14.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:14.667 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.668 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:14.668 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.668 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.669 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.670 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.671 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.672 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:14.731 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-rook noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 49 k 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: python3-certifi noarch 2021.10.8-2.el9 epel 15 k 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: python3-google-auth noarch 1:2.28.2-1.el9 epel 203 k 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-04-07T14:33:14.733 INFO:teuthology.orchestra.run.smithi076.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout:Install 13 Packages 2024-04-07T14:33:14.734 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:14.735 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 2.2 M 2024-04-07T14:33:14.735 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 26 M 2024-04-07T14:33:14.735 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:14.955 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:15.110 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-07T14:33:15.157 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-07T14:33:15.214 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-07T14:33:15.242 INFO:teuthology.orchestra.run.smithi076.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 224 kB/s | 19 kB 00:00 2024-04-07T14:33:15.248 INFO:teuthology.orchestra.run.smithi062.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 3.6 MB/s | 6.0 MB 00:01 2024-04-07T14:33:15.249 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:15.250 INFO:teuthology.orchestra.run.smithi062.stdout:Total 3.5 MB/s | 7.0 MB 00:02 2024-04-07T14:33:15.250 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-07T14:33:15.267 INFO:teuthology.orchestra.run.smithi076.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 231 kB/s | 26 kB 00:00 2024-04-07T14:33:15.291 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-07T14:33:15.325 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:15.337 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:15.337 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:15.351 INFO:teuthology.orchestra.run.smithi076.stdout:(3/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.0 MB/s | 222 kB 00:00 2024-04-07T14:33:15.376 INFO:teuthology.orchestra.run.smithi076.stdout:(4/13): ceph-mgr-rook-19.0.0-2578.ge5c885fe.el9 224 kB/s | 49 kB 00:00 2024-04-07T14:33:15.384 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-07T14:33:15.401 INFO:teuthology.orchestra.run.smithi076.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2024-04-07T14:33:15.427 INFO:teuthology.orchestra.run.smithi076.stdout:(6/13): python3-pyasn1-modules-0.4.8-6.el9.noar 3.6 MB/s | 279 kB 00:00 2024-04-07T14:33:15.444 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:15.444 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:15.485 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-07T14:33:15.494 INFO:teuthology.orchestra.run.smithi076.stdout:(7/13): python3-requests-oauthlib-1.3.0-12.el9. 458 kB/s | 54 kB 00:00 2024-04-07T14:33:15.534 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-07T14:33:15.764 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:15.938 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-07T14:33:15.993 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-07T14:33:16.050 INFO:teuthology.orchestra.run.smithi076.stdout:(8/13): python3-certifi-2021.10.8-2.el9.noarch. 24 kB/s | 15 kB 00:00 2024-04-07T14:33:16.219 INFO:teuthology.orchestra.run.smithi076.stdout:(9/13): python3-cachetools-4.2.4-1.el9.noarch.r 39 kB/s | 32 kB 00:00 2024-04-07T14:33:16.243 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-07T14:33:16.290 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-07T14:33:16.324 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-07T14:33:16.372 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-07T14:33:16.394 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T14:33:16.546 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-07T14:33:16.639 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-07T14:33:16.718 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-07T14:33:16.745 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T14:33:17.003 INFO:teuthology.orchestra.run.smithi076.stdout:(10/13): python3-google-auth-2.28.2-1.el9.noarc 139 kB/s | 203 kB 00:01 2024-04-07T14:33:17.045 INFO:teuthology.orchestra.run.smithi076.stdout:(11/13): python3-rsa-4.9-2.el9.noarch.rpm 72 kB/s | 59 kB 00:00 2024-04-07T14:33:17.197 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 1/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-07T14:33:17.198 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-07T14:33:17.571 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T14:33:17.572 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/6 2024-04-07T14:33:17.572 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-07T14:33:17.572 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-07T14:33:17.572 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-07T14:33:17.572 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-07T14:33:17.592 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-07T14:33:17.592 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-07T14:33:17.593 INFO:teuthology.orchestra.run.smithi111.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-07T14:33:17.594 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:17.594 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:17.844 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-mgr-cephadm 2024-04-07T14:33:17.907 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-07T14:33:17.946 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:17.946 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:17.946 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:17.946 INFO:teuthology.orchestra.run.smithi062.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-07T14:33:17.947 INFO:teuthology.orchestra.run.smithi062.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-07T14:33:17.947 INFO:teuthology.orchestra.run.smithi062.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-07T14:33:17.947 INFO:teuthology.orchestra.run.smithi062.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-07T14:33:17.947 INFO:teuthology.orchestra.run.smithi062.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-07T14:33:17.947 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:17.947 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:18.094 INFO:teuthology.orchestra.run.smithi076.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 82 kB/s | 90 kB 00:01 2024-04-07T14:33:18.163 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-fuse 2024-04-07T14:33:18.228 INFO:teuthology.orchestra.run.smithi076.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 480 kB/s | 1.0 MB 00:02 2024-04-07T14:33:18.231 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:18.231 INFO:teuthology.orchestra.run.smithi076.stdout:Total 644 kB/s | 2.2 MB 00:03 2024-04-07T14:33:18.297 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:18.313 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:18.313 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:18.410 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:18.410 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:18.438 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:34 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.725 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.726 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:18.727 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.728 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.729 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:18.730 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.731 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.732 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.733 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.734 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.734 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:18.780 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:39 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:18.796 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 141 k 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-07T14:33:18.797 INFO:teuthology.orchestra.run.smithi111.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout:Install 6 Packages 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 7.0 M 2024-04-07T14:33:18.798 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 33 M 2024-04-07T14:33:18.799 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:18.931 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:19.085 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:19.086 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.087 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.088 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:19.089 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:19.090 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.091 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.092 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.093 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:19.094 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.094 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.094 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.094 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:19.094 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-04-07T14:33:19.146 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-04-07T14:33:19.159 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:19.159 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:19.159 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:33:19.159 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:19.159 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:19.159 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 890 k 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout:Install 2 Packages 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:19.160 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 971 k 2024-04-07T14:33:19.161 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 2.8 M 2024-04-07T14:33:19.161 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:19.210 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-04-07T14:33:19.247 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-04-07T14:33:19.297 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-certifi-2021.10.8-2.el9.noarch 5/13 2024-04-07T14:33:19.398 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-04-07T14:33:19.408 INFO:teuthology.orchestra.run.smithi111.stdout:(1/6): ceph-mgr-cephadm-19.0.0-2578.ge5c885fe.e 689 kB/s | 141 kB 00:00 2024-04-07T14:33:19.434 INFO:teuthology.orchestra.run.smithi111.stdout:(2/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.1 MB/s | 248 kB 00:00 2024-04-07T14:33:19.499 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-google-auth-1:2.28.2-1.el9.noarch 7/13 2024-04-07T14:33:19.566 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-04-07T14:33:19.642 INFO:teuthology.orchestra.run.smithi111.stdout:(3/6): python3-babel-2.9.1-2.el9.noarch.rpm 14 MB/s | 6.0 MB 00:00 2024-04-07T14:33:19.759 INFO:teuthology.orchestra.run.smithi111.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 177 kB/s | 58 kB 00:00 2024-04-07T14:33:19.768 INFO:teuthology.orchestra.run.smithi062.stdout:(1/2): ceph-fuse-19.0.0-2578.ge5c885fe.el9.x86_ 2.9 MB/s | 890 kB 00:00 2024-04-07T14:33:19.818 INFO:teuthology.orchestra.run.smithi062.stdout:(2/2): fuse-2.9.9-15.el9.x86_64.rpm 230 kB/s | 80 kB 00:00 2024-04-07T14:33:19.819 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:19.819 INFO:teuthology.orchestra.run.smithi062.stdout:Total 1.4 MB/s | 971 kB 00:00 2024-04-07T14:33:19.831 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:19.854 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:19.854 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:19.934 INFO:teuthology.orchestra.run.smithi111.stdout:(5/6): python3-typing-extensions-4.4.0-2.el9.no 175 kB/s | 51 kB 00:00 2024-04-07T14:33:19.936 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:19.936 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:19.993 INFO:teuthology.orchestra.run.smithi111.stdout:(6/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 938 kB/s | 548 kB 00:00 2024-04-07T14:33:19.993 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:19.993 INFO:teuthology.orchestra.run.smithi111.stdout:Total 5.8 MB/s | 7.0 MB 00:01 2024-04-07T14:33:20.065 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:20.076 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:20.076 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:20.129 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:20.179 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:20.183 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:20.258 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-07T14:33:20.289 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-04-07T14:33:20.339 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T14:33:20.345 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-04-07T14:33:20.379 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-04-07T14:33:20.428 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-04-07T14:33:20.466 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T14:33:20.489 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:20.668 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-07T14:33:20.727 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-07T14:33:21.036 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T14:33:21.036 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/2 2024-04-07T14:33:21.239 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-07T14:33:21.322 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-07T14:33:21.326 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 13/13 2024-04-07T14:33:21.326 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 1/13 2024-04-07T14:33:21.326 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-04-07T14:33:21.326 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-04-07T14:33:21.326 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-certifi-2021.10.8-2.el9.noarch 9/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-google-auth-1:2.28.2-1.el9.noarch 10/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-04-07T14:33:21.327 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-04-07T14:33:21.392 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-07T14:33:21.397 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-07T14:33:21.397 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:21.397 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:21.397 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-07T14:33:21.397 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:21.397 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:21.415 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T14:33:21.687 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install ceph-volume 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-rook-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: python3-certifi-2021.10.8-2.el9.noarch 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: python3-google-auth-1:2.28.2-1.el9.noarch 2024-04-07T14:33:21.709 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-rsa-4.9-2.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:21.710 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:21.979 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-mgr-cephadm 2024-04-07T14:33:22.206 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T14:33:22.207 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/6 2024-04-07T14:33:22.207 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-07T14:33:22.207 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-07T14:33:22.207 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-07T14:33:22.207 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-07T14:33:22.304 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:43 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-07T14:33:22.533 INFO:teuthology.orchestra.run.smithi111.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-07T14:33:22.534 INFO:teuthology.orchestra.run.smithi111.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-07T14:33:22.534 INFO:teuthology.orchestra.run.smithi111.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-07T14:33:22.534 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:22.534 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:22.576 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:32 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:22.645 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:22.645 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:22.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:22.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.645 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:22.645 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.646 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.647 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:22.648 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.649 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:22.650 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.651 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.652 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.653 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.654 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.654 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:22.654 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.654 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.654 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.654 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.720 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repository Size 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-volume noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 264 k 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout:Installing dependencies: 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-07T14:33:22.721 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout:Install 2 Packages 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 341 k 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 1.5 M 2024-04-07T14:33:22.722 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:22.781 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-fuse 2024-04-07T14:33:22.858 INFO:teuthology.orchestra.run.smithi062.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 1.2 MB/s | 77 kB 00:00 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:22.870 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:22.871 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:22.872 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.873 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.874 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.875 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.876 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.877 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.878 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:22.941 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:22.942 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:22.942 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:33:22.942 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:22.942 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:22.942 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-cephadm noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 141 k 2024-04-07T14:33:22.942 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jinja2 noarch 2.11.3-5.el9 appstream 248 k 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: python3-typing-extensions noarch 4.4.0-2.el9 epel 51 k 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout:Install 6 Packages 2024-04-07T14:33:22.943 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:22.944 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 7.0 M 2024-04-07T14:33:22.944 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 33 M 2024-04-07T14:33:22.944 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:23.167 INFO:teuthology.orchestra.run.smithi062.stdout:(2/2): ceph-volume-19.0.0-2578.ge5c885fe.el9.no 706 kB/s | 264 kB 00:00 2024-04-07T14:33:23.168 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:23.168 INFO:teuthology.orchestra.run.smithi062.stdout:Total 764 kB/s | 341 kB 00:00 2024-04-07T14:33:23.179 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:23.189 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:23.189 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:23.228 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:23.228 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:23.373 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:39 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:23.382 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:23.564 INFO:teuthology.orchestra.run.smithi076.stdout:(1/6): python3-jinja2-2.11.3-5.el9.noarch.rpm 1.3 MB/s | 248 kB 00:00 2024-04-07T14:33:23.581 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-07T14:33:23.589 INFO:teuthology.orchestra.run.smithi076.stdout:(2/6): ceph-mgr-cephadm-19.0.0-2578.ge5c885fe.e 662 kB/s | 141 kB 00:00 2024-04-07T14:33:23.620 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T14:33:23.635 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T14:33:23.635 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:33:23.635 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-07T14:33:23.635 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:23.661 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.662 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.663 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:23.664 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.664 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:23.664 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.664 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:23.666 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:23.667 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:23.668 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.669 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.670 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.671 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.672 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:23.698 INFO:teuthology.orchestra.run.smithi076.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 533 kB/s | 58 kB 00:00 2024-04-07T14:33:23.723 INFO:teuthology.orchestra.run.smithi076.stdout:(4/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 3.4 MB/s | 548 kB 00:00 2024-04-07T14:33:23.730 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:23.731 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:23.731 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:33:23.731 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:23.731 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 890 k 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout:Install 2 Packages 2024-04-07T14:33:23.732 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:23.733 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 971 k 2024-04-07T14:33:23.733 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 2.8 M 2024-04-07T14:33:23.733 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:23.807 INFO:teuthology.orchestra.run.smithi076.stdout:(5/6): python3-babel-2.9.1-2.el9.noarch.rpm 14 MB/s | 6.0 MB 00:00 2024-04-07T14:33:23.832 INFO:teuthology.orchestra.run.smithi076.stdout:(6/6): python3-typing-extensions-4.4.0-2.el9.no 380 kB/s | 51 kB 00:00 2024-04-07T14:33:23.833 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:23.834 INFO:teuthology.orchestra.run.smithi076.stdout:Total 7.8 MB/s | 7.0 MB 00:00 2024-04-07T14:33:23.903 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:23.914 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:23.914 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:24.017 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:24.018 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:24.019 INFO:teuthology.orchestra.run.smithi111.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 464 kB/s | 80 kB 00:00 2024-04-07T14:33:24.261 INFO:teuthology.orchestra.run.smithi111.stdout:(2/2): ceph-fuse-19.0.0-2578.ge5c885fe.el9.x86_ 2.1 MB/s | 890 kB 00:00 2024-04-07T14:33:24.262 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:24.262 INFO:teuthology.orchestra.run.smithi111.stdout:Total 1.8 MB/s | 971 kB 00:00 2024-04-07T14:33:24.273 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:24.294 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:24.294 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:24.345 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:24.371 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:24.371 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:24.391 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 1/2 2024-04-07T14:33:24.504 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-typing-extensions-4.4.0-2.el9.noarch 1/6 2024-04-07T14:33:24.559 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-04-07T14:33:24.562 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:24.696 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-07T14:33:24.760 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:24.772 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:25.073 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-04-07T14:33:25.143 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install librados-devel 2024-04-07T14:33:25.161 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-04-07T14:33:25.224 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-jinja2-2.11.3-5.el9.noarch 5/6 2024-04-07T14:33:25.254 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T14:33:25.453 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T14:33:25.453 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/2 2024-04-07T14:33:25.755 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:46 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:25.773 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-07T14:33:25.773 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:25.773 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:25.773 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-07T14:33:25.773 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:25.773 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:26.057 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.058 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:26.059 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.060 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.061 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.062 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.063 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.064 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.065 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.066 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.066 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:26.066 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.066 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.066 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.066 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.073 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install ceph-volume 2024-04-07T14:33:26.118 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 6/6 2024-04-07T14:33:26.119 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 1/6 2024-04-07T14:33:26.119 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-04-07T14:33:26.119 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-jinja2-2.11.3-5.el9.noarch 3/6 2024-04-07T14:33:26.119 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-04-07T14:33:26.119 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-04-07T14:33:26.130 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:26.131 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:26.131 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repo Size 2024-04-07T14:33:26.131 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:26.131 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout: librados-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 127 k 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 127 k 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 456 k 2024-04-07T14:33:26.132 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:26.437 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-typing-extensions-4.4.0-2.el9.noarch 6/6 2024-04-07T14:33:26.437 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:26.437 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-mgr-cephadm-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: python3-babel-2.9.1-2.el9.noarch 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: python3-jinja2-2.11.3-5.el9.noarch 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: python3-typing-extensions-4.4.0-2.el9.noarch 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:26.438 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:26.440 INFO:teuthology.orchestra.run.smithi062.stdout:librados-devel-19.0.0-2578.ge5c885fe.el9.x86_64 412 kB/s | 127 kB 00:00 2024-04-07T14:33:26.440 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:26.440 INFO:teuthology.orchestra.run.smithi062.stdout:Total 410 kB/s | 127 kB 00:00 2024-04-07T14:33:26.441 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:26.447 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:26.447 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:26.510 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:26.511 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:26.685 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:42 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:26.703 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-fuse 2024-04-07T14:33:26.713 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:26.816 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:26.985 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:26.986 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:26.987 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.988 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.989 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.990 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.991 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.992 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.993 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.994 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:26.994 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.994 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.994 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:26.994 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.054 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:27.055 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:27.055 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repository Size 2024-04-07T14:33:27.055 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:27.055 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:27.055 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-volume noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 264 k 2024-04-07T14:33:27.055 INFO:teuthology.orchestra.run.smithi111.stdout:Installing dependencies: 2024-04-07T14:33:27.056 INFO:teuthology.orchestra.run.smithi111.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-07T14:33:27.056 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:27.056 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:27.056 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:27.056 INFO:teuthology.orchestra.run.smithi111.stdout:Install 2 Packages 2024-04-07T14:33:27.056 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:27.057 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 341 k 2024-04-07T14:33:27.057 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 1.5 M 2024-04-07T14:33:27.057 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:27.207 INFO:teuthology.orchestra.run.smithi111.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 924 kB/s | 77 kB 00:00 2024-04-07T14:33:27.226 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:27.300 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:37 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:27.383 INFO:teuthology.orchestra.run.smithi111.stdout:(2/2): ceph-volume-19.0.0-2578.ge5c885fe.el9.no 1.0 MB/s | 264 kB 00:00 2024-04-07T14:33:27.383 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:27.384 INFO:teuthology.orchestra.run.smithi111.stdout:Total 1.0 MB/s | 341 kB 00:00 2024-04-07T14:33:27.395 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:27.404 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:27.404 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:27.446 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:27.446 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:27.537 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:27.537 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:27.537 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:27.537 INFO:teuthology.orchestra.run.smithi062.stdout: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:27.537 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:27.537 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:27.588 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:27.588 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:27.588 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.589 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:27.590 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.591 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:27.592 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:27.593 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.594 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.595 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.596 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.597 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:27.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:27.599 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:27.658 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:27.659 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:27.659 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:33:27.659 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:27.659 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 890 k 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout: fuse x86_64 2.9.9-15.el9 baseos 80 k 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Install 2 Packages 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 971 k 2024-04-07T14:33:27.660 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 2.8 M 2024-04-07T14:33:27.661 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:27.768 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install libcephfs2 2024-04-07T14:33:27.781 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-07T14:33:27.818 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T14:33:27.834 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T14:33:27.834 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:33:27.834 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-07T14:33:27.834 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:27.851 INFO:teuthology.orchestra.run.smithi076.stdout:(1/2): fuse-2.9.9-15.el9.x86_64.rpm 1.3 MB/s | 80 kB 00:00 2024-04-07T14:33:28.235 INFO:teuthology.orchestra.run.smithi076.stdout:(2/2): ceph-fuse-19.0.0-2578.ge5c885fe.el9.x86_ 2.0 MB/s | 890 kB 00:00 2024-04-07T14:33:28.235 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:28.235 INFO:teuthology.orchestra.run.smithi076.stdout:Total 1.6 MB/s | 971 kB 00:00 2024-04-07T14:33:28.247 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:28.268 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:28.268 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:28.346 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:28.346 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:28.382 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:49 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:28.536 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:28.585 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 1/2 2024-04-07T14:33:28.677 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : fuse-2.9.9-15.el9.x86_64 1/2 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.697 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:28.698 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.699 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:28.700 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:28.701 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.702 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.703 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.704 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:28.705 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.706 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:28.707 INFO:teuthology.orchestra.run.smithi062.stdout:Package libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:28.751 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T14:33:28.773 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:28.777 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:28.777 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:28.842 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install libcephfs-devel 2024-04-07T14:33:28.958 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-07T14:33:28.958 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:28.959 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:28.959 INFO:teuthology.orchestra.run.smithi111.stdout: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:28.959 INFO:teuthology.orchestra.run.smithi111.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-07T14:33:28.959 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:28.959 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:29.297 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install librados-devel 2024-04-07T14:33:29.455 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:50 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:29.514 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2/2 2024-04-07T14:33:29.514 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/2 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:29.758 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.759 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.760 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.761 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:29.762 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:29.763 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.764 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.765 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.766 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.767 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.767 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:29.830 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repo Size 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout: libcephfs-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 32 k 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:29.831 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:29.832 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:33:29.832 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:29.832 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 32 k 2024-04-07T14:33:29.832 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 142 k 2024-04-07T14:33:29.832 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:29.872 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : fuse-2.9.9-15.el9.x86_64 2/2 2024-04-07T14:33:29.872 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:29.872 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:29.872 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 fuse-2.9.9-15.el9.x86_64 2024-04-07T14:33:29.872 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:29.872 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:29.904 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:45 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:30.085 INFO:teuthology.orchestra.run.smithi062.stdout:libcephfs-devel-19.0.0-2578.ge5c885fe.el9.x86_6 126 kB/s | 32 kB 00:00 2024-04-07T14:33:30.085 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:30.086 INFO:teuthology.orchestra.run.smithi062.stdout:Total 125 kB/s | 32 kB 00:00 2024-04-07T14:33:30.086 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:30.089 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:30.089 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:30.118 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:30.118 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:30.174 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install ceph-volume 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:30.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:30.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:30.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.202 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:30.203 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.204 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.205 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.206 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.207 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:30.219 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:30.267 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:30.267 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repo Size 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout: librados-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 127 k 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 127 k 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 456 k 2024-04-07T14:33:30.268 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:30.353 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:30.480 INFO:teuthology.orchestra.run.smithi111.stdout:librados-devel-19.0.0-2578.ge5c885fe.el9.x86_64 598 kB/s | 127 kB 00:00 2024-04-07T14:33:30.481 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:30.481 INFO:teuthology.orchestra.run.smithi111.stdout:Total 595 kB/s | 127 kB 00:00 2024-04-07T14:33:30.481 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:30.487 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:30.487 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:30.547 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:30.548 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:30.730 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:30.742 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:30.789 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:40 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:30.846 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:31.003 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:31.004 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:31.004 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:31.004 INFO:teuthology.orchestra.run.smithi062.stdout: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:31.004 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:31.004 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:31.084 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:31.084 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:31.084 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:31.084 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:31.085 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.086 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:31.087 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.088 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:31.089 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.090 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:31.090 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.090 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:31.090 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.090 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:31.090 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:31.091 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:31.092 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.093 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.094 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.095 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.096 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:31.154 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repository Size 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-volume noarch 2:19.0.0-2578.ge5c885fe.el9 ceph-noarch 264 k 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:Installing dependencies: 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:31.156 INFO:teuthology.orchestra.run.smithi076.stdout:Install 2 Packages 2024-04-07T14:33:31.157 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:31.157 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 341 k 2024-04-07T14:33:31.157 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 1.5 M 2024-04-07T14:33:31.157 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:31.203 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install librados2 2024-04-07T14:33:31.290 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:31.547 INFO:teuthology.orchestra.run.smithi076.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 674 kB/s | 77 kB 00:00 2024-04-07T14:33:31.599 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:31.599 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:31.600 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:31.600 INFO:teuthology.orchestra.run.smithi111.stdout: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:31.600 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:31.600 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:31.698 INFO:teuthology.orchestra.run.smithi076.stdout:(2/2): ceph-volume-19.0.0-2578.ge5c885fe.el9.no 996 kB/s | 264 kB 00:00 2024-04-07T14:33:31.698 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:31.698 INFO:teuthology.orchestra.run.smithi076.stdout:Total 628 kB/s | 341 kB 00:00 2024-04-07T14:33:31.710 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:31.719 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:31.719 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:31.766 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:31.767 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:31.805 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install libcephfs2 2024-04-07T14:33:31.808 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:52 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:31.914 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:32.105 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-04-07T14:33:32.112 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:32.112 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:32.112 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:32.112 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.112 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:32.112 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.113 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:32.114 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:32.115 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:32.116 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.117 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.118 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:32.119 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.120 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.121 INFO:teuthology.orchestra.run.smithi062.stdout:Package librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:32.142 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T14:33:32.158 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2/2 2024-04-07T14:33:32.158 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:33:32.158 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-04-07T14:33:32.158 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:32.184 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:32.185 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:32.186 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:32.263 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install librbd1 2024-04-07T14:33:32.418 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:48 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:32.710 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:32.710 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:32.710 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:32.710 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:32.711 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.712 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.713 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.714 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:32.715 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.716 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.717 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.718 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.719 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:32.720 INFO:teuthology.orchestra.run.smithi111.stdout:Package libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:32.778 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:32.779 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:32.779 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:32.839 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install libcephfs-devel 2024-04-07T14:33:32.867 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:53 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:32.958 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 1/2 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.172 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:33.173 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:33.174 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.175 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:33.176 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.177 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:33.178 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.179 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.180 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.181 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:33.182 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.183 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.184 INFO:teuthology.orchestra.run.smithi062.stdout:Package librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:33.244 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:33.244 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:33.245 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:33.313 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-04-07T14:33:33.314 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:33.314 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:33.314 INFO:teuthology.orchestra.run.smithi076.stdout: ceph-volume-2:19.0.0-2578.ge5c885fe.el9.noarch 2024-04-07T14:33:33.314 INFO:teuthology.orchestra.run.smithi076.stdout: python3-packaging-20.9-5.el9.noarch 2024-04-07T14:33:33.314 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:33.314 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:33.315 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install python3-rados 2024-04-07T14:33:33.449 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:49 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:33.645 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install librados-devel 2024-04-07T14:33:33.735 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:33.736 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:33.737 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.738 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:33.739 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:33.740 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:33.741 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.742 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.743 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:33.744 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.745 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.746 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:33.803 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repo Size 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout: libcephfs-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 32 k 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:33.804 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:33.805 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:33:33.805 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:33.805 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 32 k 2024-04-07T14:33:33.805 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 142 k 2024-04-07T14:33:33.805 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:33.925 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:54 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:34.052 INFO:teuthology.orchestra.run.smithi111.stdout:libcephfs-devel-19.0.0-2578.ge5c885fe.el9.x86_6 128 kB/s | 32 kB 00:00 2024-04-07T14:33:34.052 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:34.052 INFO:teuthology.orchestra.run.smithi111.stdout:Total 128 kB/s | 32 kB 00:00 2024-04-07T14:33:34.052 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:34.056 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:34.056 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:34.081 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:34.081 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:34.168 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:34.228 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:34.228 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:34.228 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:34.229 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.230 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:34.231 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:34.232 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:34.233 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:34.234 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.235 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.236 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.237 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.238 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.239 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:34.239 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.239 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.239 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.239 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.239 INFO:teuthology.orchestra.run.smithi062.stdout:Package python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:34.246 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:44 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:34.274 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:34.300 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:34.301 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:34.301 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:34.383 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install python3-rgw 2024-04-07T14:33:34.546 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:34.546 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:34.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:34.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:34.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:34.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:34.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.550 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.551 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.552 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.553 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.554 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.555 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:34.555 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.555 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.555 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.555 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:34.615 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout: librados-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 127 k 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:34.616 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:34.617 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:33:34.617 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:34.617 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 127 k 2024-04-07T14:33:34.617 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 456 k 2024-04-07T14:33:34.617 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:34.655 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:34.946 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:34.946 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:34.946 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:34.946 INFO:teuthology.orchestra.run.smithi111.stdout: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:34.947 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:34.947 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:34.970 INFO:teuthology.orchestra.run.smithi076.stdout:librados-devel-19.0.0-2578.ge5c885fe.el9.x86_64 359 kB/s | 127 kB 00:00 2024-04-07T14:33:34.971 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:34.971 INFO:teuthology.orchestra.run.smithi076.stdout:Total 357 kB/s | 127 kB 00:00 2024-04-07T14:33:34.971 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:34.977 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:34.977 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:34.990 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:55 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:35.036 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:35.037 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:35.138 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install librados2 2024-04-07T14:33:35.231 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:35.293 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:35.293 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:35.294 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.295 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.296 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:35.297 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.298 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.299 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.300 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.301 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.302 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:35.303 INFO:teuthology.orchestra.run.smithi062.stdout:Package python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:35.335 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:35.365 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:35.367 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:35.367 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:35.437 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install python3-cephfs 2024-04-07T14:33:35.730 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:51 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:35.817 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:36.041 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:57 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:36.042 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:36.042 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:36.042 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:36.042 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.042 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:36.042 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.043 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:36.044 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:36.045 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.046 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.047 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.048 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.049 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.050 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.051 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.051 INFO:teuthology.orchestra.run.smithi111.stdout:Package librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:36.110 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:36.112 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:36.112 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:36.119 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:36.119 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:36.119 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:36.119 INFO:teuthology.orchestra.run.smithi076.stdout: librados-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:36.119 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:36.119 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:36.177 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install librbd1 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:36.343 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:36.344 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:36.345 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.346 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:36.347 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.348 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.349 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.350 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.351 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.352 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:36.352 INFO:teuthology.orchestra.run.smithi062.stdout:Package python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:36.376 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install libcephfs2 2024-04-07T14:33:36.414 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:36.416 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:36.416 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:36.487 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install python3-rbd 2024-04-07T14:33:36.765 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:52 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:36.987 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:46 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:37.054 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:37.054 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:37.054 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:37.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.054 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:37.054 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:37.055 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:37.056 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.057 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:37.058 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:37.059 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.060 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.061 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.062 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.063 INFO:teuthology.orchestra.run.smithi111.stdout:Package librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:37.099 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:58 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:37.120 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:37.122 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:37.122 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:37.198 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install python3-rados 2024-04-07T14:33:37.285 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:37.285 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:37.285 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:37.285 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.285 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:37.285 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.286 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.287 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.288 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.289 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:37.290 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.291 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.292 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:37.293 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.294 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.294 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.294 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.294 INFO:teuthology.orchestra.run.smithi076.stdout:Package libcephfs2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:37.355 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:37.356 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:37.356 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:37.402 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:37.402 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:37.402 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:37.403 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:37.404 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:37.405 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:37.406 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:37.407 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:37.408 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:37.409 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.410 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.411 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.412 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.413 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.414 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:37.414 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.414 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.414 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.414 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:37.414 INFO:teuthology.orchestra.run.smithi062.stdout:Package python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:37.429 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install libcephfs-devel 2024-04-07T14:33:37.474 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:37.475 INFO:teuthology.orchestra.run.smithi062.stdout:Nothing to do. 2024-04-07T14:33:37.476 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:37.559 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install rbd-fuse 2024-04-07T14:33:37.794 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:53 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:38.024 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:48 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:38.083 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.084 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:38.085 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.086 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:38.087 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.088 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.089 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.090 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.091 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.092 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.093 INFO:teuthology.orchestra.run.smithi111.stdout:Package python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:38.153 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:38.154 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:38.154 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:38.162 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:01:59 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:38.222 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install python3-rgw 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.312 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:38.313 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.314 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.315 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.316 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.317 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:38.318 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.319 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.320 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.380 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:38.380 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs-devel x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 32 k 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 32 k 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 142 k 2024-04-07T14:33:38.381 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.462 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.463 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:38.464 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:38.465 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:38.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:38.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:38.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:38.533 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:38.534 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:38.534 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-04-07T14:33:38.534 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:38.534 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:38.534 INFO:teuthology.orchestra.run.smithi062.stdout: rbd-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 85 k 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 85 k 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 231 k 2024-04-07T14:33:38.535 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:38.540 INFO:teuthology.orchestra.run.smithi076.stdout:libcephfs-devel-19.0.0-2578.ge5c885fe.el9.x86_6 199 kB/s | 32 kB 00:00 2024-04-07T14:33:38.541 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:38.541 INFO:teuthology.orchestra.run.smithi076.stdout:Total 198 kB/s | 32 kB 00:00 2024-04-07T14:33:38.541 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:38.545 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:38.545 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:38.578 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:38.578 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:38.672 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:38.789 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:38.824 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:54 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:38.854 INFO:teuthology.orchestra.run.smithi062.stdout:rbd-fuse-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 267 kB/s | 85 kB 00:00 2024-04-07T14:33:38.855 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:38.855 INFO:teuthology.orchestra.run.smithi062.stdout:Total 266 kB/s | 85 kB 00:00 2024-04-07T14:33:38.855 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:38.863 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:38.863 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:38.926 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:38.926 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:39.071 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.111 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.112 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.113 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:39.114 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:39.115 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.116 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:39.117 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.118 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.119 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.120 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:39.120 INFO:teuthology.orchestra.run.smithi111.stdout:Package python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:39.151 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:39.172 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:39.179 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:39.180 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:39.180 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:39.243 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install python3-cephfs 2024-04-07T14:33:39.428 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:39.428 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:39.428 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:39.428 INFO:teuthology.orchestra.run.smithi076.stdout: libcephfs-devel-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:39.428 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:39.428 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:39.551 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:39.624 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install librados2 2024-04-07T14:33:39.834 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:55 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:39.852 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:39.852 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:39.852 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:39.852 INFO:teuthology.orchestra.run.smithi062.stdout: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:39.852 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:39.853 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:40.087 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install rbd-mirror 2024-04-07T14:33:40.120 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:40.120 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:40.120 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:40.121 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:40.122 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.123 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:40.124 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:40.125 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.126 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.127 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:40.128 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.129 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.130 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.130 INFO:teuthology.orchestra.run.smithi111.stdout:Package python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:40.190 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:40.191 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:40.191 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:40.219 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:50 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:40.272 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install python3-rbd 2024-04-07T14:33:40.509 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:40.509 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:40.510 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:40.511 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.512 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.513 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:40.514 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.515 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.516 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.517 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.518 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:40.519 INFO:teuthology.orchestra.run.smithi076.stdout:Package librados2-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:40.577 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:40.578 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:40.578 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:40.657 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install librbd1 2024-04-07T14:33:40.697 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:02:01 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:40.869 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:56 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.002 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.003 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.004 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.005 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:41.006 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.007 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.008 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.009 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.010 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.011 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.012 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:41.012 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.012 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.012 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.012 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.075 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:41.075 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:41.075 INFO:teuthology.orchestra.run.smithi062.stdout: Package Arch Version Repo Size 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout: rbd-mirror x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 3.1 M 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 13 M 2024-04-07T14:33:41.076 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:41.156 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.157 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.158 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.159 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:41.160 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.161 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.162 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.163 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.164 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.165 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.166 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.166 INFO:teuthology.orchestra.run.smithi111.stdout:Package python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:41.233 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:41.235 INFO:teuthology.orchestra.run.smithi111.stdout:Nothing to do. 2024-04-07T14:33:41.235 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:41.253 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:51 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:41.317 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install rbd-fuse 2024-04-07T14:33:41.449 INFO:teuthology.orchestra.run.smithi062.stdout:rbd-mirror-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 8.3 MB/s | 3.1 MB 00:00 2024-04-07T14:33:41.449 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:41.449 INFO:teuthology.orchestra.run.smithi062.stdout:Total 8.3 MB/s | 3.1 MB 00:00 2024-04-07T14:33:41.450 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:41.459 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:41.459 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:41.539 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:41.539 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.541 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:41.542 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:41.543 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.544 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.545 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.546 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.547 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:41.548 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.549 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:41.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.550 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:41.550 INFO:teuthology.orchestra.run.smithi076.stdout:Package librbd1-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:41.609 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:41.610 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:41.610 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:41.701 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-rados 2024-04-07T14:33:41.906 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:01:57 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:41.996 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:42.066 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:42.090 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:42.090 INFO:teuthology.orchestra.run.smithi062.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:33:42.090 INFO:teuthology.orchestra.run.smithi062.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-07T14:33:42.090 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T14:33:42.091 INFO:teuthology.orchestra.run.smithi062.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T14:33:42.091 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:42.193 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.194 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.195 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.196 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:42.197 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.198 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:42.199 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.200 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.201 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.264 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:42.264 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout: Package Architecture Version Repository Size 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout: rbd-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 85 k 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 85 k 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 231 k 2024-04-07T14:33:42.265 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:42.304 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:52 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:42.588 INFO:teuthology.orchestra.run.smithi111.stdout:rbd-fuse-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 264 kB/s | 85 kB 00:00 2024-04-07T14:33:42.589 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:42.589 INFO:teuthology.orchestra.run.smithi111.stdout:Total 263 kB/s | 85 kB 00:00 2024-04-07T14:33:42.589 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:42.598 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:42.598 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:42.598 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:42.598 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.599 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:42.600 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.601 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:42.602 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.603 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:42.604 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.605 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.606 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.607 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.608 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.609 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:42.610 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-rados-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:42.610 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:42.610 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:42.656 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:42.656 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:42.663 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:42.665 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:42.665 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:42.754 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-rgw 2024-04-07T14:33:42.800 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:42.912 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:43.309 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:43.309 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:43.309 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:43.309 INFO:teuthology.orchestra.run.smithi062.stdout: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:43.310 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:43.310 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:43.361 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:53 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:43.367 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:43.540 DEBUG:teuthology.orchestra.run.smithi062:> sudo yum -y install rbd-nbd 2024-04-07T14:33:43.653 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:43.653 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:43.654 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:43.655 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.656 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:43.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:43.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:43.663 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-rgw-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi111.stdout: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:43.722 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:43.723 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:43.723 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:43.813 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-cephfs 2024-04-07T14:33:43.987 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install rbd-mirror 2024-04-07T14:33:44.165 INFO:teuthology.orchestra.run.smithi062.stdout:Last metadata expiration check: 0:02:05 ago on Sun 07 Apr 2024 02:31:39 PM UTC. 2024-04-07T14:33:44.414 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:54 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:44.466 INFO:teuthology.orchestra.run.smithi062.stderr:Modular dependency problems: 2024-04-07T14:33:44.466 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:33:44.466 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 1: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 2: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 3: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 4: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 5: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 6: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 7: conflicting requests 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.467 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 8: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 9: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 10: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 11: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 12: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 13: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 14: conflicting requests 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.468 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 15: conflicting requests 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 16: conflicting requests 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 17: conflicting requests 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 18: conflicting requests 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 19: conflicting requests 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 20: conflicting requests 2024-04-07T14:33:44.469 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 21: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 22: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 23: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 24: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 25: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 26: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 27: conflicting requests 2024-04-07T14:33:44.470 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 28: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 29: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 30: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 31: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 32: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 33: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 34: conflicting requests 2024-04-07T14:33:44.471 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 35: conflicting requests 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 36: conflicting requests 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 37: conflicting requests 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.472 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 39: conflicting requests 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.473 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:44.474 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.475 INFO:teuthology.orchestra.run.smithi062.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.541 INFO:teuthology.orchestra.run.smithi062.stdout:Dependencies resolved. 2024-04-07T14:33:44.541 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:44.541 INFO:teuthology.orchestra.run.smithi062.stdout: Package Architecture Version Repository Size 2024-04-07T14:33:44.541 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout:Installing: 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout: rbd-nbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 171 k 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction Summary 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout:================================================================================ 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout:Install 1 Package 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout:Total download size: 171 k 2024-04-07T14:33:44.542 INFO:teuthology.orchestra.run.smithi062.stdout:Installed size: 494 k 2024-04-07T14:33:44.543 INFO:teuthology.orchestra.run.smithi062.stdout:Downloading Packages: 2024-04-07T14:33:44.601 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:02:00 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:44.705 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.706 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:44.707 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:44.708 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:44.709 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.710 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.711 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:44.712 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.713 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.714 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:44.714 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.714 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.714 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.714 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.714 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-cephfs-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:44.774 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:44.775 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:44.775 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:44.852 INFO:teuthology.orchestra.run.smithi062.stdout:rbd-nbd-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 551 kB/s | 171 kB 00:00 2024-04-07T14:33:44.853 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:44.853 INFO:teuthology.orchestra.run.smithi062.stdout:Total 549 kB/s | 171 kB 00:00 2024-04-07T14:33:44.853 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction check 2024-04-07T14:33:44.861 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction check succeeded. 2024-04-07T14:33:44.862 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction test 2024-04-07T14:33:44.863 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install python3-rbd 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:44.891 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.892 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:44.893 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:44.894 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:44.895 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.896 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.897 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.898 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.899 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.900 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.900 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:44.923 INFO:teuthology.orchestra.run.smithi062.stdout:Transaction test succeeded. 2024-04-07T14:33:44.924 INFO:teuthology.orchestra.run.smithi062.stdout:Running transaction 2024-04-07T14:33:44.959 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:44.959 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:44.959 INFO:teuthology.orchestra.run.smithi111.stdout: Package Arch Version Repo Size 2024-04-07T14:33:44.959 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:44.959 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout: rbd-mirror x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 3.1 M 2024-04-07T14:33:44.960 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 13 M 2024-04-07T14:33:44.961 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:45.091 INFO:teuthology.orchestra.run.smithi062.stdout: Preparing : 1/1 2024-04-07T14:33:45.178 INFO:teuthology.orchestra.run.smithi062.stdout: Installing : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:45.460 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:55 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:45.507 INFO:teuthology.orchestra.run.smithi111.stdout:rbd-mirror-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 5.7 MB/s | 3.1 MB 00:00 2024-04-07T14:33:45.507 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:45.508 INFO:teuthology.orchestra.run.smithi111.stdout:Total 5.6 MB/s | 3.1 MB 00:00 2024-04-07T14:33:45.508 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:45.517 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:45.517 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:45.594 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:45.595 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:45.621 INFO:teuthology.orchestra.run.smithi062.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:45.749 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:45.750 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.751 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:45.752 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.753 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.754 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:45.755 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.756 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.757 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.758 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:45.759 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.759 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.759 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.759 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:45.759 INFO:teuthology.orchestra.run.smithi076.stdout:Package python3-rbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 is already installed. 2024-04-07T14:33:45.817 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:45.818 INFO:teuthology.orchestra.run.smithi076.stdout:Nothing to do. 2024-04-07T14:33:45.819 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:45.907 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install rbd-fuse 2024-04-07T14:33:45.935 INFO:teuthology.orchestra.run.smithi062.stdout: Verifying : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:45.935 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:45.936 INFO:teuthology.orchestra.run.smithi062.stdout:Installed: 2024-04-07T14:33:45.936 INFO:teuthology.orchestra.run.smithi062.stdout: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:45.936 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:33:45.936 INFO:teuthology.orchestra.run.smithi062.stdout:Complete! 2024-04-07T14:33:46.028 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:46.091 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:46.115 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:46.115 INFO:teuthology.orchestra.run.smithi111.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:33:46.115 INFO:teuthology.orchestra.run.smithi111.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-07T14:33:46.115 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T14:33:46.115 INFO:teuthology.orchestra.run.smithi111.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T14:33:46.115 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:46.215 DEBUG:teuthology.parallel:result is None 2024-04-07T14:33:46.500 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:56 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.787 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.788 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.789 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.790 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:46.791 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.792 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.793 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.794 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.795 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.796 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:46.855 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-fuse x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 85 k 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 85 k 2024-04-07T14:33:46.856 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 231 k 2024-04-07T14:33:46.857 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:47.035 INFO:teuthology.orchestra.run.smithi076.stdout:rbd-fuse-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 477 kB/s | 85 kB 00:00 2024-04-07T14:33:47.036 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:47.036 INFO:teuthology.orchestra.run.smithi076.stdout:Total 474 kB/s | 85 kB 00:00 2024-04-07T14:33:47.036 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:47.043 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:47.043 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:47.103 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:47.103 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:47.241 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:47.256 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:47.256 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:47.257 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:47.257 INFO:teuthology.orchestra.run.smithi111.stdout: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:47.257 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:47.257 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:47.350 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:47.520 DEBUG:teuthology.orchestra.run.smithi111:> sudo yum -y install rbd-nbd 2024-04-07T14:33:47.743 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:48.076 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:48.076 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:48.076 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:48.076 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-fuse-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:48.077 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:48.077 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:48.128 INFO:teuthology.orchestra.run.smithi111.stdout:Last metadata expiration check: 0:02:04 ago on Sun 07 Apr 2024 02:31:44 PM UTC. 2024-04-07T14:33:48.326 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install rbd-mirror 2024-04-07T14:33:48.416 INFO:teuthology.orchestra.run.smithi111.stderr:Modular dependency problems: 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 1: conflicting requests 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 2: conflicting requests 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 3: conflicting requests 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 4: conflicting requests 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 5: conflicting requests 2024-04-07T14:33:48.417 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 6: conflicting requests 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 7: conflicting requests 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 8: conflicting requests 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 9: conflicting requests 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.418 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 10: conflicting requests 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 11: conflicting requests 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 12: conflicting requests 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 13: conflicting requests 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 14: conflicting requests 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 15: conflicting requests 2024-04-07T14:33:48.419 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 16: conflicting requests 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 17: conflicting requests 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 18: conflicting requests 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 19: conflicting requests 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 20: conflicting requests 2024-04-07T14:33:48.420 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 21: conflicting requests 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 22: conflicting requests 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 23: conflicting requests 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 24: conflicting requests 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 25: conflicting requests 2024-04-07T14:33:48.421 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 26: conflicting requests 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 27: conflicting requests 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 28: conflicting requests 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 29: conflicting requests 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 30: conflicting requests 2024-04-07T14:33:48.422 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 31: conflicting requests 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 32: conflicting requests 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 33: conflicting requests 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 34: conflicting requests 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 35: conflicting requests 2024-04-07T14:33:48.423 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 36: conflicting requests 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 37: conflicting requests 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.424 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 39: conflicting requests 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:48.425 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:48.426 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.427 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.428 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.428 INFO:teuthology.orchestra.run.smithi111.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:48.428 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.428 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.428 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.428 INFO:teuthology.orchestra.run.smithi111.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:48.484 INFO:teuthology.orchestra.run.smithi111.stdout:Dependencies resolved. 2024-04-07T14:33:48.484 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:48.484 INFO:teuthology.orchestra.run.smithi111.stdout: Package Architecture Version Repository Size 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout:Installing: 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout: rbd-nbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 171 k 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction Summary 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout:================================================================================ 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout:Install 1 Package 2024-04-07T14:33:48.485 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:48.486 INFO:teuthology.orchestra.run.smithi111.stdout:Total download size: 171 k 2024-04-07T14:33:48.486 INFO:teuthology.orchestra.run.smithi111.stdout:Installed size: 494 k 2024-04-07T14:33:48.486 INFO:teuthology.orchestra.run.smithi111.stdout:Downloading Packages: 2024-04-07T14:33:48.718 INFO:teuthology.orchestra.run.smithi111.stdout:rbd-nbd-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 734 kB/s | 171 kB 00:00 2024-04-07T14:33:48.719 INFO:teuthology.orchestra.run.smithi111.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:48.720 INFO:teuthology.orchestra.run.smithi111.stdout:Total 730 kB/s | 171 kB 00:00 2024-04-07T14:33:48.720 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction check 2024-04-07T14:33:48.727 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction check succeeded. 2024-04-07T14:33:48.727 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction test 2024-04-07T14:33:48.788 INFO:teuthology.orchestra.run.smithi111.stdout:Transaction test succeeded. 2024-04-07T14:33:48.788 INFO:teuthology.orchestra.run.smithi111.stdout:Running transaction 2024-04-07T14:33:48.938 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:01:58 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:48.939 INFO:teuthology.orchestra.run.smithi111.stdout: Preparing : 1/1 2024-04-07T14:33:49.050 INFO:teuthology.orchestra.run.smithi111.stdout: Installing : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.237 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.238 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:49.239 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.240 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.241 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:49.242 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.243 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.244 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:49.245 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.246 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.246 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.246 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:49.306 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:49.306 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout: Package Arch Version Repo Size 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-mirror x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 3.1 M 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 3.1 M 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 13 M 2024-04-07T14:33:49.307 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:49.504 INFO:teuthology.orchestra.run.smithi111.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:49.672 INFO:teuthology.orchestra.run.smithi076.stdout:rbd-mirror-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 8.5 MB/s | 3.1 MB 00:00 2024-04-07T14:33:49.672 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:49.673 INFO:teuthology.orchestra.run.smithi076.stdout:Total 8.4 MB/s | 3.1 MB 00:00 2024-04-07T14:33:49.673 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:49.682 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:49.682 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:49.760 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:49.760 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:49.855 INFO:teuthology.orchestra.run.smithi111.stdout: Verifying : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:49.855 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:49.855 INFO:teuthology.orchestra.run.smithi111.stdout:Installed: 2024-04-07T14:33:49.855 INFO:teuthology.orchestra.run.smithi111.stdout: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:49.855 INFO:teuthology.orchestra.run.smithi111.stdout: 2024-04-07T14:33:49.855 INFO:teuthology.orchestra.run.smithi111.stdout:Complete! 2024-04-07T14:33:50.113 DEBUG:teuthology.parallel:result is None 2024-04-07T14:33:50.200 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:50.256 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:50.280 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:50.281 INFO:teuthology.orchestra.run.smithi076.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-04-07T14:33:50.281 INFO:teuthology.orchestra.run.smithi076.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-04-07T14:33:50.281 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T14:33:50.281 INFO:teuthology.orchestra.run.smithi076.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-04-07T14:33:50.281 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:51.461 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:51.461 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:51.462 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:51.462 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-mirror-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:51.462 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:51.462 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:51.730 DEBUG:teuthology.orchestra.run.smithi076:> sudo yum -y install rbd-nbd 2024-04-07T14:33:52.353 INFO:teuthology.orchestra.run.smithi076.stdout:Last metadata expiration check: 0:02:02 ago on Sun 07 Apr 2024 02:31:50 PM UTC. 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr:Modular dependency problems: 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 1: conflicting requests 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module container-tools:rhel8:820240321091303:20125149.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 2: conflicting requests 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module eclipse:rhel8:820201023100746:b230ed4e.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.657 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 3: conflicting requests 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module freeradius:3.0:8080020230117180605:89170a74.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 4: conflicting requests 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module gimp:2.8:8000020190628145146:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 5: conflicting requests 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module go-toolset:rhel8:820240401160413:b754926a.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 6: conflicting requests 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module httpd:2.4:820240216084734:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 7: conflicting requests 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module idm:client:820240307184541:49cc9d1b.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 8: conflicting requests 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module inkscape:0.92.3:8080020221205124429:3e031279.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.658 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 9: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module jmc:rhel8:8050020211110222101:6392b1f8.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 10: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module llvm-toolset:rhel8:820240205133135:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 11: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module log4j:2:8080020221205124743:9d367344.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 12: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mailman:2.1:820230727085757:77fc8825.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 13: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mariadb:10.3:8030020210419150013:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 14: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module maven:3.5:8060020211203142015:c0229ad2.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 15: conflicting requests 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mercurial:4.8:8000020190628020724:4148dfdf.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.659 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 16: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mod_auth_openidc:2.3:820230721123832:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 17: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module mysql:8.0:8040020210901180257:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 18: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nginx:1.14:8000020211221191913:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 19: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module nodejs:10:8040020210120182536:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 20: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl:5.26:8000020190628020724:55190bc5.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 21: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module php:7.2:8020020200507003613:2c7ca891.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 22: conflicting requests 2024-04-07T14:33:52.660 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module postgresql:10:820230223114800:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 23: conflicting requests 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python27:2.7:820240208011952:182f7c73.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 24: conflicting requests 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python36:3.6:8050020210825152031:982725ab.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 25: conflicting requests 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python38:3.8:820230810143931:64c1cd5a.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 26: conflicting requests 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module python39:3.9:820240214182535:17377f89.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 27: conflicting requests 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module redis:5:8040020211019153849:9f9e2e7e.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 28: conflicting requests 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rhn-tools:1.0:8010020191114034948:f69d1239.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.661 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 29: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module ruby:2.5:820230627084142:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 30: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module rust-toolset:rhel8:820240119204620:b09eea91.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 31: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module satellite-5-client:1.0:8010020191114035551:cdc1202b.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 32: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module squid:4:820240319173245:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 33: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module subversion:1.10:8070020220711155714:78111232.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 34: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module swig:3.0:8030020200706142531:30b713e6.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 35: conflicting requests 2024-04-07T14:33:52.662 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module varnish:6:8050020211109225449:b4937e53.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 36: conflicting requests 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module virt:rhel:820240314161907:9edba152.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 37: conflicting requests 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:7cc0a66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:8030020200716155257:b967a9a2.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-libwww-perl:6.34:820230811133638:36f9fae6.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 38: cannot install the best candidate for the job 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:a5949e2e.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:8010020191114031501:be2e4737.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:2ab761e1.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-YAML:1.24:820230223114759:86e45846.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 39: conflicting requests 2024-04-07T14:33:52.663 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:8030020200715230104:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:082fdf2f.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-IO-Socket-SSL:2.066:820230223114759:fbe42456.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 40: cannot install the best candidate for the job 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:16b3ab4d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:8010020191114031513:e1f37755.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-FCGI:0.78:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 41: cannot install the best candidate for the job 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:1e4bbb35.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.664 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:8030020200716150652:ea09926d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:0ccef39c.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBI:1.641:820230223114759:dbc5bc9a.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 42: cannot install the best candidate for the job 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:8030020200716174729:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-SQLite:1.58:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 43: cannot install the best candidate for the job 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:56fce90f.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:8030020200716213634:98a3c9d0.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:06b7596e.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-Pg:3.7:820230223114759:d2fc5d76.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.665 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 44: cannot install the best candidate for the job 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:3a70019f.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:8030020200716171139:cccafca5.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:6fdf7e5d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-DBD-MySQL:4.046:820230223114759:d4326aba.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: Problem 45: cannot install the best candidate for the job 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8010020191120175858:95fce66d.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:8030020200723233049:09acf126.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:436af1ae.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.666 INFO:teuthology.orchestra.run.smithi076.stderr: - nothing provides module(platform:el8) needed by module perl-App-cpanminus:1.7044:820230223114759:b12195ea.x86_64 from CentOS-AppStream 2024-04-07T14:33:52.728 INFO:teuthology.orchestra.run.smithi076.stdout:Dependencies resolved. 2024-04-07T14:33:52.728 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout: Package Architecture Version Repository Size 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:Installing: 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-nbd x86_64 2:19.0.0-2578.ge5c885fe.el9 ceph 171 k 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction Summary 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:================================================================================ 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:Install 1 Package 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:Total download size: 171 k 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:Installed size: 494 k 2024-04-07T14:33:52.729 INFO:teuthology.orchestra.run.smithi076.stdout:Downloading Packages: 2024-04-07T14:33:52.968 INFO:teuthology.orchestra.run.smithi076.stdout:rbd-nbd-19.0.0-2578.ge5c885fe.el9.x86_64.rpm 716 kB/s | 171 kB 00:00 2024-04-07T14:33:52.968 INFO:teuthology.orchestra.run.smithi076.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:33:52.969 INFO:teuthology.orchestra.run.smithi076.stdout:Total 712 kB/s | 171 kB 00:00 2024-04-07T14:33:52.969 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction check 2024-04-07T14:33:52.977 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction check succeeded. 2024-04-07T14:33:52.977 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction test 2024-04-07T14:33:53.039 INFO:teuthology.orchestra.run.smithi076.stdout:Transaction test succeeded. 2024-04-07T14:33:53.040 INFO:teuthology.orchestra.run.smithi076.stdout:Running transaction 2024-04-07T14:33:53.212 INFO:teuthology.orchestra.run.smithi076.stdout: Preparing : 1/1 2024-04-07T14:33:53.318 INFO:teuthology.orchestra.run.smithi076.stdout: Installing : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:53.755 INFO:teuthology.orchestra.run.smithi076.stdout: Running scriptlet: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:54.060 INFO:teuthology.orchestra.run.smithi076.stdout: Verifying : rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 1/1 2024-04-07T14:33:54.060 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:54.060 INFO:teuthology.orchestra.run.smithi076.stdout:Installed: 2024-04-07T14:33:54.060 INFO:teuthology.orchestra.run.smithi076.stdout: rbd-nbd-2:19.0.0-2578.ge5c885fe.el9.x86_64 2024-04-07T14:33:54.060 INFO:teuthology.orchestra.run.smithi076.stdout: 2024-04-07T14:33:54.060 INFO:teuthology.orchestra.run.smithi076.stdout:Complete! 2024-04-07T14:33:54.311 DEBUG:teuthology.parallel:result is None 2024-04-07T14:33:54.312 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:33:54.454 DEBUG:teuthology.orchestra.run.smithi062:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-07T14:33:54.479 INFO:teuthology.orchestra.run.smithi062.stdout:19.0.0-2578.ge5c885fe.el9 2024-04-07T14:33:54.479 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2578.ge5c885fe.el9 2024-04-07T14:33:54.479 INFO:teuthology.task.install:The correct ceph version 19.0.0-2578.ge5c885fe is installed. 2024-04-07T14:33:54.481 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:33:54.838 DEBUG:teuthology.orchestra.run.smithi076:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-07T14:33:54.859 INFO:teuthology.orchestra.run.smithi076.stdout:19.0.0-2578.ge5c885fe.el9 2024-04-07T14:33:54.859 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2578.ge5c885fe.el9 2024-04-07T14:33:54.859 INFO:teuthology.task.install:The correct ceph version 19.0.0-2578.ge5c885fe is installed. 2024-04-07T14:33:54.861 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:33:55.018 DEBUG:teuthology.orchestra.run.smithi111:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-04-07T14:33:55.044 INFO:teuthology.orchestra.run.smithi111.stdout:19.0.0-2578.ge5c885fe.el9 2024-04-07T14:33:55.045 INFO:teuthology.packaging:The installed version of ceph is 19.0.0-2578.ge5c885fe.el9 2024-04-07T14:33:55.045 INFO:teuthology.task.install:The correct ceph version 19.0.0-2578.ge5c885fe is installed. 2024-04-07T14:33:55.046 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-04-07T14:33:55.047 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:33:55.047 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-07T14:33:55.080 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-04-07T14:33:55.080 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-07T14:33:55.109 DEBUG:teuthology.orchestra.run.smithi111:> set -ex 2024-04-07T14:33:55.109 DEBUG:teuthology.orchestra.run.smithi111:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-04-07T14:33:55.141 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-04-07T14:33:55.141 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:33:55.141 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/usr/bin/daemon-helper 2024-04-07T14:33:55.170 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-07T14:33:55.239 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-04-07T14:33:55.239 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/usr/bin/daemon-helper 2024-04-07T14:33:55.266 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-07T14:33:55.333 DEBUG:teuthology.orchestra.run.smithi111:> set -ex 2024-04-07T14:33:55.333 DEBUG:teuthology.orchestra.run.smithi111:> sudo dd of=/usr/bin/daemon-helper 2024-04-07T14:33:55.364 DEBUG:teuthology.orchestra.run.smithi111:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-04-07T14:33:55.434 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-04-07T14:33:55.434 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:33:55.434 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-07T14:33:55.463 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-07T14:33:55.531 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-04-07T14:33:55.531 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-07T14:33:55.558 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-07T14:33:55.626 DEBUG:teuthology.orchestra.run.smithi111:> set -ex 2024-04-07T14:33:55.626 DEBUG:teuthology.orchestra.run.smithi111:> sudo dd of=/usr/bin/adjust-ulimits 2024-04-07T14:33:55.657 DEBUG:teuthology.orchestra.run.smithi111:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-04-07T14:33:55.726 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-04-07T14:33:55.726 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:33:55.727 DEBUG:teuthology.orchestra.run.smithi062:> sudo dd of=/usr/bin/stdin-killer 2024-04-07T14:33:55.756 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-07T14:33:55.825 DEBUG:teuthology.orchestra.run.smithi076:> set -ex 2024-04-07T14:33:55.825 DEBUG:teuthology.orchestra.run.smithi076:> sudo dd of=/usr/bin/stdin-killer 2024-04-07T14:33:55.852 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-07T14:33:55.920 DEBUG:teuthology.orchestra.run.smithi111:> set -ex 2024-04-07T14:33:55.920 DEBUG:teuthology.orchestra.run.smithi111:> sudo dd of=/usr/bin/stdin-killer 2024-04-07T14:33:55.951 DEBUG:teuthology.orchestra.run.smithi111:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-04-07T14:33:56.022 INFO:teuthology.run_tasks:Running task cephadm... 2024-04-07T14:33:56.122 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, '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': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d'} 2024-04-07T14:33:56.122 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:33:56.123 INFO:tasks.cephadm:Cluster fsid is dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:33:56.123 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-04-07T14:33:56.123 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.62', 'mon.b': '172.21.15.76', 'mon.c': '172.21.15.111'} 2024-04-07T14:33:56.123 INFO:tasks.cephadm:First mon is mon.a on smithi062 2024-04-07T14:33:56.123 INFO:tasks.cephadm:First mgr is a 2024-04-07T14:33:56.123 INFO:tasks.cephadm:Normalizing hostnames... 2024-04-07T14:33:56.123 DEBUG:teuthology.orchestra.run.smithi062:> sudo hostname $(hostname -s) 2024-04-07T14:33:56.155 DEBUG:teuthology.orchestra.run.smithi076:> sudo hostname $(hostname -s) 2024-04-07T14:33:56.182 DEBUG:teuthology.orchestra.run.smithi111:> sudo hostname $(hostname -s) 2024-04-07T14:33:56.213 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-04-07T14:33:56.213 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:33:56.366 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', '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/54784/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2578-ge5c885fe', 'node_name': '172.21.5.36+adami06', '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-2578.ge5c885fe'}, 'url': 'https://1.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-01 21:29:58.884301', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'archs': ['source', 'x86_64'], 'distro': 'centos'}, {'status': 'ready', 'sha1': 'e5c885fe95ee982ff7b45214daa61b1a6d09d57d', '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/54782/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.0.0-2578-ge5c885fe', 'node_name': '172.21.5.34+adami04', '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-2578.ge5c885fe'}, 'url': 'https://2.chacra.ceph.com/r/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-04-01 17:45:20.920598', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'main', 'chacra_url': 'https://2.chacra.ceph.com/repos/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-04-07T14:33:56.510 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref main, sha1 e5c885fe95ee982ff7b45214daa61b1a6d09d57d from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:33:56.512 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm 2024-04-07T14:33:56.512 DEBUG:teuthology.orchestra.run.smithi062:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:56.975 INFO:teuthology.orchestra.run.smithi062.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 14:33 /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:56.975 DEBUG:teuthology.orchestra.run.smithi076:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:57.564 INFO:teuthology.orchestra.run.smithi076.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 14:33 /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:57.564 DEBUG:teuthology.orchestra.run.smithi111:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/main/e5c885fe95ee982ff7b45214daa61b1a6d09d57d/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:58.225 INFO:teuthology.orchestra.run.smithi111.stdout:-rw-r--r--. 1 ubuntu ubuntu 781283 Apr 7 14:33 /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:58.225 DEBUG:teuthology.orchestra.run.smithi062:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:58.244 DEBUG:teuthology.orchestra.run.smithi076:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:58.262 DEBUG:teuthology.orchestra.run.smithi111:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-04-07T14:33:58.291 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d on all hosts... 2024-04-07T14:33:58.291 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T14:33:58.294 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T14:33:58.305 DEBUG:teuthology.orchestra.run.smithi111:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d pull 2024-04-07T14:33:59.229 INFO:teuthology.orchestra.run.smithi076.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:33:59.270 INFO:teuthology.orchestra.run.smithi111.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:33:59.312 INFO:teuthology.orchestra.run.smithi062.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout:{ 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout: "repo_digests": [ 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout: ] 2024-04-07T14:34:27.456 INFO:teuthology.orchestra.run.smithi076.stdout:} 2024-04-07T14:34:52.288 INFO:teuthology.orchestra.run.smithi111.stdout:{ 2024-04-07T14:34:52.289 INFO:teuthology.orchestra.run.smithi111.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T14:34:52.289 INFO:teuthology.orchestra.run.smithi111.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T14:34:52.289 INFO:teuthology.orchestra.run.smithi111.stdout: "repo_digests": [ 2024-04-07T14:34:52.289 INFO:teuthology.orchestra.run.smithi111.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T14:34:52.289 INFO:teuthology.orchestra.run.smithi111.stdout: ] 2024-04-07T14:34:52.289 INFO:teuthology.orchestra.run.smithi111.stdout:} 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout:{ 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout: "ceph_version": "ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev)", 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout: "image_id": "fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce", 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout: "repo_digests": [ 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:72637ed65c3eacb208a01eb8fcf572a65857060627154597bacdb87f092e5fe1" 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout: ] 2024-04-07T14:34:53.257 INFO:teuthology.orchestra.run.smithi062.stdout:} 2024-04-07T14:34:53.285 DEBUG:teuthology.orchestra.run.smithi062:> sudo mkdir -p /etc/ceph 2024-04-07T14:34:53.329 DEBUG:teuthology.orchestra.run.smithi076:> sudo mkdir -p /etc/ceph 2024-04-07T14:34:53.366 DEBUG:teuthology.orchestra.run.smithi111:> sudo mkdir -p /etc/ceph 2024-04-07T14:34:53.401 DEBUG:teuthology.orchestra.run.smithi062:> sudo chmod 777 /etc/ceph 2024-04-07T14:34:53.428 DEBUG:teuthology.orchestra.run.smithi076:> sudo chmod 777 /etc/ceph 2024-04-07T14:34:53.460 DEBUG:teuthology.orchestra.run.smithi111:> sudo chmod 777 /etc/ceph 2024-04-07T14:34:53.489 INFO:tasks.cephadm:Writing seed config... 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-04-07T14:34:53.494 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-04-07T14:34:53.495 DEBUG:teuthology.orchestra.run.smithi062:> set -ex 2024-04-07T14:34:53.495 DEBUG:teuthology.orchestra.run.smithi062:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-04-07T14:34:53.511 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = dd3ba138-f4eb-11ee-b649-cb9ed24678a4 mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = True [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-04-07T14:34:53.511 DEBUG:teuthology.orchestra.run.smithi062:mon.a> sudo journalctl -f -n 0 -u ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service 2024-04-07T14:34:53.553 DEBUG:teuthology.orchestra.run.smithi062:mgr.a> sudo journalctl -f -n 0 -u ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service 2024-04-07T14:34:53.596 INFO:tasks.cephadm:Bootstrapping... 2024-04-07T14:34:53.596 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-04-07T14:34:53.795 INFO:teuthology.orchestra.run.smithi062.stdout:-------------------------------------------------------------------------------- 2024-04-07T14:34:53.795 INFO:teuthology.orchestra.run.smithi062.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d', '-v', 'bootstrap', '--fsid', 'dd3ba138-f4eb-11ee-b649-cb9ed24678a4', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '172.21.15.62', '--skip-admin-label'] 2024-04-07T14:34:53.796 INFO:teuthology.orchestra.run.smithi062.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-04-07T14:34:53.796 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying podman|docker is present... 2024-04-07T14:34:53.819 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-07T14:34:53.819 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying lvm2 is present... 2024-04-07T14:34:53.819 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying time synchronization is in place... 2024-04-07T14:34:53.826 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-07T14:34:53.826 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-07T14:34:53.832 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-07T14:34:53.832 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-04-07T14:34:53.837 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout enabled 2024-04-07T14:34:53.843 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout active 2024-04-07T14:34:53.843 INFO:teuthology.orchestra.run.smithi062.stdout:Unit chronyd.service is enabled and running 2024-04-07T14:34:53.843 INFO:teuthology.orchestra.run.smithi062.stdout:Repeating the final host check... 2024-04-07T14:34:53.865 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 4.9.4-dev 2024-04-07T14:34:53.866 INFO:teuthology.orchestra.run.smithi062.stdout:podman (/bin/podman) version 4.9.4 is present 2024-04-07T14:34:53.866 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl is present 2024-04-07T14:34:53.866 INFO:teuthology.orchestra.run.smithi062.stdout:lvcreate is present 2024-04-07T14:34:53.871 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-04-07T14:34:53.871 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-04-07T14:34:53.877 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-04-07T14:34:53.877 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-04-07T14:34:53.884 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout enabled 2024-04-07T14:34:53.889 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout active 2024-04-07T14:34:53.890 INFO:teuthology.orchestra.run.smithi062.stdout:Unit chronyd.service is enabled and running 2024-04-07T14:34:53.890 INFO:teuthology.orchestra.run.smithi062.stdout:Host looks OK 2024-04-07T14:34:53.890 INFO:teuthology.orchestra.run.smithi062.stdout:Cluster fsid: dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:34:53.890 INFO:teuthology.orchestra.run.smithi062.stdout:Acquiring lock 140609244463792 on /run/cephadm/dd3ba138-f4eb-11ee-b649-cb9ed24678a4.lock 2024-04-07T14:34:53.890 INFO:teuthology.orchestra.run.smithi062.stdout:Lock 140609244463792 acquired on /run/cephadm/dd3ba138-f4eb-11ee-b649-cb9ed24678a4.lock 2024-04-07T14:34:53.891 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying IP 172.21.15.62 port 3300 ... 2024-04-07T14:34:53.891 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying IP 172.21.15.62 port 6789 ... 2024-04-07T14:34:53.891 INFO:teuthology.orchestra.run.smithi062.stdout:Base mon IP(s) is [172.21.15.62:3300, 172.21.15.62:6789], mon addrv is [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-04-07T14:34:53.893 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.62 metric 100 2024-04-07T14:34:53.894 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.62 metric 100 2024-04-07T14:34:53.896 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-04-07T14:34:53.896 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-04-07T14:34:53.896 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 1024 expires 1791sec hoplimit 64 pref medium 2024-04-07T14:34:53.898 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-04-07T14:34:53.898 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2024-04-07T14:34:53.899 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-07T14:34:53.899 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-04-07T14:34:53.899 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout inet6 fe80::ec4:7aff:febb:d1c3/64 scope link 2024-04-07T14:34:53.899 INFO:teuthology.orchestra.run.smithi062.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-04-07T14:34:53.899 INFO:teuthology.orchestra.run.smithi062.stdout:Mon IP `172.21.15.62` is in CIDR network `172.21.0.0/20` 2024-04-07T14:34:53.900 INFO:teuthology.orchestra.run.smithi062.stdout:Mon IP `172.21.15.62` is in CIDR network `172.21.0.0/20` 2024-04-07T14:34:53.900 INFO:teuthology.orchestra.run.smithi062.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2024-04-07T14:34:53.900 INFO:teuthology.orchestra.run.smithi062.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-04-07T14:34:53.900 INFO:teuthology.orchestra.run.smithi062.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:34:54.359 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce 2024-04-07T14:34:54.359 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d... 2024-04-07T14:34:54.359 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Getting image source signatures 2024-04-07T14:34:54.360 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying blob sha256:782e6bcadc93519e2d08c343133a0b5af6209f666ea103bfa10c8730b0492c89 2024-04-07T14:34:54.360 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying blob sha256:11da15500eca1f826c328eb3265caa30b0a3730510e2a32023084d6fe9cee20c 2024-04-07T14:34:54.360 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Copying config sha256:fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce 2024-04-07T14:34:54.360 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stderr Writing manifest to image destination 2024-04-07T14:34:55.298 INFO:teuthology.orchestra.run.smithi062.stdout:ceph: stdout ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev) 2024-04-07T14:34:55.298 INFO:teuthology.orchestra.run.smithi062.stdout:Ceph version: ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev) 2024-04-07T14:34:55.298 INFO:teuthology.orchestra.run.smithi062.stdout:Extracting ceph user uid/gid from container image... 2024-04-07T14:34:56.179 INFO:teuthology.orchestra.run.smithi062.stdout:stat: stdout 167 167 2024-04-07T14:34:56.179 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial keys... 2024-04-07T14:34:57.144 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQAQrxJms01nIRAAZasVnrnjStwyg5MQjaHAKg== 2024-04-07T14:34:58.049 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQARrxJmgga0HhAArRa+2u9D501Cz6PJCJVA8Q== 2024-04-07T14:34:59.064 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph-authtool: stdout AQASrxJmlVOoGBAAkLiq1i3amKtQW3kqMKKZ6Q== 2024-04-07T14:34:59.064 INFO:teuthology.orchestra.run.smithi062.stdout:Creating initial monmap... 2024-04-07T14:35:00.079 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-07T14:35:00.079 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-04-07T14:35:00.079 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:00.079 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-07T14:35:00.079 INFO:teuthology.orchestra.run.smithi062.stdout:monmaptool for a [v2:172.21.15.62:3300,v1:172.21.15.62:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-04-07T14:35:00.080 INFO:teuthology.orchestra.run.smithi062.stdout:setting min_mon_release = quincy 2024-04-07T14:35:00.080 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: set fsid to dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:00.080 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-04-07T14:35:00.080 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:00.080 INFO:teuthology.orchestra.run.smithi062.stdout:Creating mon... 2024-04-07T14:35:00.976 INFO:teuthology.orchestra.run.smithi062.stdout:create mon.a on 2024-04-07T14:35:01.171 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-07T14:35:01.322 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2024-04-07T14:35:01.502 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target → /etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target. 2024-04-07T14:35:01.502 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target → /etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target. 2024-04-07T14:35:01.721 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a 2024-04-07T14:35:01.721 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service not loaded. 2024-04-07T14:35:01.882 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service → /etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@.service. 2024-04-07T14:35:02.316 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T14:35:02.316 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-04-07T14:35:02.322 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T14:35:02.322 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-04-07T14:35:02.323 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-04-07T14:35:02.323 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to enable service . firewalld.service is not available 2024-04-07T14:35:02.323 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mon to start... 2024-04-07T14:35:02.323 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mon... 2024-04-07T14:35:02.438 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:02 smithi062 ceph-mon[29612]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-07T14:35:03.402 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-07T14:35:03.402 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: monmap epoch 1 2024-04-07T14:35:03.402 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:03.402 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: last_changed 2024-04-07T14:34:59.374781+0000 2024-04-07T14:35:03.402 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: created 2024-04-07T14:34:59.374781+0000 2024-04-07T14:35:03.402 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: min_mon_release 19 (squid) 2024-04-07T14:35:03.403 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: election_strategy: 1 2024-04-07T14:35:03.403 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: 0: [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] mon.a 2024-04-07T14:35:03.403 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: fsmap 2024-04-07T14:35:03.403 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: osdmap e1: 0 total, 0 up, 0 in 2024-04-07T14:35:03.403 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: mgrmap e1: no daemons active 2024-04-07T14:35:03.403 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:03 smithi062 ceph-mon[29612]: from='client.? 172.21.15.62:0/3142130220' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-04-07T14:35:03.404 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout cluster: 2024-04-07T14:35:03.406 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout id: dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:03.406 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-04-07T14:35:03.406 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:03.406 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout services: 2024-04-07T14:35:03.406 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.52491s) 2024-04-07T14:35:03.406 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout data: 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout pgs: 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:mon is available 2024-04-07T14:35:03.407 INFO:teuthology.orchestra.run.smithi062.stdout:Assimilating anything we can from ceph.conf... 2024-04-07T14:35:04.454 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [global] 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout fsid = dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.62:3300,v1:172.21.15.62:6789] 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [osd] 2024-04-07T14:35:04.455 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-07T14:35:04.456 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-07T14:35:04.456 INFO:teuthology.orchestra.run.smithi062.stdout:Generating new minimal ceph.conf... 2024-04-07T14:35:04.512 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:04 smithi062 ceph-mon[29612]: from='client.? 172.21.15.62:0/2990669652' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-07T14:35:04.512 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:04 smithi062 ceph-mon[29612]: from='client.? 172.21.15.62:0/2990669652' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-04-07T14:35:05.623 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:05 smithi062 ceph-mon[29612]: from='client.? 172.21.15.62:0/2692124003' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-04-07T14:35:05.625 INFO:teuthology.orchestra.run.smithi062.stdout:Restarting the monitor... 2024-04-07T14:35:05.888 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:05 smithi062 systemd[1]: Stopping Ceph mon.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4... 2024-04-07T14:35:06.262 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:05 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a[29589]: 2024-04-07T14:35:05.888+0000 7f777e894700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-07T14:35:06.262 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:05 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a[29589]: 2024-04-07T14:35:05.888+0000 7f777e894700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-07T14:35:06.262 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 podman[29928]: 2024-04-07 14:35:06.052458626 +0000 UTC m=+0.259524363 container died c3084998d8cafba34179a965c7b89f39b7793b4799bed6a2980f33bcf3adf5f5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, ceph=True, GIT_REPO=git@github.com:ceph/ceph-container.git, maintainer=Guillaume Abrioux , org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-e5c885f, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, GIT_CLEAN=True, io.buildah.version=1.33.5, org.label-schema.build-date=20240326, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=) 2024-04-07T14:35:06.676 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 podman[29928]: 2024-04-07 14:35:06.402197393 +0000 UTC m=+0.609263137 container cleanup c3084998d8cafba34179a965c7b89f39b7793b4799bed6a2980f33bcf3adf5f5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git, io.buildah.version=1.33.5, org.label-schema.schema-version=1.0, GIT_CLEAN=True, org.label-schema.build-date=20240326, org.label-schema.license=GPLv2, ceph=True, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, org.label-schema.vendor=CentOS, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, RELEASE=main-e5c885f) 2024-04-07T14:35:06.676 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 bash[29928]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a 2024-04-07T14:35:07.002 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 podman[29947]: 2024-04-07 14:35:06.678319271 +0000 UTC m=+0.621881547 container remove c3084998d8cafba34179a965c7b89f39b7793b4799bed6a2980f33bcf3adf5f5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240326, ceph=True, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, GIT_BRANCH=HEAD, RELEASE=main-e5c885f) 2024-04-07T14:35:07.003 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 systemd[1]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service: Deactivated successfully. 2024-04-07T14:35:07.003 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 systemd[1]: Stopped Ceph mon.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4. 2024-04-07T14:35:07.003 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:06 smithi062 systemd[1]: Starting Ceph mon.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4... 2024-04-07T14:35:07.262 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 podman[30044]: 2024-04-07 14:35:07.004275334 +0000 UTC m=+0.093490352 container create 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, GIT_CLEAN=True, RELEASE=main-e5c885f, org.label-schema.build-date=20240326, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, io.buildah.version=1.33.5, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, CEPH_POINT_RELEASE=) 2024-04-07T14:35:07.262 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 podman[30044]: 2024-04-07 14:35:06.928287707 +0000 UTC m=+0.017502753 image pull fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 podman[30044]: 2024-04-07 14:35:07.181712305 +0000 UTC m=+0.270927336 container init 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_CLEAN=True, ceph=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20240326, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 8 Base Image, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, RELEASE=main-e5c885f, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD) 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 podman[30044]: 2024-04-07 14:35:07.18712935 +0000 UTC m=+0.276344369 container start 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.build-date=20240326, CEPH_POINT_RELEASE=, org.label-schema.vendor=CentOS, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, ceph=True, org.label-schema.name=CentOS Stream 8 Base Image, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, io.buildah.version=1.33.5, GIT_CLEAN=True, RELEASE=main-e5c885f, maintainer=Guillaume Abrioux ) 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: set uid:gid to 167:167 (ceph:ceph) 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: ceph version 19.0.0-2578-ge5c885fe (e5c885fe95ee982ff7b45214daa61b1a6d09d57d) squid (dev), process ceph-mon, pid 7 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: pidfile_write: ignore empty --pid-file 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: load: jerasure load: lrc 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: RocksDB version: 7.9.2 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Git sha 0 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Compile date 2024-04-01 20:25:56 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: DB SUMMARY 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: DB Session ID: 7SRZ1J6M30PXFN1B33OU 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: CURRENT file: CURRENT 2024-04-07T14:35:07.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: IDENTITY file: IDENTITY 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 89107 ; 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.error_if_exists: 0 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.create_if_missing: 0 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.paranoid_checks: 1 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.flush_verify_memtable_count: 1 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.env: 0x55eca150fc60 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.fs: PosixFileSystem 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.info_log: 0x55eca1fdfae0 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_file_opening_threads: 16 2024-04-07T14:35:07.264 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.statistics: (nil) 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.use_fsync: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_log_file_size: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_manifest_file_size: 1073741824 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.log_file_time_to_roll: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.keep_log_file_num: 1000 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.recycle_log_file_num: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.allow_fallocate: 1 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.allow_mmap_reads: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.allow_mmap_writes: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.use_direct_reads: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.create_missing_column_families: 0 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.db_log_dir: 2024-04-07T14:35:07.265 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.wal_dir: 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.table_cache_numshardbits: 6 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.WAL_ttl_seconds: 0 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.WAL_size_limit_MB: 0 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.manifest_preallocation_size: 4194304 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.is_fd_close_on_exec: 1 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.advise_random_on_open: 1 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.db_write_buffer_size: 0 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.write_buffer_manager: 0x55eca1fb01e0 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.access_hint_on_compaction_start: 1 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.random_access_max_buffer_size: 1048576 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.use_adaptive_mutex: 0 2024-04-07T14:35:07.266 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.rate_limiter: (nil) 2024-04-07T14:35:07.267 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-04-07T14:35:07.267 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.wal_recovery_mode: 2 2024-04-07T14:35:07.268 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.enable_thread_tracking: 0 2024-04-07T14:35:07.268 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.enable_pipelined_write: 0 2024-04-07T14:35:07.268 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.unordered_write: 0 2024-04-07T14:35:07.268 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.allow_concurrent_memtable_write: 1 2024-04-07T14:35:07.268 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-04-07T14:35:07.268 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.write_thread_max_yield_usec: 100 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.write_thread_slow_yield_usec: 3 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.row_cache: None 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.wal_filter: None 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.avoid_flush_during_recovery: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.allow_ingest_behind: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.two_write_queues: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.manual_wal_flush: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.wal_compression: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.atomic_flush: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.persist_stats_to_disk: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.write_dbid_to_manifest: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.log_readahead_size: 0 2024-04-07T14:35:07.269 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.file_checksum_gen_factory: Unknown 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.best_efforts_recovery: 0 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.allow_data_in_errors: 0 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.db_host_id: __hostname__ 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.enforce_single_del_contracts: true 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_background_jobs: 2 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_background_compactions: -1 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_subcompactions: 1 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.avoid_flush_during_shutdown: 0 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-04-07T14:35:07.270 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.delayed_write_rate : 16777216 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_total_wal_size: 0 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.stats_dump_period_sec: 600 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.stats_persist_period_sec: 600 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.stats_history_buffer_size: 1048576 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_open_files: -1 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bytes_per_sync: 0 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.wal_bytes_per_sync: 0 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.strict_bytes_per_sync: 0 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_readahead_size: 0 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_background_flushes: -1 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Compression algorithms supported: 2024-04-07T14:35:07.271 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kZSTDNotFinalCompression supported: 0 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kZSTD supported: 0 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kXpressCompression supported: 0 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kLZ4HCCompression supported: 1 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kZlibCompression supported: 1 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kSnappyCompression supported: 1 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kLZ4Compression supported: 1 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: kBZip2Compression supported: 0 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Fast CRC32 supported: Supported on x86 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: DMutex implementation: pthread_mutex_t 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-04-07T14:35:07.272 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.merge_operator: 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_filter: None 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_filter_factory: None 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.sst_partitioner_factory: None 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.memtable_factory: SkipListFactory 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.table_factory: BlockBasedTable 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55eca1fdfcc0) 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: cache_index_and_filter_blocks: 1 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: pin_top_level_index_and_filter: 1 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: index_type: 0 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: data_block_index_type: 0 2024-04-07T14:35:07.273 INFO:journalctl@ceph.mon.a.smithi062.stdout: index_shortening: 1 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: data_block_hash_table_util_ratio: 0.750000 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: checksum: 4 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: no_block_cache: 0 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_cache: 0x55eca1fe3090 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_cache_name: BinnedLRUCache 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_cache_options: 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: capacity : 536870912 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: num_shard_bits : 4 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: strict_capacity_limit : 0 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: high_pri_pool_ratio: 0.000 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_cache_compressed: (nil) 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: persistent_cache: (nil) 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_size: 4096 2024-04-07T14:35:07.274 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_size_deviation: 10 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_restart_interval: 16 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: index_block_restart_interval: 1 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: metadata_block_size: 4096 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: partition_filters: 0 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: use_delta_encoding: 1 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: filter_policy: bloomfilter 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: whole_key_filtering: 1 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: verify_compression: 0 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: read_amp_bytes_per_bit: 0 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: format_version: 5 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: enable_index_compression: 1 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: block_align: 0 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: max_auto_readahead_size: 262144 2024-04-07T14:35:07.275 INFO:journalctl@ceph.mon.a.smithi062.stdout: prepopulate_block_cache: 0 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout: initial_auto_readahead_size: 8192 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout: num_file_reads_for_auto_readahead: 2 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.write_buffer_size: 33554432 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_write_buffer_number: 2 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression: NoCompression 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression: Disabled 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.prefix_extractor: nullptr 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.num_levels: 7 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-04-07T14:35:07.276 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.level: 32767 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.enabled: false 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.window_bits: -14 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.level: 32767 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.strategy: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-04-07T14:35:07.277 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.parallel_threads: 1 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.enabled: false 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.level0_stop_writes_trigger: 36 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.target_file_size_base: 67108864 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.target_file_size_multiplier: 1 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_base: 268435456 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-04-07T14:35:07.278 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_compaction_bytes: 1677721600 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.arena_block_size: 1048576 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.disable_auto_compactions: 0 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-04-07T14:35:07.279 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.inplace_update_support: 0 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.inplace_update_num_locks: 10000 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.memtable_whole_key_filtering: 0 2024-04-07T14:35:07.280 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.memtable_huge_page_size: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.bloom_locality: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.max_successive_merges: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.optimize_filters_for_hits: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.paranoid_file_checks: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.force_consistency_checks: 1 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.report_bg_io_stats: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.ttl: 2592000 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.periodic_compaction_seconds: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.preclude_last_level_data_seconds: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.preserve_internal_time_seconds: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.enable_blob_files: false 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.min_blob_size: 0 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.blob_file_size: 268435456 2024-04-07T14:35:07.281 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.blob_compression_type: NoCompression 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.enable_blob_garbage_collection: false 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.blob_compaction_readahead_size: 0 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.blob_file_starting_level: 0 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 1a90dddd-6384-4a1d-841d-24255683bbe4 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712500507215111, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712500507216016, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85724, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 258, "table_properties": {"data_size": 83871, "index_size": 237, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10201, "raw_average_key_size": 47, "raw_value_size": 78078, "raw_average_value_size": 359, "num_data_blocks": 11, "num_entries": 217, "num_filter_entries": 217, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1712500507, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "1a90dddd-6384-4a1d-841d-24255683bbe4", "db_session_id": "7SRZ1J6M30PXFN1B33OU", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-04-07T14:35:07.282 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: EVENT_LOG_v1 {"time_micros": 1712500507216098, "job": 1, "event": "recovery_finished"} 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55eca20d2000 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: DB pointer 0x55eca20bc000 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: rocksdb: [db/db_impl/db_impl.cc:1111] 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: ** DB Stats ** 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-04-07T14:35:07.283 INFO:journalctl@ceph.mon.a.smithi062.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: ** Compaction Stats [default] ** 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: L0 2/0 85.58 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 135.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: Sum 2/0 85.58 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 135.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 135.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: ** Compaction Stats [default] ** 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 135.4 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-04-07T14:35:07.284 INFO:journalctl@ceph.mon.a.smithi062.stdout: 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Uptime(secs): 0.0 total, 0.0 interval 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Flush(GB): cumulative 0.000, interval 0.000 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: AddFile(Total Files): cumulative 0, interval 0 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: AddFile(L0 Files): cumulative 0, interval 0 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: AddFile(Keys): cumulative 0, interval 0 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Cumulative compaction: 0.00 GB write, 28.14 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Interval compaction: 0.00 GB write, 28.14 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Block cache BinnedLRUCache@0x55eca1fe3090#7 capacity: 512.00 MB usage: 1.19 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 8e-06 secs_since: 0 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.42 KB,8.04663e-05%) Misc(1,0.00 KB,0%) 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout: ** File Read Latency Histogram By Level [default] ** 2024-04-07T14:35:07.285 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: starting mon.a rank 0 at public addrs [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] at bind addrs [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???) e1 preinit fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).mds e1 new map 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).mds e1 print_map 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout: e1 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout: enable_multiple, ever_enabled_multiple: 1,1 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout: legacy client fscid: -1 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout: 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout: No filesystems configured 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-04-07T14:35:07.286 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-04-07T14:35:07.287 INFO:teuthology.orchestra.run.smithi062.stdout:Setting public_network to 172.21.0.0/20 in mon config section 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 bash[30044]: 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mon.a is new leader, mons a in quorum (ranks 0) 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: monmap epoch 1 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 systemd[1]: Started Ceph mon.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4. 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: last_changed 2024-04-07T14:34:59.374781+0000 2024-04-07T14:35:07.641 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: created 2024-04-07T14:34:59.374781+0000 2024-04-07T14:35:07.642 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: min_mon_release 19 (squid) 2024-04-07T14:35:07.642 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: election_strategy: 1 2024-04-07T14:35:07.642 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: 0: [v2:172.21.15.62:3300/0,v1:172.21.15.62:6789/0] mon.a 2024-04-07T14:35:07.642 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: fsmap 2024-04-07T14:35:07.642 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: osdmap e1: 0 total, 0 up, 0 in 2024-04-07T14:35:07.642 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:07 smithi062 ceph-mon[30082]: mgrmap e1: no daemons active 2024-04-07T14:35:08.381 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote config to /etc/ceph/ceph.conf 2024-04-07T14:35:08.394 INFO:teuthology.orchestra.run.smithi062.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-04-07T14:35:08.394 INFO:teuthology.orchestra.run.smithi062.stdout:Creating mgr... 2024-04-07T14:35:08.394 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:9283 ... 2024-04-07T14:35:08.395 INFO:teuthology.orchestra.run.smithi062.stdout:Verifying port 0.0.0.0:8765 ... 2024-04-07T14:35:08.642 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a 2024-04-07T14:35:08.642 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service not loaded. 2024-04-07T14:35:08.791 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service → /etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@.service. 2024-04-07T14:35:09.111 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:08 smithi062 ceph-mon[30082]: from='client.? 172.21.15.62:0/3622021552' entity='client.admin' 2024-04-07T14:35:09.111 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 podman[30325]: 2024-04-07 14:35:08.92830624 +0000 UTC m=+0.017291122 image pull fe467d9065a1c6ff757668cf0f97eb2a00e56f51271fffd4b076c4d1580a91ce quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d 2024-04-07T14:35:09.336 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T14:35:09.337 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-04-07T14:35:09.344 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T14:35:09.344 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-04-07T14:35:09.344 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-04-07T14:35:09.344 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to enable service . firewalld.service is not available 2024-04-07T14:35:09.352 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2024-04-07T14:35:09.352 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout disabled 2024-04-07T14:35:09.359 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2024-04-07T14:35:09.359 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stdout inactive 2024-04-07T14:35:09.359 INFO:teuthology.orchestra.run.smithi062.stdout:firewalld.service is not enabled 2024-04-07T14:35:09.359 INFO:teuthology.orchestra.run.smithi062.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2024-04-07T14:35:09.359 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr to start... 2024-04-07T14:35:09.359 INFO:teuthology.orchestra.run.smithi062.stdout:Waiting for mgr... 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 podman[30325]: 2024-04-07 14:35:09.217412496 +0000 UTC m=+0.306397368 container init 738d47cb0aec18e2ddf3af5712676c78a5889bb2a92a98dac093f045ed4eb1c5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a, ceph=True, org.label-schema.build-date=20240326, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, org.label-schema.license=GPLv2, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-e5c885f, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0) 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 podman[30325]: 2024-04-07 14:35:09.222584335 +0000 UTC m=+0.311569206 container start 738d47cb0aec18e2ddf3af5712676c78a5889bb2a92a98dac093f045ed4eb1c5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20240326, CEPH_POINT_RELEASE=, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5, GIT_BRANCH=HEAD, RELEASE=main-e5c885f, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.name=CentOS Stream 8 Base Image, GIT_CLEAN=True) 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.282+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.282+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.286+0000 7f8215752200 -1 mgr[py] Class not found in module 'restful' 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.286+0000 7f8215752200 -1 mgr[py] Error loading module 'restful': (22) Invalid argument 2024-04-07T14:35:09.470 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.301+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.301+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.305+0000 7f8215752200 -1 mgr[py] Class not found in module 'mds_autoscaler' 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.305+0000 7f8215752200 -1 mgr[py] Error loading module 'mds_autoscaler': (22) Invalid argument 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.320+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.320+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.324+0000 7f8215752200 -1 mgr[py] Class not found in module 'osd_perf_query' 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.324+0000 7f8215752200 -1 mgr[py] Error loading module 'osd_perf_query': (22) Invalid argument 2024-04-07T14:35:09.471 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 bash[30325]: 738d47cb0aec18e2ddf3af5712676c78a5889bb2a92a98dac093f045ed4eb1c5 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 systemd[1]: Started Ceph mgr.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4. 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.339+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.339+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.344+0000 7f8215752200 -1 mgr[py] Class not found in module 'snap_schedule' 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.344+0000 7f8215752200 -1 mgr[py] Error loading module 'snap_schedule': (22) Invalid argument 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.359+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.359+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.363+0000 7f8215752200 -1 mgr[py] Class not found in module 'dashboard' 2024-04-07T14:35:09.472 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.363+0000 7f8215752200 -1 mgr[py] Error loading module 'dashboard': (22) Invalid argument 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.380+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.380+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.385+0000 7f8215752200 -1 mgr[py] Class not found in module 'zabbix' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.385+0000 7f8215752200 -1 mgr[py] Error loading module 'zabbix': (22) Invalid argument 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.400+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.400+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.405+0000 7f8215752200 -1 mgr[py] Class not found in module 'balancer' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.405+0000 7f8215752200 -1 mgr[py] Error loading module 'balancer': (22) Invalid argument 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.420+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.420+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.424+0000 7f8215752200 -1 mgr[py] Class not found in module 'influx' 2024-04-07T14:35:09.473 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.424+0000 7f8215752200 -1 mgr[py] Error loading module 'influx': (22) Invalid argument 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.447+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.447+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.451+0000 7f8215752200 -1 mgr[py] Class not found in module 'alerts' 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.451+0000 7f8215752200 -1 mgr[py] Error loading module 'alerts': (22) Invalid argument 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.466+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.466+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.470+0000 7f8215752200 -1 mgr[py] Class not found in module 'iostat' 2024-04-07T14:35:09.474 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.470+0000 7f8215752200 -1 mgr[py] Error loading module 'iostat': (22) Invalid argument 2024-04-07T14:35:09.720 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.485+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.720 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.485+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.720 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.720 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.489+0000 7f8215752200 -1 mgr[py] Class not found in module 'rgw' 2024-04-07T14:35:09.720 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.489+0000 7f8215752200 -1 mgr[py] Error loading module 'rgw': (22) Invalid argument 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.504+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.504+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.508+0000 7f8215752200 -1 mgr[py] Class not found in module 'rbd_support' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.508+0000 7f8215752200 -1 mgr[py] Error loading module 'rbd_support': (22) Invalid argument 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.523+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.523+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.527+0000 7f8215752200 -1 mgr[py] Class not found in module 'progress' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.527+0000 7f8215752200 -1 mgr[py] Error loading module 'progress': (22) Invalid argument 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.542+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.542+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.546+0000 7f8215752200 -1 mgr[py] Class not found in module 'pg_autoscaler' 2024-04-07T14:35:09.721 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.546+0000 7f8215752200 -1 mgr[py] Error loading module 'pg_autoscaler': (22) Invalid argument 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.561+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.561+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.565+0000 7f8215752200 -1 mgr[py] Class not found in module 'devicehealth' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.565+0000 7f8215752200 -1 mgr[py] Error loading module 'devicehealth': (22) Invalid argument 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.579+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.579+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.583+0000 7f8215752200 -1 mgr[py] Class not found in module 'k8sevents' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.583+0000 7f8215752200 -1 mgr[py] Error loading module 'k8sevents': (22) Invalid argument 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.598+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.598+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.722 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.602+0000 7f8215752200 -1 mgr[py] Class not found in module 'rook' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.602+0000 7f8215752200 -1 mgr[py] Error loading module 'rook': (22) Invalid argument 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.618+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.618+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.622+0000 7f8215752200 -1 mgr[py] Class not found in module 'diskprediction_local' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.622+0000 7f8215752200 -1 mgr[py] Error loading module 'diskprediction_local': (22) Invalid argument 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.663+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.663+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.667+0000 7f8215752200 -1 mgr[py] Class not found in module 'mirroring' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.667+0000 7f8215752200 -1 mgr[py] Error loading module 'mirroring': (22) Invalid argument 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.682+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.682+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.723 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.687+0000 7f8215752200 -1 mgr[py] Class not found in module 'selftest' 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.687+0000 7f8215752200 -1 mgr[py] Error loading module 'selftest': (22) Invalid argument 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.701+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.701+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.706+0000 7f8215752200 -1 mgr[py] Class not found in module 'telegraf' 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.706+0000 7f8215752200 -1 mgr[py] Error loading module 'telegraf': (22) Invalid argument 2024-04-07T14:35:09.724 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.720+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.720+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.724+0000 7f8215752200 -1 mgr[py] Class not found in module 'test_orchestrator' 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.724+0000 7f8215752200 -1 mgr[py] Error loading module 'test_orchestrator': (22) Invalid argument 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.739+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.739+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.743+0000 7f8215752200 -1 mgr[py] Class not found in module 'localpool' 2024-04-07T14:35:09.973 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.743+0000 7f8215752200 -1 mgr[py] Error loading module 'localpool': (22) Invalid argument 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.758+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.758+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.762+0000 7f8215752200 -1 mgr[py] Class not found in module 'crash' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.762+0000 7f8215752200 -1 mgr[py] Error loading module 'crash': (22) Invalid argument 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.777+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.777+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.781+0000 7f8215752200 -1 mgr[py] Class not found in module 'insights' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.781+0000 7f8215752200 -1 mgr[py] Error loading module 'insights': (22) Invalid argument 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.796+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.796+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.974 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.800+0000 7f8215752200 -1 mgr[py] Class not found in module 'orchestrator' 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.800+0000 7f8215752200 -1 mgr[py] Error loading module 'orchestrator': (22) Invalid argument 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.816+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.816+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.820+0000 7f8215752200 -1 mgr[py] Class not found in module 'osd_support' 2024-04-07T14:35:09.975 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.820+0000 7f8215752200 -1 mgr[py] Error loading module 'osd_support': (22) Invalid argument 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.835+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.835+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.839+0000 7f8215752200 -1 mgr[py] Class not found in module 'volumes' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.839+0000 7f8215752200 -1 mgr[py] Error loading module 'volumes': (22) Invalid argument 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.891+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.891+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.895+0000 7f8215752200 -1 mgr[py] Class not found in module 'stats' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.895+0000 7f8215752200 -1 mgr[py] Error loading module 'stats': (22) Invalid argument 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.912+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.912+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.976 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.916+0000 7f8215752200 -1 mgr[py] Class not found in module 'cephadm' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.916+0000 7f8215752200 -1 mgr[py] Error loading module 'cephadm': (22) Invalid argument 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.931+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.931+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.935+0000 7f8215752200 -1 mgr[py] Class not found in module 'telemetry' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.935+0000 7f8215752200 -1 mgr[py] Error loading module 'telemetry': (22) Invalid argument 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.950+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.950+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.954+0000 7f8215752200 -1 mgr[py] Class not found in module 'prometheus' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.954+0000 7f8215752200 -1 mgr[py] Error loading module 'prometheus': (22) Invalid argument 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.968+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.968+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:09.977 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.978 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.973+0000 7f8215752200 -1 mgr[py] Class not found in module 'status' 2024-04-07T14:35:09.978 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.973+0000 7f8215752200 -1 mgr[py] Error loading module 'status': (22) Invalid argument 2024-04-07T14:35:10.262 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.989+0000 7f8215752200 -1 mgr[py] Module not found: 'mgr_module' 2024-04-07T14:35:10.262 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.989+0000 7f8215752200 -1 mgr[py] ModuleNotFoundError: No module named 'mgr_module' 2024-04-07T14:35:10.262 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:10.262 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.993+0000 7f8215752200 -1 mgr[py] Class not found in module 'nfs' 2024-04-07T14:35:10.262 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.993+0000 7f8215752200 -1 mgr[py] Error loading module 'nfs': (22) Invalid argument 2024-04-07T14:35:10.262 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:09 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:09.993+0000 7f8215752200 -1 log_channel(cluster) log [ERR] : Failed to load ceph-mgr modules: restful, mds_autoscaler, osd_perf_query, snap_schedule, dashboard, zabbix, balancer, influx, alerts, iostat, rgw, rbd_support, progress, pg_autoscaler, devicehealth, k8sevents, rook, diskprediction_local, mirroring, selftest, telegraf, test_orchestrator, localpool, crash, insights, orchestrator, osd_support, volumes, stats, cephadm, telemetry, prometheus, status, nfs 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: from='client.? 172.21.15.62:0/3377206051' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: Activating manager daemon a 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: mgrmap e2: a(active, starting, since 0.00211358s) 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: from='mgr.14100 172.21.15.62:0/3196546893' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: from='mgr.14100 172.21.15.62:0/3196546893' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: from='mgr.14100 172.21.15.62:0/3196546893' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: from='mgr.14100 172.21.15.62:0/3196546893' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: from='mgr.14100 172.21.15.62:0/3196546893' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2024-04-07T14:35:10.263 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:10 smithi062 ceph-mon[30082]: Manager daemon a is now available 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "dd3ba138-f4eb-11ee-b649-cb9ed24678a4", 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-07T14:35:10.578 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "a" 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-07T14:35:10.579 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-07T14:35:10.580 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-07T14:35:10.583 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": false, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-07T14:35:10.584 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-04-07T14:35:02.324782+0000", 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-04-07T14:35:10.585 INFO:teuthology.orchestra.run.smithi062.stdout:mgr not available, waiting (1/15)... 2024-04-07T14:35:12.262 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:12 smithi062 ceph-mon[30082]: mgrmap e3: a(active, since 1.00408s) 2024-04-07T14:35:13.370 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:13 smithi062 ceph-mon[30082]: from='client.? 172.21.15.62:0/4128578301' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout { 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsid": "dd3ba138-f4eb-11ee-b649-cb9ed24678a4", 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "health": { 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.654 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 0 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "a" 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "monmap": { 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:13.655 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-04-07T14:35:13.656 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-04-07T14:35:13.656 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-04-07T14:35:13.656 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-04-07T14:35:13.656 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-04-07T14:35:13.656 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-04-07T14:35:13.659 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.659 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-04-07T14:35:13.659 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-04-07T14:35:13.659 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-04-07T14:35:13.659 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-04-07T14:35:13.659 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "available": true, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-04-07T14:35:13.660 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modules": [ 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "iostat", 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "nfs", 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "restful" 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout ], 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "modified": "2024-04-07T14:35:02.324782+0000", 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "services": {} 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout }, 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout } 2024-04-07T14:35:13.661 INFO:teuthology.orchestra.run.smithi062.stdout:mgr is available 2024-04-07T14:35:14.502 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:14 smithi062 ceph-mon[30082]: from='client.? 172.21.15.62:0/2423062404' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-04-07T14:35:16.069 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:16.069 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [global] 2024-04-07T14:35:16.069 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout fsid = dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:16.069 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-04-07T14:35:16.069 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-04-07T14:35:16.069 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [mgr] 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout [osd] 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-04-07T14:35:16.070 INFO:teuthology.orchestra.run.smithi062.stdout:Enabling cephadm module... 2024-04-07T14:35:19.512 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:19 smithi062 ceph-mon[30082]: from='client.? 172.21.15.62:0/2657642995' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-04-07T14:35:25.222 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 2 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -e NODE_NAME=smithi062 -v /var/log/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmp6vagz24o:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpcisxd7_9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm 2024-04-07T14:35:25.222 INFO:teuthology.orchestra.run.smithi062.stdout:/usr/bin/ceph: stderr Error ENOENT: module 'cephadm' reports that it cannot run on the active manager daemon: No module named 'mgr_module' (pass --force to force enablement) 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -e NODE_NAME=smithi062 -v /var/log/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmp6vagz24o:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpcisxd7_9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm: Error ENOENT: module 'cephadm' reports that it cannot run on the active manager daemon: No module named 'mgr_module' (pass --force to force enablement) 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stdout: *************** 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stdout: Cephadm hit an issue during cluster installation. Current cluster files will be deleted automatically. 2024-04-07T14:35:25.223 INFO:teuthology.orchestra.run.smithi062.stdout: To disable this behaviour you can pass the --no-cleanup-on-failure flag. In case of any previous 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: broken installation, users must use the following command to completely delete the broken cluster: 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: > cephadm rm-cluster --force --zap-osds --fsid 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: for more information please refer to https://docs.ceph.com/en/latest/cephadm/operations/#purging-a-cluster 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: *************** 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout: 2024-04-07T14:35:25.224 INFO:teuthology.orchestra.run.smithi062.stdout:Deleting cluster with fsid: dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:25.255 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5803c98bb155,19.3MB / 33.27GB 2024-04-07T14:35:25.255 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 738d47cb0aec,101.8MB / 33.27GB 2024-04-07T14:35:25.284 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 5803c98bb155,0.65% 2024-04-07T14:35:25.284 INFO:teuthology.orchestra.run.smithi062.stdout:/bin/podman: stdout 738d47cb0aec,5.16% 2024-04-07T14:35:25.512 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:25 smithi062 systemd[1]: Stopping Ceph mon.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4... 2024-04-07T14:35:26.413 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a[30059]: 2024-04-07T14:35:26.077+0000 7f3349b40700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2024-04-07T14:35:26.413 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a[30059]: 2024-04-07T14:35:26.077+0000 7f3349b40700 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2024-04-07T14:35:26.413 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 podman[30798]: 2024-04-07 14:35:26.139520142 +0000 UTC m=+0.690496867 container died 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, GIT_BRANCH=HEAD, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_REPO=git@github.com:ceph/ceph-container.git, ceph=True, CEPH_POINT_RELEASE=, org.label-schema.schema-version=1.0, org.label-schema.build-date=20240326, RELEASE=main-e5c885f, io.buildah.version=1.33.5, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, maintainer=Guillaume Abrioux , org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-07T14:35:26.706 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 podman[30798]: 2024-04-07 14:35:26.490787206 +0000 UTC m=+1.041763941 container cleanup 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.license=GPLv2, RELEASE=main-e5c885f, GIT_REPO=git@github.com:ceph/ceph-container.git, CEPH_POINT_RELEASE=, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, GIT_CLEAN=True, maintainer=Guillaume Abrioux , org.label-schema.build-date=20240326, org.label-schema.name=CentOS Stream 8 Base Image, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.33.5, GIT_BRANCH=HEAD) 2024-04-07T14:35:26.707 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 bash[30798]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a 2024-04-07T14:35:26.995 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service". 2024-04-07T14:35:27.002 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 5 from systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service 2024-04-07T14:35:27.002 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service not loaded. 2024-04-07T14:35:27.007 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service 2024-04-07T14:35:27.008 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service not loaded. 2024-04-07T14:35:27.011 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 podman[30817]: 2024-04-07 14:35:26.708576762 +0000 UTC m=+0.572601640 container remove 5803c98bb1557e4fd1f813c96013cceb43c5fa775e03ae7a3ea74c0caa92499c (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mon-a, org.label-schema.build-date=20240326, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, org.label-schema.schema-version=1.0, ceph=True, maintainer=Guillaume Abrioux , org.label-schema.license=GPLv2, RELEASE=main-e5c885f, io.buildah.version=1.33.5, GIT_CLEAN=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.name=CentOS Stream 8 Base Image, GIT_REPO=git@github.com:ceph/ceph-container.git) 2024-04-07T14:35:27.011 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 systemd[1]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service: Deactivated successfully. 2024-04-07T14:35:27.012 INFO:journalctl@ceph.mon.a.smithi062.stdout:Apr 07 14:35:26 smithi062 systemd[1]: Stopped Ceph mon.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4. 2024-04-07T14:35:27.013 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl disable ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service 2024-04-07T14:35:27.014 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mon.a.service does not exist. 2024-04-07T14:35:27.281 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 systemd[1]: Stopping Ceph mgr.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4... 2024-04-07T14:35:27.281 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a[30340]: 2024-04-07T14:35:27.272+0000 7f8209d40700 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2024-04-07T14:35:27.568 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 podman[30934]: 2024-04-07 14:35:27.283347462 +0000 UTC m=+0.110941297 container died 738d47cb0aec18e2ddf3af5712676c78a5889bb2a92a98dac093f045ed4eb1c5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a, RELEASE=main-e5c885f, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.vendor=CentOS, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, maintainer=Guillaume Abrioux , CEPH_POINT_RELEASE=, GIT_REPO=git@github.com:ceph/ceph-container.git, GIT_BRANCH=HEAD, org.label-schema.license=GPLv2, org.label-schema.build-date=20240326, ceph=True, GIT_CLEAN=True, org.label-schema.schema-version=1.0, io.buildah.version=1.33.5) 2024-04-07T14:35:27.568 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 podman[30934]: 2024-04-07 14:35:27.569965574 +0000 UTC m=+0.397559416 container cleanup 738d47cb0aec18e2ddf3af5712676c78a5889bb2a92a98dac093f045ed4eb1c5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a, CEPH_POINT_RELEASE=, GIT_BRANCH=HEAD, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, ceph=True, org.label-schema.schema-version=1.0, GIT_CLEAN=True, RELEASE=main-e5c885f, maintainer=Guillaume Abrioux , io.buildah.version=1.33.5, GIT_REPO=git@github.com:ceph/ceph-container.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.build-date=20240326, org.label-schema.name=CentOS Stream 8 Base Image) 2024-04-07T14:35:27.922 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 bash[30934]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a 2024-04-07T14:35:27.922 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 podman[30953]: 2024-04-07 14:35:27.812785176 +0000 UTC m=+0.529458330 container remove 738d47cb0aec18e2ddf3af5712676c78a5889bb2a92a98dac093f045ed4eb1c5 (image=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d, name=ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-mgr-a, org.label-schema.license=GPLv2, io.buildah.version=1.33.5, org.label-schema.name=CentOS Stream 8 Base Image, org.label-schema.schema-version=1.0, maintainer=Guillaume Abrioux , GIT_BRANCH=HEAD, GIT_CLEAN=True, ceph=True, GIT_COMMIT=12717c0777377369ea674892da98b0d85250f5b0, org.label-schema.vendor=CentOS, CEPH_POINT_RELEASE=, org.label-schema.build-date=20240326, GIT_REPO=git@github.com:ceph/ceph-container.git, RELEASE=main-e5c885f) 2024-04-07T14:35:28.095 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service". 2024-04-07T14:35:28.176 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 5 from systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service 2024-04-07T14:35:28.177 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service not loaded. 2024-04-07T14:35:28.183 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service 2024-04-07T14:35:28.183 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to reset failed state of unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service not loaded. 2024-04-07T14:35:28.190 INFO:teuthology.orchestra.run.smithi062.stdout:Non-zero exit code 1 from systemctl disable ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service 2024-04-07T14:35:28.190 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Failed to disable unit: Unit file ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4-init@mgr.a.service does not exist. 2024-04-07T14:35:28.195 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 systemd[1]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service: Deactivated successfully. 2024-04-07T14:35:28.195 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 systemd[1]: Stopped Ceph mgr.a for dd3ba138-f4eb-11ee-b649-cb9ed24678a4. 2024-04-07T14:35:28.195 INFO:journalctl@ceph.mgr.a.smithi062.stdout:Apr 07 14:35:27 smithi062 systemd[1]: ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mgr.a.service: Consumed 1.583s CPU time. 2024-04-07T14:35:28.352 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target". 2024-04-07T14:35:28.352 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/ceph.target.wants/ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4.target". 2024-04-07T14:35:28.533 INFO:teuthology.orchestra.run.smithi062.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2024-04-07T14:35:28.534 INFO:teuthology.orchestra.run.smithi062.stderr:Traceback (most recent call last): 2024-04-07T14:35:28.535 INFO:teuthology.orchestra.run.smithi062.stderr: File "/usr/lib64/python3.9/runpy.py", line 197, in _run_module_as_main 2024-04-07T14:35:28.551 INFO:teuthology.orchestra.run.smithi062.stderr: return _run_code(code, main_globals, None, 2024-04-07T14:35:28.551 INFO:teuthology.orchestra.run.smithi062.stderr: File "/usr/lib64/python3.9/runpy.py", line 87, in _run_code 2024-04-07T14:35:28.551 INFO:teuthology.orchestra.run.smithi062.stderr: exec(code, run_globals) 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 5608, in 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 5596, in main 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2693, in _rollback 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 445, in _default_image 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2925, in command_bootstrap 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2387, in enable_cephadm_mgr_module 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/__main__.py", line 2854, in cli 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/cephadmlib/container_types.py", line 429, in run 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: File "/tmp/tmpu5iiqpri.cephadm.build/app/cephadmlib/call_wrappers.py", line 307, in call_throws 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -e NODE_NAME=smithi062 -v /var/log/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4:/var/log/ceph:z -v /tmp/ceph-tmp6vagz24o:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpcisxd7_9:/etc/ceph/ceph.conf:z quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d mgr module enable cephadm: Error ENOENT: module 'cephadm' reports that it cannot run on the active manager daemon: No module named 'mgr_module' (pass --force to force enablement) 2024-04-07T14:35:28.552 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:35:28.577 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:28.577 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-04-07T14:35:28.578 DEBUG:teuthology.orchestra.run.smithi062:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T14:35:28.592 DEBUG:teuthology.orchestra.run.smithi076:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T14:35:28.610 DEBUG:teuthology.orchestra.run.smithi111:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-04-07T14:35:28.629 INFO:tasks.cephadm:Stopping all daemons... 2024-04-07T14:35:28.629 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2024-04-07T14:35:28.629 DEBUG:teuthology.orchestra.run.smithi062:> sudo systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a 2024-04-07T14:35:28.663 INFO:teuthology.orchestra.run.smithi062.stderr:Failed to stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service: Unit ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a.service not loaded. 2024-04-07T14:35:28.665 DEBUG:teuthology.orchestra.run:got remote process result: 5 2024-04-07T14:35:28.665 ERROR:tasks.cephadm:Failed to stop "ceph.mon.a" Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T14:35:28.667 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T14:35:28.668 INFO:tasks.cephadm:Archiving crash dumps... 2024-04-07T14:35:28.669 DEBUG:teuthology.misc:Transferring archived files from smithi062:/var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi062/crash 2024-04-07T14:35:28.670 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T14:35:28.741 INFO:teuthology.orchestra.run.smithi062.stderr:tar: /var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T14:35:28.742 INFO:teuthology.orchestra.run.smithi062.stderr:tar: Error is not recoverable: exiting now 2024-04-07T14:35:28.744 DEBUG:teuthology.misc:Transferring archived files from smithi076:/var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi076/crash 2024-04-07T14:35:28.745 DEBUG:teuthology.orchestra.run.smithi076:> sudo tar c -f - -C /var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T14:35:28.791 INFO:teuthology.orchestra.run.smithi076.stderr:tar: /var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T14:35:28.791 INFO:teuthology.orchestra.run.smithi076.stderr:tar: Error is not recoverable: exiting now 2024-04-07T14:35:28.793 DEBUG:teuthology.misc:Transferring archived files from smithi111:/var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi111/crash 2024-04-07T14:35:28.794 DEBUG:teuthology.orchestra.run.smithi111:> sudo tar c -f - -C /var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash -- . 2024-04-07T14:35:28.836 INFO:teuthology.orchestra.run.smithi111.stderr:tar: /var/lib/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/crash: Cannot open: No such file or directory 2024-04-07T14:35:28.836 INFO:teuthology.orchestra.run.smithi111.stderr:tar: Error is not recoverable: exiting now 2024-04-07T14:35:28.837 INFO:tasks.cephadm:Checking cluster log for badness... 2024-04-07T14:35:28.838 DEBUG:teuthology.orchestra.run.smithi062:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | head -n 1 2024-04-07T14:35:28.864 INFO:teuthology.orchestra.run.smithi062.stderr:grep: /var/log/ceph/dd3ba138-f4eb-11ee-b649-cb9ed24678a4/ceph.log: No such file or directory 2024-04-07T14:35:28.866 INFO:tasks.cephadm:Compressing logs... 2024-04-07T14:35:28.866 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:35:28.908 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:35:28.911 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:35:28.932 INFO:teuthology.orchestra.run.smithi062.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-04-07T14:35:28.934 INFO:teuthology.orchestra.run.smithi062.stderr: 2024-04-07T14:35:28.934 INFO:teuthology.orchestra.run.smithi062.stderr:real 0m0.014s 2024-04-07T14:35:28.934 INFO:teuthology.orchestra.run.smithi062.stderr:user 0m0.013s 2024-04-07T14:35:28.934 INFO:teuthology.orchestra.run.smithi062.stderr:sys 0m0.013s 2024-04-07T14:35:28.939 INFO:teuthology.orchestra.run.smithi076.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-07T14:35:28.939 INFO:teuthology.orchestra.run.smithi076.stderr:: No such file or directory 2024-04-07T14:35:28.939 INFO:teuthology.orchestra.run.smithi076.stderr:/var/log/ceph/cephadm.log: 55.9% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-07T14:35:28.940 INFO:teuthology.orchestra.run.smithi111.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-04-07T14:35:28.940 INFO:teuthology.orchestra.run.smithi111.stderr:: No such file or directory 2024-04-07T14:35:28.941 INFO:teuthology.orchestra.run.smithi111.stderr:/var/log/ceph/cephadm.log: 55.8% -- replaced with /var/log/ceph/cephadm.log.gz 2024-04-07T14:35:28.942 INFO:teuthology.orchestra.run.smithi076.stderr: 2024-04-07T14:35:28.942 INFO:teuthology.orchestra.run.smithi076.stderr:real 0m0.017s 2024-04-07T14:35:28.942 INFO:teuthology.orchestra.run.smithi076.stderr:user 0m0.012s 2024-04-07T14:35:28.942 INFO:teuthology.orchestra.run.smithi076.stderr:sys 0m0.019s 2024-04-07T14:35:28.943 INFO:teuthology.orchestra.run.smithi111.stderr: 2024-04-07T14:35:28.943 INFO:teuthology.orchestra.run.smithi111.stderr:real 0m0.016s 2024-04-07T14:35:28.943 INFO:teuthology.orchestra.run.smithi111.stderr:user 0m0.014s 2024-04-07T14:35:28.943 INFO:teuthology.orchestra.run.smithi111.stderr:sys 0m0.015s 2024-04-07T14:35:28.943 INFO:tasks.cephadm:Archiving logs... 2024-04-07T14:35:28.944 DEBUG:teuthology.misc:Transferring archived files from smithi062:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi062/log 2024-04-07T14:35:28.944 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T14:35:29.000 DEBUG:teuthology.misc:Transferring archived files from smithi076:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi076/log 2024-04-07T14:35:29.001 DEBUG:teuthology.orchestra.run.smithi076:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T14:35:29.032 DEBUG:teuthology.misc:Transferring archived files from smithi111:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi111/log 2024-04-07T14:35:29.032 DEBUG:teuthology.orchestra.run.smithi111:> sudo tar c -f - -C /var/log/ceph -- . 2024-04-07T14:35:29.064 INFO:tasks.cephadm:Removing cluster... 2024-04-07T14:35:29.064 DEBUG:teuthology.orchestra.run.smithi062:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --force 2024-04-07T14:35:29.248 INFO:teuthology.orchestra.run.smithi062.stdout:Deleting cluster with fsid: dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:29.503 DEBUG:teuthology.orchestra.run.smithi076:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --force 2024-04-07T14:35:29.685 INFO:teuthology.orchestra.run.smithi076.stdout:Deleting cluster with fsid: dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:30.003 DEBUG:teuthology.orchestra.run.smithi111:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --force 2024-04-07T14:35:30.193 INFO:teuthology.orchestra.run.smithi111.stdout:Deleting cluster with fsid: dd3ba138-f4eb-11ee-b649-cb9ed24678a4 2024-04-07T14:35:30.451 INFO:tasks.cephadm:Removing cephadm ... 2024-04-07T14:35:30.451 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T14:35:30.469 DEBUG:teuthology.orchestra.run.smithi076:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T14:35:30.485 DEBUG:teuthology.orchestra.run.smithi111:> rm -rf /home/ubuntu/cephtest/cephadm 2024-04-07T14:35:30.500 INFO:tasks.cephadm:Teardown complete 2024-04-07T14:35:30.500 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 2194, 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_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 1823, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T14:35:30.701 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=d4933d6695e440d0a6452de7d4035080 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 770, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:e5c885fe95ee982ff7b45214daa61b1a6d09d57d -v bootstrap --fsid dd3ba138-f4eb-11ee-b649-cb9ed24678a4 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 172.21.15.62 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 2194, 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_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 1823, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/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_e5c885fe95ee982ff7b45214daa61b1a6d09d57d/qa/tasks/cephadm.py", line 857, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/daemon/cephadmunit.py", line 154, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_e691533f9cbb33d85b2187bba20d7102f098636d/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi062 with status 5: 'sudo systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a' 2024-04-07T14:35:30.705 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-04-07T14:35:30.715 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-04-07T14:35:30.752 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-07T14:35:30.752 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-07T14:35:30.765 DEBUG:teuthology.orchestra.run.smithi076:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-07T14:35:30.768 DEBUG:teuthology.orchestra.run.smithi111:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-04-07T14:35:30.868 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-04-07T14:35:30.877 INFO:teuthology.task.clock:Checking final clock skew... 2024-04-07T14:35:30.877 DEBUG:teuthology.orchestra.run.smithi062:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:35:30.880 DEBUG:teuthology.orchestra.run.smithi076:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:35:30.882 DEBUG:teuthology.orchestra.run.smithi111:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-04-07T14:35:30.894 INFO:teuthology.orchestra.run.smithi076.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:35:30.894 INFO:teuthology.orchestra.run.smithi062.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:35:30.896 INFO:teuthology.orchestra.run.smithi111.stderr:bash: line 1: ntpq: command not found 2024-04-07T14:35:30.898 INFO:teuthology.orchestra.run.smithi076.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:35:30.898 INFO:teuthology.orchestra.run.smithi076.stdout:=============================================================================== 2024-04-07T14:35:30.898 INFO:teuthology.orchestra.run.smithi076.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 3 -658us[ -722us] +/- 69ms 2024-04-07T14:35:30.898 INFO:teuthology.orchestra.run.smithi076.stdout:^* hv02.front.sepia.ceph.com 3 6 377 2 +9386ns[ -54us] +/- 69ms 2024-04-07T14:35:30.898 INFO:teuthology.orchestra.run.smithi076.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 2 +651us[ +588us] +/- 74ms 2024-04-07T14:35:30.898 INFO:teuthology.orchestra.run.smithi076.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:35:30.900 INFO:teuthology.orchestra.run.smithi062.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:35:30.900 INFO:teuthology.orchestra.run.smithi062.stdout:=============================================================================== 2024-04-07T14:35:30.900 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 2 -716us[ -716us] +/- 69ms 2024-04-07T14:35:30.900 INFO:teuthology.orchestra.run.smithi062.stdout:^* hv02.front.sepia.ceph.com 3 6 377 3 -48us[ -48us] +/- 69ms 2024-04-07T14:35:30.900 INFO:teuthology.orchestra.run.smithi062.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 3 +589us[ +589us] +/- 74ms 2024-04-07T14:35:30.900 INFO:teuthology.orchestra.run.smithi062.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:35:30.901 INFO:teuthology.orchestra.run.smithi111.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-04-07T14:35:30.901 INFO:teuthology.orchestra.run.smithi111.stdout:=============================================================================== 2024-04-07T14:35:30.902 INFO:teuthology.orchestra.run.smithi111.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 3 -728us[ -728us] +/- 69ms 2024-04-07T14:35:30.902 INFO:teuthology.orchestra.run.smithi111.stdout:^* hv02.front.sepia.ceph.com 3 6 377 3 -50us[ -51us] +/- 69ms 2024-04-07T14:35:30.902 INFO:teuthology.orchestra.run.smithi111.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 3 +595us[ +595us] +/- 74ms 2024-04-07T14:35:30.902 INFO:teuthology.orchestra.run.smithi111.stdout:^? hv04.front.sepia.ceph.com 0 8 0 - +0ns[ +0ns] +/- 0ns 2024-04-07T14:35:30.902 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-04-07T14:35:30.914 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-04-07T14:35:30.914 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-04-07T14:35:30.954 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:35:31.024 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:35:31.089 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:35:31.153 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:35:31.187 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:31.188 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:35:31.217 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:31.218 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:35:31.248 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:31.249 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-04-07T14:35:31.258 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-04-07T14:35:31.295 INFO:teuthology.task.internal:Duration was 539.359795 seconds 2024-04-07T14:35:31.295 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-04-07T14:35:31.330 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-04-07T14:35:31.330 DEBUG:teuthology.orchestra.run.smithi062:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T14:35:31.333 DEBUG:teuthology.orchestra.run.smithi076:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T14:35:31.336 DEBUG:teuthology.orchestra.run.smithi111:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-04-07T14:35:31.378 INFO:teuthology.orchestra.run.smithi076.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:35:31.380 INFO:teuthology.orchestra.run.smithi111.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:35:31.380 INFO:teuthology.orchestra.run.smithi062.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-04-07T14:35:31.800 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-04-07T14:35:31.800 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi062.front.sepia.ceph.com 2024-04-07T14:35:31.800 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:35:31.824 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi076.front.sepia.ceph.com 2024-04-07T14:35:31.824 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:35:31.851 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi111.front.sepia.ceph.com 2024-04-07T14:35:31.851 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:35:31.882 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-04-07T14:35:31.882 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T14:35:31.885 DEBUG:teuthology.orchestra.run.smithi076:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T14:35:31.894 DEBUG:teuthology.orchestra.run.smithi111:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-04-07T14:35:31.954 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-04-07T14:35:31.955 DEBUG:teuthology.orchestra.run.smithi062:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T14:35:31.959 DEBUG:teuthology.orchestra.run.smithi076:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T14:35:31.965 DEBUG:teuthology.orchestra.run.smithi111:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-04-07T14:35:32.092 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-04-07T14:35:32.102 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-04-07T14:35:32.102 DEBUG:teuthology.orchestra.run.smithi062:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T14:35:32.129 DEBUG:teuthology.orchestra.run.smithi076:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T14:35:32.157 DEBUG:teuthology.orchestra.run.smithi111:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-04-07T14:35:32.185 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-04-07T14:35:32.195 DEBUG:teuthology.orchestra.run.smithi062:> 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-07T14:35:32.198 DEBUG:teuthology.orchestra.run.smithi076:> 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-07T14:35:32.200 DEBUG:teuthology.orchestra.run.smithi111:> 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-07T14:35:32.221 INFO:teuthology.orchestra.run.smithi062.stdout:kernel.core_pattern = core 2024-04-07T14:35:32.223 INFO:teuthology.orchestra.run.smithi076.stdout:kernel.core_pattern = core 2024-04-07T14:35:32.251 INFO:teuthology.orchestra.run.smithi111.stdout:kernel.core_pattern = core 2024-04-07T14:35:32.279 DEBUG:teuthology.orchestra.run.smithi062:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:35:32.297 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:32.298 DEBUG:teuthology.orchestra.run.smithi076:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:35:32.311 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:32.312 DEBUG:teuthology.orchestra.run.smithi111:> test -e /home/ubuntu/cephtest/archive/coredump 2024-04-07T14:35:32.332 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-04-07T14:35:32.333 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-04-07T14:35:32.343 INFO:teuthology.task.internal:Transferring archived files... 2024-04-07T14:35:32.344 DEBUG:teuthology.misc:Transferring archived files from smithi062:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi062 2024-04-07T14:35:32.344 DEBUG:teuthology.orchestra.run.smithi062:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T14:35:32.383 DEBUG:teuthology.misc:Transferring archived files from smithi076:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi076 2024-04-07T14:35:32.383 DEBUG:teuthology.orchestra.run.smithi076:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T14:35:32.418 DEBUG:teuthology.misc:Transferring archived files from smithi111:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202/remote/smithi111 2024-04-07T14:35:32.418 DEBUG:teuthology.orchestra.run.smithi111:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-04-07T14:35:32.453 INFO:teuthology.task.internal:Removing archive directory... 2024-04-07T14:35:32.453 DEBUG:teuthology.orchestra.run.smithi062:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T14:35:32.456 DEBUG:teuthology.orchestra.run.smithi076:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T14:35:32.458 DEBUG:teuthology.orchestra.run.smithi111:> rm -rf -- /home/ubuntu/cephtest/archive 2024-04-07T14:35:32.502 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-04-07T14:35:32.515 INFO:teuthology.task.internal:Not uploading archives. 2024-04-07T14:35:32.515 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-04-07T14:35:32.572 INFO:teuthology.task.internal:Tidying up after the test... 2024-04-07T14:35:32.572 DEBUG:teuthology.orchestra.run.smithi062:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T14:35:32.575 DEBUG:teuthology.orchestra.run.smithi076:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T14:35:32.577 DEBUG:teuthology.orchestra.run.smithi111:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-04-07T14:35:32.586 INFO:teuthology.orchestra.run.smithi062.stdout: 265959 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 14:35 /home/ubuntu/cephtest 2024-04-07T14:35:32.589 INFO:teuthology.orchestra.run.smithi076.stdout: 265306 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 14:35 /home/ubuntu/cephtest 2024-04-07T14:35:32.591 INFO:teuthology.orchestra.run.smithi111.stdout: 265306 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Apr 7 14:35 /home/ubuntu/cephtest 2024-04-07T14:35:32.592 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-04-07T14:35:32.609 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-04-07T14:35:32.701 INFO:teuthology.nuke:Checking targets against current locks 2024-04-07T14:35:32.729 DEBUG:teuthology.nuke:shortname: smithi062 2024-04-07T14:35:32.729 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:35:32.753 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi062.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202', '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-07 14:17:29.741872', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKbIaKQIElrCVqd1PhKc6+Tqa4imt2DvHjMuJ7GXt0+DkOcbVikSCNVJWlQ3Q+BDtjmf3ghE6e1BYkwj2VnTHKg='} 2024-04-07T14:35:32.757 DEBUG:teuthology.nuke:shortname: smithi076 2024-04-07T14:35:32.758 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:35:32.780 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi076.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202', '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-07 14:17:29.743374', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBp4vrWfKnjUI/zuvCEOToEHlm4w9NcJSWmUmoY2KCWWs7nrRmVF1X7yVeFr+wBt9yh3mqdRDXfwVG1xhnWd9YA='} 2024-04-07T14:35:32.785 DEBUG:teuthology.nuke:shortname: smithi111 2024-04-07T14:35:32.786 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-04-07T14:35:32.813 INFO:teuthology.orchestra.console.smithi062:Power off 2024-04-07T14:35:32.813 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T14:35:32.825 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi111.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-04-01_20:08:13-orch-main-distro-default-smithi/7634202', '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-07 14:17:29.744746', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEEI4MIKMKWb48LLeX6MkLeto/eowkE0UluZY1VSvqB1hom+Avkm99UsvP6kUl7Gieyi4gEicsesAGJvZnr69+s='} 2024-04-07T14:35:32.840 DEBUG:teuthology.orchestra.console.smithi062:power off output: Chassis Power Control: Down/Off 2024-04-07T14:35:32.840 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:32.861 INFO:teuthology.orchestra.console.smithi076:Power off 2024-04-07T14:35:32.861 DEBUG:teuthology.orchestra.console.smithi076:pexpect command: ipmitool -H smithi076.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T14:35:32.870 DEBUG:teuthology.orchestra.console.smithi062:check power output: Chassis Power is on 2024-04-07T14:35:32.884 DEBUG:teuthology.orchestra.console.smithi076:power off output: Chassis Power Control: Down/Off 2024-04-07T14:35:32.884 DEBUG:teuthology.orchestra.console.smithi076:pexpect command: ipmitool -H smithi076.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:32.901 INFO:teuthology.orchestra.console.smithi111:Power off 2024-04-07T14:35:32.901 DEBUG:teuthology.orchestra.console.smithi111:pexpect command: ipmitool -H smithi111.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-04-07T14:35:32.912 DEBUG:teuthology.orchestra.console.smithi076:check power output: Chassis Power is on 2024-04-07T14:35:32.925 DEBUG:teuthology.orchestra.console.smithi111:power off output: Chassis Power Control: Down/Off 2024-04-07T14:35:32.926 DEBUG:teuthology.orchestra.console.smithi111:pexpect command: ipmitool -H smithi111.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:32.949 DEBUG:teuthology.orchestra.console.smithi111:check power output: Chassis Power is on 2024-04-07T14:35:36.871 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:36.913 DEBUG:teuthology.orchestra.console.smithi076:pexpect command: ipmitool -H smithi076.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:36.950 DEBUG:teuthology.orchestra.console.smithi111:pexpect command: ipmitool -H smithi111.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:36.982 DEBUG:teuthology.orchestra.console.smithi062:check power output: Chassis Power is on 2024-04-07T14:35:37.023 DEBUG:teuthology.orchestra.console.smithi076:check power output: Chassis Power is on 2024-04-07T14:35:37.060 DEBUG:teuthology.orchestra.console.smithi111:check power output: Chassis Power is on 2024-04-07T14:35:40.987 DEBUG:teuthology.orchestra.console.smithi062:pexpect command: ipmitool -H smithi062.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:41.024 DEBUG:teuthology.orchestra.console.smithi076:pexpect command: ipmitool -H smithi076.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:41.060 DEBUG:teuthology.orchestra.console.smithi111:pexpect command: ipmitool -H smithi111.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:41.097 DEBUG:teuthology.orchestra.console.smithi062:check power output: Chassis Power is off 2024-04-07T14:35:41.133 DEBUG:teuthology.orchestra.console.smithi076:check power output: Chassis Power is on 2024-04-07T14:35:41.171 DEBUG:teuthology.orchestra.console.smithi111:check power output: Chassis Power is on 2024-04-07T14:35:41.199 INFO:teuthology.orchestra.console.smithi062:Power off completed 2024-04-07T14:35:45.134 DEBUG:teuthology.orchestra.console.smithi076:pexpect command: ipmitool -H smithi076.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:45.172 DEBUG:teuthology.orchestra.console.smithi111:pexpect command: ipmitool -H smithi111.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-04-07T14:35:45.244 DEBUG:teuthology.orchestra.console.smithi076:check power output: Chassis Power is off 2024-04-07T14:35:45.282 DEBUG:teuthology.orchestra.console.smithi111:check power output: Chassis Power is off 2024-04-07T14:35:45.345 INFO:teuthology.orchestra.console.smithi076:Power off completed 2024-04-07T14:35:45.384 INFO:teuthology.orchestra.console.smithi111:Power off completed 2024-04-07T14:35:45.491 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/classic task/test_host_drain} duration: 539.3597950935364 failure_reason: 'Command failed on smithi062 with status 5: ''sudo systemctl stop ceph-dd3ba138-f4eb-11ee-b649-cb9ed24678a4@mon.a''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=d4933d6695e440d0a6452de7d4035080 status: fail success: false 2024-04-07T14:35:45.492 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-04-07T14:35:45.575 INFO:teuthology.run:FAIL